     @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 25%, #764ba2 100%);
            background-image: url();
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            color: white;
            position: relative;
        }

        /* Animated background */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="cloud" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="20" cy="30" r="15" fill="url(%23cloud)" opacity="0.6"><animateTransform attributeName="transform" type="translate" values="0,0; 10,5; 0,0" dur="20s" repeatCount="indefinite"/></circle><circle cx="70" cy="20" r="10" fill="url(%23cloud)" opacity="0.4"><animateTransform attributeName="transform" type="translate" values="0,0; -15,8; 0,0" dur="25s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="12" fill="url(%23cloud)" opacity="0.5"><animateTransform attributeName="transform" type="translate" values="0,0; 20,-10; 0,0" dur="30s" repeatCount="indefinite"/></circle><circle cx="80" cy="70" r="18" fill="url(%23cloud)" opacity="0.3"><animateTransform attributeName="transform" type="translate" values="0,0; -25,-5; 0,0" dur="18s" repeatCount="indefinite"/></circle></svg>');
            animation: float 15s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.9; }
        }

        .container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .left-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-icon i {
            font-size: 2rem;
            color: white;
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #fff, #e0e0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        }

        .description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .details {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .social-link i {
            color: white;
            font-size: 1.2rem;
        }

        .right-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .nav-button {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 20px;
            padding: 1.5rem 2rem;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .nav-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: all 0.5s ease;
        }

        .nav-button:hover::before {
            left: 100%;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .nav-button i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .nav-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding: 1.5rem;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .description {
                font-size: 1.1rem;
            }

            .nav-button {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }

            .nav-button {
                padding: 1rem;
            }
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container > * {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .left-section > *:nth-child(1) { animation-delay: 0.1s; }
        .left-section > *:nth-child(2) { animation-delay: 0.2s; }
        .left-section > *:nth-child(3) { animation-delay: 0.3s; }
        .left-section > *:nth-child(4) { animation-delay: 0.4s; }
        .left-section > *:nth-child(5) { animation-delay: 0.5s; }

        .nav-button:nth-child(1) { animation-delay: 0.3s; }
        .nav-button:nth-child(2) { animation-delay: 0.4s; }
        .nav-button:nth-child(3) { animation-delay: 0.5s; }
        .nav-button:nth-child(4) { animation-delay: 0.6s; }
        .nav-button:nth-child(5) { animation-delay: 0.7s; }

        /* Glassmorphism effect */
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Particle effect on hover */
        .nav-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .nav-button:active::after {
            width: 300px;
            height: 300px;
        }