@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background gradient */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%);
            animation: gradientShift 10s ease-in-out infinite alternate;
            z-index: -1;
        }
        
        @keyframes gradientShift {
            0% {
                opacity: 0.7;
                transform: scale(1) rotate(0deg);
            }
            100% {
                opacity: 0.3;
                transform: scale(1.1) rotate(1deg);
            }
        }
        
        .container {
            text-align: center;
            animation: fadeInUp 1.2s ease-out;
            z-index: 1;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .name {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ffffff, #a0a0a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes textGlow {
            from {
                filter: brightness(1);
            }
            to {
                filter: brightness(1.1);
            }
        }
        
        .title {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            color: #b0b0b0;
            margin-bottom: 3rem;
            letter-spacing: 1px;
        }
        
        .divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            margin: 2rem auto;
            opacity: 0.5;
        }
        
        .social-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 3rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border: 1px solid #333;
            border-radius: 50%;
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-link:hover::before {
            opacity: 1;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            border-color: #ffffff;
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
        }
        
        .social-link.github:hover {
            border-color: #6cc644;
            color: #6cc644;
            box-shadow: 0 10px 25px rgba(108, 198, 68, 0.2);
        }
        
        .social-link.linkedin:hover {
            border-color: #0077b5;
            color: #0077b5;
            box-shadow: 0 10px 25px rgba(0, 119, 181, 0.2);
        }
        
        .social-link.twitter:hover {
            border-color: #1da1f2;
            color: #1da1f2;
            box-shadow: 0 10px 25px rgba(29, 161, 242, 0.2);
        }
        
        .social-link svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }
        
        .social-link:hover svg {
            transform: scale(1.1);
        }
        
        .coming-soon {
            font-size: 0.9rem;
            color: #666;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .dots {
            display: flex;
            gap: 8px;
            justify-content: center;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            background: #333;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .dot:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        @keyframes pulse {
            0%, 80%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            40% {
                opacity: 1;
                transform: scale(1.2);
            }
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 2rem;
            }
            
            .social-links {
                gap: 1.5rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
            }
            
            .social-link svg {
                width: 20px;
                height: 20px;
            }
        }