
        :root {
            --navy: #1A243A;
            --navy-light: #2A3A5C;
            --gold: #D4AF37;
            --gold-light: #E8C84A;
            --gold-dark: #B88A00;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --dark-text: #2C2C2C;
        }

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

        html {
            scroll-behavior: smooth;
            
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--navy);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--white);
            display: flex;
            flex-direction: column;
        }

        /* Particules animées en arrière-plan */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: float 8s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translateY(-10vh) scale(1);
            }
        }

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

        /* Logo */
        .logo-container {
            margin-bottom: 2rem;
            animation: fadeInDown 1.5s ease-out;
        }

        .logo-container img {
            max-width: 320px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.3));
            transition: transform 0.5s ease;
            border-radius: 40px;
        }

        .logo-container img:hover {
            transform: scale(1.05);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Ligne décorative */
        .divider {
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 1.5rem auto;
            animation: expandLine 2s ease-out 0.5s both;
        }

        @keyframes expandLine {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 120px;
                opacity: 1;
            }
        }

        /* Titre principal */
        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: fadeInUp 1.5s ease-out 0.3s both;
        }

        /* Sous-titre */
        .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 300;
            color: var(--gold);
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeInUp 1.5s ease-out 0.6s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Badge "En cours de création" */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(212, 175, 55, 0.15);
            border: 2px solid var(--gold);
            border-radius: 50px;
            padding: 1rem 2.5rem;
            margin: 2rem 0;
            animation: fadeInUp 1.5s ease-out 0.9s both, pulse 2s infinite 2s;
            backdrop-filter: blur(10px);
        }

        .status-badge .pulse-dot {
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulseDot 1.5s infinite;
        }

        .status-badge span {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 2px;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
            }
        }

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

        /* Description */
        .description {
            max-width: 600px;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 3rem;
            animation: fadeInUp 1.5s ease-out 1.2s both;
        }

        /* Barre de progression */
        .progress-container {
            width: 100%;
            max-width: 400px;
            margin-bottom: 3rem;
            animation: fadeInUp 1.5s ease-out 1.5s both;
        }

        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
            border-radius: 3px;
            animation: progressFill 3s ease-out 2s forwards;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 20px;
            background: linear-gradient(90deg, transparent, var(--gold-light));
            animation: shimmer 2s infinite;
        }

        @keyframes progressFill {
            to {
                width: 75%;
            }
        }

        @keyframes shimmer {
            0% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        /* Informations de contact */
        .contact-section {
            width: 100%;
            max-width: 700px;
            margin: 2rem 0 3rem 0;
            padding: 2rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            animation: fadeInUp 1.5s ease-out 1.8s both;
            backdrop-filter: blur(10px);
        }

        .contact-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
            flex-shrink: 0;
        }

        /* Footer */
        .footer {
            width: 100%;
            padding: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(26, 36, 58, 0.95);
            backdrop-filter: blur(10px);
            z-index: 20;
            position: relative;
            margin-top: auto;
        }

        .footer strong {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo-container img {
                max-width: 220px;
            }
            
            .main-title {
                letter-spacing: 2px;
            }
            
            .subtitle {
                letter-spacing: 3px;
            }
            
            .status-badge {
                padding: 0.8rem 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }
            
            .contact-section {
                padding: 1.5rem 1rem;
                margin: 1.5rem 0 2rem 0;
            }
            
            .container {
                padding: 1.5rem 1rem 3rem 1rem;
            }
        }

        /* Animation d'entrée supplémentaire */
        .glow-effect {
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 2;
            animation: breathe 4s ease-in-out infinite;
        }

        @keyframes breathe {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.8;
            }
        }
