:root {
            --primary: #8b5cf6;
            --secondary: #3b82f6;
            --accent: #ec4899;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: url(https://i.pinimg.com/736x/12/e5/c3/12e5c3b250f2f2566b33bacbc8ed35a4.jpg) no-repeat fixed center;
            background-size: cover;
            color: #e2e8f0;
            scroll-behavior: smooth;
        }
        
        .logo-gradient {
            background: linear-gradient(45deg, #bdbdbd, #ffffff, #595470);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .glass-card {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hover-glow:hover {
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        .text-glow {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.35);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        .skill-icon {
            transition: all 0.3s ease;
        }
        
        .skill-icon:hover {
            transform: translateY(-5px);
        }
        
        .project-card {
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }
        
        .tab-active {
            background: rgba(139, 92, 246, 0.2);
            border-bottom: 2px solid var(--primary);
        }
        
        .contact-input {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 16px;
            }
            
            .timeline-item::before {
                left: -24px;
            }
        }