
        /* ===== VARIABLES ===== */
        :root {
            --black: #0F0F0F;
            --black-light: #1A1A1A;
            --orange: #F7931E;
            --gold: #D4AF37;
            --white: #FFFFFF;
            --gray: #CFCFCF;
            --gray-dark: #2A2A2A;
            
            --shadow-sm: 0 5px 20px rgba(0,0,0,0.3);
            --shadow-hover: 0 10px 30px rgba(247,147,30,0.15);
            
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }

        /* ===== BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: 1280px;
        }

        /* ===== BACKGROUND SLIDER ===== */
        .background-slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 15, 0.85);
            z-index: -1;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            padding: 1.5rem 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: var(--shadow-sm);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white) !important;
            letter-spacing: -0.02em;
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--gray) !important;
            font-weight: 500;
            margin: 0 1.2rem;
            padding: 0.5rem 0 !important;
            position: relative;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--white) !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 100px 0 1px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(247, 147, 30, 0.1);
            border: 1px solid rgba(247, 147, 30, 0.3);
            color: var(--gray);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--orange);
            display: block;
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            padding: 1rem 2.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background: var(--orange);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(247, 147, 30, 0.2);
        }

        .btn-primary:hover {
            background: #e0841b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .btn-outline:hover {
            border-color: var(--orange);
            background: rgba(247, 147, 30, 0.1);
            transform: translateY(-2px);
        }

        /* ===== SECTIONS ===== */
       .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--orange);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title span {
            color: var(--orange);
            font-style: italic;
        }

        .section-description {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== FEATURE CARDS ===== */
        .feature-card {
            background: var(--black-light);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            transition: var(--transition);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(247, 147, 30, 0.3);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(247, 147, 30, 0.1);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: var(--orange);
        }

        .feature-card h4 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: var(--gray);
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* ===== TICKET CARDS AMÉLIORÉES ===== */
        .ticket-card {
            background: var(--black-light);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            transition: var(--transition);
            position: relative;
            height: 100%;
            overflow: hidden;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .ticket-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: currentColor;
            opacity: 0.8;
            transition: var(--transition);
        }

        .ticket-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .ticket-card:hover::before {
            height: 6px;
            opacity: 1;
        }

        .ticket-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: currentColor;
            flex-shrink: 0;
        }

        .ticket-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 600;
            flex-shrink: 0;
        }

        .ticket-price {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .ticket-price .amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: currentColor;
        }

        .ticket-price .currency {
            font-size: 1rem;
            color: var(--gray);
            margin-left: 0.3rem;
        }

        .ticket-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .ticket-features li {
            color: var(--gray);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .ticket-features li i {
            color: currentColor;
            margin-right: 0.8rem;
            font-size: 1rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .ticket-card .btn {
            background: transparent;
            border: 2px solid currentColor;
            color: currentColor;
            width: 100%;
            padding: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .ticket-card .btn:hover {
            background: currentColor;
            color: var(--black);
            border-color: currentColor;
        }

        .ticket-card.standard {
            border-top-color: var(--gray);
            color: var(--gray);
        }

        .ticket-card.premium {
            border-top-color: var(--orange);
            color: var(--orange);
        }

        .ticket-card.business {
            border-top-color: var(--gold);
            color: var(--gold);
        }

        .ticket-card.early {
            border-top-color: #3498db;
            color: #3498db;
        }

        .ticket-card.grand-public {
            background: #1E1E1E;
            border-top-color: #2A2A2A;
            color: #FFFFFF;
        }

        .ticket-card.grand-public .btn {
            background: #F7931E;
            color: #FFFFFF;
            border-color: #F7931E;
        }

        .ticket-card.grand-public .btn:hover { 
            background: #e0841b;
            border-color: #e0841b;
        }

        .ticket-card.vip {
            background: #1B263B;
            border-top-color: #243447;
            color: #FFFFFF;
        }

        .ticket-card.vip .btn {
            background: #F7931E;
            color: #FFFFFF;
            border-color: #F7931E;
        }

        .ticket-card.vip .btn:hover { 
            background: #e0841b;
            border-color: #e0841b;
        }

        .ticket-card.vvip {
            background: #2C2C2C;
            border-top-color: #D4AF37;
            color: #FFFFFF;
        }

        .ticket-card.vvip .ticket-price .amount {
            color: #D4AF37;
        }

        .ticket-card.vvip .btn {
            background: #F7931E;
            color: #FFFFFF;
            border-color: #F7931E;
        }

        .ticket-card.vvip .btn:hover { 
            background: #e0841b;
            border-color: #e0841b;
        }

        .ticket-card.partenaire {
            background: #0F0F0F;
            border-top-color: #D4AF37;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .ticket-card.partenaire::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .ticket-card.partenaire > * {
            position: relative;
            z-index: 2;
        }

        .ticket-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 0.4rem 1.2rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        /* Badge Grand Public - Gris élégant */
        .ticket-card.grand-public .ticket-badge {
            background: #1E1E1E;
            color: #FFFFFF;
            border-color: #2A2A2A;
            box-shadow: 0 4px 12px rgba(30, 30, 30, 0.4);
        }

        /* Badge VIP - Bleu nuit premium */
        .ticket-card.vip .ticket-badge {
            background: #1B263B;
            color: #FFFFFF;
            border-color: #243447;
            box-shadow: 0 4px 12px rgba(27, 38, 59, 0.4);
        }

        /* Badge VVIP - Or foncé / Doré premium */
        .ticket-card.vvip .ticket-badge {
            background: #D4AF37;
            color: #000000;
            border-color: #D4AF37;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
        }

        /* Badge Partenaire - Noir profond + Or intense */
        .ticket-card.partenaire .ticket-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #0F0F0F;
            color: #D4AF37;
            border-color: #D4AF37;
            box-shadow: 0 4px 12px rgba(15, 15, 15, 0.6);
            border: 2px solid #D4AF37;
            padding: 0.4rem 1.2rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
        }

        /* ===== COUNTDOWN ===== */
        .countdown {
            background: var(--black-light);
            border-radius: var(--border-radius);
            padding: 3rem;
            margin: 3rem 0;
        }

        .countdown-title {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            min-width: 100px;
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .countdown-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-card {
            background: var(--black-light);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: var(--orange);
        }

        .testimonial-text {
            color: var(--gray);
            font-style: italic;
            margin: 1.5rem 0;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: rgba(247, 147, 30, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--orange);
            font-weight: 600;
        }

        .author-info h5 {
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--black-light);
            border-radius: var(--border-radius);
            padding: 4rem;
            text-align: center;
            margin: 4rem 0;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-title span {
            color: var(--orange);
        }

        .cta-text {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--black-light);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--orange);
        }

        .footer-text {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            transition: var(--transition);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--orange);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .navbar-collapse {
                background: var(--black);
                padding: 1rem;
                border-radius: var(--border-radius);
                margin-top: 1rem;
            }
            
            .countdown-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .countdown-item {
                min-width: 70px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .cta-section {
                padding: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .d-flex {
                flex-direction: column;
            }
            
            .countdown-grid {
                gap: 1rem;
            }
            
            .countdown-item {
                min-width: 60px;
            }
            
            .countdown-number {
                font-size: 1.5rem;
            }
        }
