Changed around line 1
+ :root {
+ --primary: #6c63ff;
+ --secondary: #2c2c2c;
+ --text: #333;
+ --background: #f8f9fa;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ .header {
+ position: fixed;
+ width: 100%;
+ padding: 1rem var(--spacing);
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ .nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ background: linear-gradient(135deg, #6c63ff0d 0%, #6c63ff1a 100%);
+ }
+
+ .hero-content {
+ padding: var(--spacing);
+ }
+
+ .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;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-top: 1rem;
+ color: var(--secondary);
+ }
+
+ .scroll-indicator {
+ width: 30px;
+ height: 50px;
+ border: 2px solid var(--primary);
+ border-radius: 15px;
+ position: relative;
+ margin: 2rem auto;
+ }
+
+ .scroll-indicator::before {
+ content: '';
+ position: absolute;
+ width: 6px;
+ height: 6px;
+ background: var(--primary);
+ left: 50%;
+ top: 8px;
+ transform: translateX(-50%);
+ border-radius: 50%;
+ animation: scroll 1.5s infinite;
+ }
+
+ .about, .work, .contact {
+ padding: calc(var(--spacing) * 3) var(--spacing);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: var(--spacing);
+ color: var(--secondary);
+ }
+
+ .skills {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ margin-top: var(--spacing);
+ }
+
+ .skill {
+ padding: 0.5rem 1rem;
+ background: var(--primary);
+ color: white;
+ border-radius: 20px;
+ font-size: 0.9rem;
+ }
+
+ .work-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: var(--spacing);
+ }
+
+ .work-item {
+ position: relative;
+ height: 300px;
+ background: var(--primary);
+ border-radius: 10px;
+ overflow: hidden;
+ transition: transform 0.3s ease;
+ }
+
+ .work-item:hover {
+ transform: translateY(-10px);
+ }
+
+ .work-content {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ padding: var(--spacing);
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
+ color: white;
+ }
+
+ .contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 5px;
+ background: white;
+ transition: border-color 0.3s ease;
+ }
+
+ input:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary);
+ }
+
+ textarea {
+ min-height: 150px;
+ }
+
+ .btn {
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .btn:hover {
+ transform: translateY(-2px);
+ }
+
+ .footer {
+ text-align: center;
+ padding: var(--spacing);
+ background: var(--secondary);
+ color: white;
+ }
+
+ @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);
+ }
+ }
+
+ @keyframes scroll {
+ 0% {
+ transform: translate(-50%, 0);
+ opacity: 1;
+ }
+ 100% {
+ transform: translate(-50%, 20px);
+ opacity: 0;
+ }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .glitch {
+ font-size: 2.5rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .work-grid {
+ grid-template-columns: 1fr;
+ }
+ }