Changed around line 1
+ :root {
+ --primary-color: #2a2a2a;
+ --accent-color: #64ffda;
+ --text-color: #e6e6e6;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--primary-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ /* Header & Navigation */
+ .header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(42, 42, 42, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ .nav ul {
+ display: flex;
+ justify-content: flex-end;
+ list-style: none;
+ padding: 1.5rem 0;
+ }
+
+ .nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ margin: 0 0.5rem;
+ transition: var(--transition);
+ position: relative;
+ }
+
+ .nav a::after {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 2px;
+ bottom: 0;
+ left: 50%;
+ background: var(--accent-color);
+ transition: var(--transition);
+ }
+
+ .nav a:hover::after {
+ width: 100%;
+ left: 0;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ position: relative;
+ }
+
+ .glitch {
+ font-size: 4rem;
+ font-weight: bold;
+ position: relative;
+ text-shadow: 0.05em 0 0 rgba(255,0,0,0.75),
+ -0.025em -0.05em 0 rgba(0,255,0,0.75),
+ 0.025em 0.05em 0 rgba(0,0,255,0.75);
+ animation: glitch 500ms infinite;
+ }
+
+ @keyframes glitch {
+ 0% {
+ text-shadow: 0.05em 0 0 rgba(255,0,0,0.75),
+ -0.025em -0.05em 0 rgba(0,255,0,0.75),
+ 0.025em 0.05em 0 rgba(0,0,255,0.75);
+ }
+ 14% {
+ text-shadow: 0.05em 0 0 rgba(255,0,0,0.75),
+ -0.05em -0.025em 0 rgba(0,255,0,0.75),
+ -0.025em 0.05em 0 rgba(0,0,255,0.75);
+ }
+ 15% {
+ text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75),
+ 0.025em 0.025em 0 rgba(0,255,0,0.75),
+ -0.05em -0.05em 0 rgba(0,0,255,0.75);
+ }
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-top: 1rem;
+ color: var(--accent-color);
+ }
+
+ /* About Section */
+ .about {
+ padding: 8rem 0;
+ }
+
+ .about-content {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 4rem;
+ align-items: center;
+ }
+
+ .image-frame {
+ width: 100%;
+ padding-bottom: 100%;
+ position: relative;
+ border: 2px solid var(--accent-color);
+ border-radius: 10px;
+ overflow: hidden;
+ transform: rotate(-5deg);
+ transition: var(--transition);
+ }
+
+ .image-frame:hover {
+ transform: rotate(0);
+ }
+
+ /* Skills Section */
+ .skills {
+ padding: 8rem 0;
+ background: #1a1a1a;
+ }
+
+ .skills-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .skill-card {
+ background: var(--primary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .skill-level {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ height: 4px;
+ background: var(--accent-color);
+ transition: width 1s ease-in-out;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 8rem 0;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ position: relative;
+ margin-bottom: 2rem;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 1rem;
+ background: transparent;
+ border: none;
+ border-bottom: 2px solid var(--text-color);
+ color: var(--text-color);
+ font-size: 1rem;
+ }
+
+ .form-group label {
+ position: absolute;
+ left: 0;
+ top: 1rem;
+ transition: var(--transition);
+ pointer-events: none;
+ }
+
+ .form-group input:focus + label,
+ .form-group input:valid + label,
+ .form-group textarea:focus + label,
+ .form-group textarea:valid + label {
+ top: -20px;
+ font-size: 0.8rem;
+ color: var(--accent-color);
+ }
+
+ .submit-btn {
+ background: transparent;
+ color: var(--accent-color);
+ border: 2px solid var(--accent-color);
+ padding: 1rem 2rem;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-btn:hover {
+ background: var(--accent-color);
+ color: var(--primary-color);
+ }
+
+ /* Footer */
+ .footer {
+ padding: 2rem 0;
+ text-align: center;
+ background: #1a1a1a;
+ }
+
+ .social-links {
+ margin-top: 1rem;
+ }
+
+ .social-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--accent-color);
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .glitch {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ grid-template-columns: 1fr;
+ }
+
+ .nav ul {
+ justify-content: center;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .container {
+ padding: 0 1rem;
+ }
+
+ .nav a {
+ padding: 0.5rem;
+ margin: 0 0.25rem;
+ }
+ }