        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
            animation: float 20s infinite ease-in-out;
        }

        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -5%;
            animation-delay: -7s;
        }

        .bg-circle:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        /* Main Container */
        .container {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
        }

        /* Logo Section */
        .logo-section {
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
            border-radius: 20px;
        }

        .logo-icon i {
            font-size: 2rem;
            color: white;
            z-index: 1;
        }

        .logo-text {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Main Content */
        .main-content {
            max-width: 600px;
            margin-bottom: 4rem;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1s forwards;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .main-title {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.2s forwards;
        }

        .description {
            font-size: 1.25rem;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.4s forwards;
        }

        .launch-date {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 16px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #10b981;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.6s forwards;
        }

        .launch-date i {
            font-size: 1.2rem;
        }

        /* Email Subscription */
        .email-section {
            width: 100%;
            max-width: 500px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.8s forwards;
        }

        .email-form {
            display: flex;
            gap: 0;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            padding: 4px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .email-form:focus-within {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .email-input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            color: #ffffff;
            outline: none;
            border-radius: 12px;
        }

        .email-input::placeholder {
            color: #64748b;
        }

        .submit-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border: none;
            border-radius: 12px;
            padding: 1rem 2rem;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            margin-top: 1rem;
            color: #10b981;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            display: flex;
            margin: 2em;
            justify-content: center;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #64748b;
            font-size: 0.9rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 2s forwards;
        }

        /* Countdown Timer */
        .countdown {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 2rem 0;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 2.2s forwards;
        }

        .countdown-item {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.4) 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 16px;
            padding: 1.5rem 1rem;
            backdrop-filter: blur(10px);
            text-align: center;
            transition: all 0.3s ease;
        }

        .countdown-item:hover {
            border-color: rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 800;
            color: #3b82f6;
            display: block;
            margin-bottom: 0.5rem;
        }

        .countdown-label {
            font-size: 0.875rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        #logo {
            height: 20em;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .logo-text {
                font-size: 2rem;
            }

            .email-form {
                flex-direction: column;
                gap: 0.5rem;
            }

            .submit-btn {
                justify-content: center;
            }

            .countdown {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .countdown-item {
                padding: 1rem 0.5rem;
            }

            .countdown-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo-container {
                flex-direction: column;
                gap: 0.5rem;
            }

            .logo-icon {
                width: 60px;
                height: 60px;
            }

            .logo-icon i {
                font-size: 1.5rem;
            }
        }

        /* Particle system */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(59, 130, 246, 0.4);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

                    .pulse-effect {
                        animation: numberPulse 0.6s ease-in-out;
                    }
                    @keyframes numberPulse {
                        0%, 100% { transform: scale(1); }
                        50% { transform: scale(1.2); }
                    }
                    .focused {
                        transform: scale(1.02);
                    }
                    .logo-icon {
                        transition: all 0.3s ease;
                    }
                
.vt-consent-banner {
                    position: fixed;
                    bottom: -100px;
                    left: 0;
                    right: 0;
                    background: rgba(44, 62, 80, 0.95);
                    backdrop-filter: blur(10px);
                    color: white;
                    padding: 20px;
                    z-index: 99999;
                    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                    font-size: 14px;
                    line-height: 1.5;
                    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
                    transition: bottom 0.3s ease-in-out;
                }
                
                .vt-consent-banner.vt-consent-show {
                    bottom: 0;
                }
                
                .vt-consent-content {
                    max-width: 1200px;
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    gap: 20px;
                }
                
                .vt-consent-text {
                    flex: 1;
                    min-width: 300px;
                }
                
                .vt-consent-text p {
                    margin: 0;
                }
                
                .vt-consent-actions {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    flex-wrap: wrap;
                }
                
                .vt-consent-btn {
                    padding: 10px 20px;
                    border: none;
                    border-radius: 6px;
                    font-size: 14px;
                    font-weight: 500;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    text-decoration: none;
                    display: inline-block;
                }
                
                .vt-consent-accept {
                    background: #27ae60;
                    color: white;
                }
                
                .vt-consent-accept:hover {
                    background: #2ecc71;
                    transform: translateY(-1px);
                }
                
                .vt-consent-decline {
                    background: transparent;
                    color: #bdc3c7;
                    border: 1px solid #bdc3c7;
                }
                
                .vt-consent-decline:hover {
                    background: #34495e;
                    color: white;
                    border-color: white;
                }
                
                .vt-consent-link {
                    color: #3498db;
                    text-decoration: none;
                    border-bottom: 1px solid transparent;
                    transition: border-color 0.2s ease;
                }
                
                .vt-consent-link:hover {
                    border-bottom-color: #3498db;
                }
                
                @media (max-width: 768px) {
                    .vt-consent-content {
                        flex-direction: column;
                        text-align: center;
                    }
                    
                    .vt-consent-text {
                        min-width: auto;
                    }
                    
                    .vt-consent-actions {
                        justify-content: center;
                    }
                }
                
                /* Thème sombre */
                .vt-theme-dark.vt-consent-banner {
                    background: rgba(17, 24, 39, 0.95);
                }
                
                /* Thème clair */
                .vt-theme-light.vt-consent-banner {
                    background: rgba(255, 255, 255, 0.95);
                    color: #333;
                    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
                }
                
                .vt-theme-light .vt-consent-decline {
                    color: #666;
                    border-color: #666;
                }
                
                .vt-theme-light .vt-consent-decline:hover {
                    background: #f5f5f5;
                    color: #333;
                }
