
        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; --gold: #C5A663; --navy: #1a3a5c; }
        body { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }

        
        /* ========== POPUP D'ACCUEIL ========== */
        .welcome-popup {
            position: fixed;
            top: 0; left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        
        .welcome-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.80);
            backdrop-filter: blur(10px);
        }
        
        .popup-content {
            position: relative;
            z-index: 2;
            width: 90%;
            max-width: 600px;
            text-align: center;
            padding: 60px 40px;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(26,26,46,0.6);
            border: 2px solid rgba(197,166,99,0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        
        .popup-bg { position: absolute; inset: 0; background: url('Sardou_Junior_Scene.png') center/cover no-repeat; opacity: 0.4;
            z-index: -1;
        }
        
        .popup-text {
            position: relative;
            z-index: 2;
        }
        
        .popup-title { font-family: "Anton", sans-serif; font-size: 5rem; font-weight: 400;
            color: var(--gold);
            margin-bottom: 20px;
            line-height: 1;
            text-shadow: 0 4px 20px rgba(197,166,99,0.4);
            animation: titleAppear 1s ease-out;
            letter-spacing: 8px;
        }
        
        .popup-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 40px;
            opacity: 0;
            animation: subtitleAppear 1s ease-out 0.5s forwards;
        }
        
        .popup-btn { font-family: "Anton", sans-serif; background: var(--gold); color: var(--dark); padding: 18px 50px; border-radius: 50px; font-size: 1.3rem; font-weight: 400;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(197,166,99,0.4);
            opacity: 0;
            animation: btnAppear 1s ease-out 1s forwards;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .popup-btn:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(197,166,99,0.6);
        }
        
        @keyframes titleAppear {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes subtitleAppear {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes btnAppear {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @media (max-width: 768px) {
        @media (max-width: 768px) {
            .tarif-line { flex-direction: column; text-align: center; gap: 10px; }
            .billets-box { flex-direction: column; align-items: center; gap: 15px; }
            .btn-billet-exact { width: 100%; max-width: 280px; }
        }
            .popup-title { font-size: 2.5rem; letter-spacing: 4px; }
            .popup-subtitle { font-size: 1.3rem; }
            .popup-content { padding: 40px 30px; }
        }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .logo { display: flex; align-items: center; gap: 8px; font-size: 1.8rem; z-index: 1001; flex-shrink: 0; }
        .logo .anima { color: var(--white); font-weight: 700; }
        .logo .musica { color: var(--primary); font-weight: 600; }
        .nav { display: flex; align-items: center; gap: 35px; }
        .nav-link { color: var(--white); font-weight: 500; font-size: 0.95rem; padding: 8px 0; position: relative; white-space: nowrap; }
        .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link-mobile { display: none; }
        .btn-contact-header { background: var(--white); color: var(--navy); padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; border: 2px solid var(--white); flex-shrink: 0; transition: background 0.2s, color 0.2s; }
        .btn-contact-header:hover { background: transparent; color: var(--white); }
        .burger { display: none; flex-direction: column; width: 40px; height: 40px; cursor: pointer; z-index: 1001; background: none; border: none; justify-content: center; align-items: center; }
        .burger span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 3px; margin: 3px 0; transition: transform 0.2s; }
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

        .hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); }
        .hero::before { content: ''; position: absolute; inset: 0; background: url('Sardou_Junior_Scene.png') center/cover no-repeat; z-index: 1; opacity: 0.28; }
        .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,92,0.90) 0%, rgba(26,26,46,0.95) 100%); z-index: 2; }
        .hero-content { position: relative; z-index: 3; text-align: center; padding: 0 20px; max-width: 900px; }
        .hero-badge { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 28px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2.2px; margin-bottom: 32px; }
        .hero-content h1 { font-size: 4.2rem; font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.1; }
        .hero-content h1 span { color: var(--gold); }
        .hero-subtitle { font-size: 1.3rem; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.7; font-weight: 500; }
        .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.8; max-width: 700px; margin-left: auto; margin-right: auto; }
        

        .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
        .audio-player-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 30px 0; }
        .audio-play-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; position: relative; }
        .audio-play-btn:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(197,166,99,0.4); }
        .audio-play-btn svg { width: 24px; height: 24px; fill: var(--white); position: absolute; transition: opacity 0.3s; }
        .audio-play-btn .pause-icon { opacity: 0; }
        .audio-play-btn.playing .play-icon { opacity: 0; }
        .audio-play-btn.playing .pause-icon { opacity: 1; }
        .audio-label { color: var(--white); font-size: 1rem; font-weight: 600; }
        .btn-gold { display: inline-block; padding: 16px 42px; border-radius: 30px; font-weight: 600; font-size: 1.05rem; background: var(--gold); color: var(--dark); border: 2px solid var(--gold); transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); }
        .btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197,166,99,0.4); }
        .btn-outline { display: inline-block; padding: 16px 42px; border-radius: 30px; font-weight: 600; font-size: 1.05rem; background: transparent; color: var(--white); border: 2px solid var(--white); transition: all 0.3s; }
        .btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header span { display: block; color: var(--gold); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2.8px; margin-bottom: 14px; }
        .section-header h2 { font-size: 2.6rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
        .section-header h2 em { color: var(--gold); font-style: normal; }
        .section-header p { font-size: 1.05rem; color: #666; margin-top: 18px; line-height: 1.8; max-width: 700px; margin-left: auto; margin-right: auto; }

        .spectacle-section { background: var(--white); padding: 100px 20px; }
        .spectacle-inner { max-width: 1100px; margin: 0 auto; }
        .spectacle-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
        .spectacle-text p { font-size: 1.05rem; color: #555; line-height: 1.9; margin-bottom: 20px; }
        .spectacle-text strong { color: var(--dark); font-weight: 600; }
        .spectacle-image { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.12); }
        .spectacle-image img { width: 100%; height: auto; display: block; }
        .videos-section { background: #f8f9fa; padding: 100px 20px; }
        .videos-inner { max-width: 1100px; margin: 0 auto; }
        .videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 50px; }
        .video-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
        .video-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
        .video-card .video-embed { position: relative; width: 100%; padding-bottom: 125%; overflow: hidden; background: #f0f0f0; }
        .video-card .video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
        .video-card .video-info { padding: 20px; }
        .video-card .video-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
        .video-card .video-desc { font-size: 0.9rem; color: #666; }


        .repertoire-section { background: #f8f9fa; padding: 100px 20px; }
        .repertoire-inner { max-width: 1100px; margin: 0 auto; }
        .repertoire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
        .repertoire-card { background: var(--white); padding: 28px 24px; border-radius: 12px; border-left: 4px solid var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
        .repertoire-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
        .repertoire-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .repertoire-card p { font-size: 0.9rem; color: #666; line-height: 1.7; }
        .repertoire-card.repertoire-link { cursor: pointer; }
        .repertoire-card.repertoire-link:hover { background: var(--gold); color: var(--white); transform: translateY(-6px); box-shadow: 0 10px 35px rgba(0,0,0,0.15); }
        .repertoire-card.repertoire-link:hover h3 { color: var(--white); }
        .repertoire-card.repertoire-link:hover p { color: rgba(255,255,255,0.9); }


        
        

        

        .billetterie-section { background: var(--white); }
        
        .billetterie-hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; background: url('Sardou_Junior_Scene.png') center/cover no-repeat; background-attachment: fixed; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(13,13,26,0.90) 100%); }
        .billetterie-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; max-width: 1000px; margin: 0 auto; }
        .event-title { font-size: 3.5rem; font-weight: 700; color: var(--white); margin-bottom: 60px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        
        .event-info-circles { display: flex; justify-content: center; gap: 40px; margin: 60px 0; }
        .info-circle { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 2px solid rgba(197,166,99,0.3); border-radius: 50%; width: 180px; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; transition: all 0.3s; }
        .info-circle:hover { background: rgba(197,166,99,0.15); border-color: var(--gold); transform: translateY(-5px); }
        .circle-icon { width: 50px; height: 50px; margin-bottom: 15px; }
        .circle-icon svg { width: 100%; height: 100%; stroke: var(--gold); }
        .circle-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .circle-value { font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.4; text-align: center; }
        .circle-sub { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.8); }
        .circle-link { text-decoration: none; transition: color 0.3s; }
        .circle-link:hover { color: var(--white); text-decoration: underline; }
        
        .countdown-boxes { display: flex; justify-content: center; gap: 20px; margin-top: 60px; }
        .countdown-box { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 2px solid rgba(197,166,99,0.3); border-radius: 16px; padding: 25px 35px; min-width: 140px; text-align: center; }
        .countdown-num { display: block; font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 10px; }
        .countdown-text { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; }
        
        .billetterie-details { background: var(--white); padding: 80px 20px; }
        .details-inner { max-width: 1000px; margin: 0 auto; }
        
        .programme-elegant { margin-bottom: 80px; }
        .programme-elegant h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 50px; }
        .programme-list { background: #f8f9fa; border-radius: 16px; padding: 40px; }
        .programme-line { display: flex; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
        .programme-line:last-child { border-bottom: none; }
        .programme-line.highlight { background: rgba(197,166,99,0.08); margin: 0 -20px; padding: 20px; border-radius: 12px; border: 2px solid var(--gold); }
        .prog-time { font-size: 2rem; font-weight: 700; color: var(--gold); min-width: 120px; }
        .prog-desc { font-size: 1.1rem; color: var(--dark); font-weight: 500; }
        
        .billeterie-elegant { margin-bottom: 80px; }
        .billeterie-elegant h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 50px; }
        .tarifs-elegant { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-bottom: 30px; }
        .tarif-bloc { background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%); border-radius: 16px; padding: 40px; text-align: center; }
        .tarif-bloc.secondary { background: #f8f9fa; }
        .tarif-label { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
        .tarif-values { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; }
        .tarif-item { text-align: center; }
        .tarif-price { display: block; font-size: 3rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 8px; }
        .tarif-desc { display: block; font-size: 1rem; color: var(--dark); font-weight: 500; opacity: 0.8; }
        .billets-buttons { display: flex; gap: 15px; justify-content: center; }
        .btn-billet { display: flex; flex-direction: column; align-items: center; background: var(--white); color: var(--dark); padding: 20px 35px; border-radius: 12px; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .btn-billet:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); }
        .btn-billet span { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
        .btn-billet strong { font-size: 2rem; font-weight: 700; }
        .prevente-info { text-align: center; font-size: 0.95rem; color: #666; font-style: italic; }
        
        .infos-elegant { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .info-bloc { background: #f8f9fa; border-radius: 16px; padding: 35px; text-align: center; }
        .info-bloc h3 { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 15px; }
        .info-bloc p { font-size: 1.05rem; color: var(--dark); line-height: 1.8; }
        .info-bloc a { color: var(--gold); text-decoration: none; font-weight: 600; }
        .info-bloc a:hover { text-decoration: underline; }
        
        @media (max-width: 900px) {
            .event-title { font-size: 2.2rem; }
            .event-info-circles { flex-direction: column; align-items: center; gap: 30px; }
            .countdown-boxes { flex-wrap: wrap; gap: 15px; }
            .countdown-box { min-width: 110px; padding: 20px 25px; }
            .countdown-num { font-size: 2.5rem; }
            .programme-line { flex-direction: column; align-items: flex-start; gap: 10px; }
            .prog-time { font-size: 1.5rem; min-width: auto; }
            .tarifs-elegant { grid-template-columns: 1fr; }
            .infos-elegant { grid-template-columns: 1fr; }
        }

        .billetterie-section { background: var(--white); }
        
        .billetterie-hero-exact { 
            position: relative; 
            min-height: 100vh; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            padding: 60px 20px; 
            background: linear-gradient(rgba(40, 50, 70, 0.85), rgba(25, 30, 45, 0.90)), url('Sardou_Junior_Scene.png') center/cover no-repeat fixed;
        }
        
        .event-title-exact { 
            font-size: 3rem; 
            font-weight: 700; 
            color: var(--white); 
            margin-bottom: 80px; 
            text-align: center; 
            text-shadow: 0 4px 15px rgba(0,0,0,0.6); 
        }
        .event-alert-exact { 
            display: inline-block; 
            background: var(--gold); 
            color: var(--dark); 
            padding: 15px 35px; 
            border-radius: 50px; 
            font-weight: 700; 
            font-size: 0.95rem; 
            text-transform: uppercase; 
            letter-spacing: 2.5px; 
            margin-bottom: 60px; 
            box-shadow: 0 6px 25px rgba(197,166,99,0.4); 
            animation: pulse 2s infinite; 
        }
        
        @keyframes pulse { 
            0%, 100% { transform: scale(1); } 
            50% { transform: scale(1.05); } 
        }

        
        .circles-exact { 
            display: flex; 
            justify-content: center; 
            gap: 50px; 
            margin-bottom: 80px; 
            flex-wrap: wrap; 
        }
        
        .circle-exact { 
            width: 220px; 
            height: 220px; 
            border-radius: 50%; 
            background: rgba(60, 70, 90, 0.75); 
            backdrop-filter: blur(10px); 
            border: 3px solid rgba(197,166,99,0.6); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            padding: 25px; 
            box-shadow: 0 8px 30px rgba(0,0,0,0.4); 
            transition: all 0.3s; 
        }
        
        .circle-exact:hover { 
            transform: translateY(-8px); 
            border-color: var(--gold); 
            box-shadow: 0 12px 40px rgba(197,166,99,0.3); 
        }
        
        .circle-icon-exact { 
            width: 60px; 
            height: 60px; 
            margin-bottom: 20px; 
        }
        
        .circle-icon-exact svg { 
            width: 100%; 
            height: 100%; 
            stroke: var(--gold); 
        }
        
        .circle-label-exact { 
            font-size: 0.8rem; 
            font-weight: 700; 
            color: rgba(255,255,255,0.7); 
            text-transform: uppercase; 
            letter-spacing: 3px; 
            margin-bottom: 12px; 
        }
        
        .circle-value-exact { 
            font-size: 1.3rem; 
            font-weight: 700; 
            color: var(--white); 
            text-align: center; 
            line-height: 1.5; 
        }
        
        .circle-sub-exact { 
            font-size: 1rem; 
            font-weight: 500; 
            color: rgba(255,255,255,0.85); 
            text-align: center; 
            text-decoration: none; 
            margin-top: 5px; 
            display: block; 
            transition: color 0.3s; 
        }
        
        .circle-sub-exact:hover { 
            color: var(--gold); 
            text-decoration: underline; 
        }
        
        .countdown-exact { 
            display: flex; 
            gap: 25px; 
            justify-content: center; 
            flex-wrap: wrap; 
        }
        
        .countdown-box-exact { 
            background: rgba(60, 70, 90, 0.75); 
            backdrop-filter: blur(10px); 
            border: 2px solid rgba(197,166,99,0.5); 
            border-radius: 16px; 
            padding: 25px 35px; 
            min-width: 140px; 
            text-align: center; 
            box-shadow: 0 6px 25px rgba(0,0,0,0.3); 
        }
        
        .countdown-number-exact { 
            font-size: 4rem; 
            font-weight: 700; 
            color: var(--gold); 
            line-height: 1; 
            margin-bottom: 12px; 
        }
        
        .countdown-label-exact { 
            font-size: 0.85rem; 
            font-weight: 700; 
            color: rgba(255,255,255,0.8); 
            text-transform: uppercase; 
            letter-spacing: 2px; 
        }
        
        .billetterie-info-section { 
            background: var(--white); 
            padding: 80px 20px; 
        }
        
        .info-container { 
            max-width: 1000px; 
            margin: 0 auto; 
        }
        
        .programme-box, .tarifs-box, .contact-box { 
            background: #f8f9fa; 
            border-radius: 16px; 
            padding: 40px; 
            margin-bottom: 40px; 
        }
        
        .programme-box h2, .tarifs-box h2 { 
            font-size: 2rem; 
            font-weight: 700; 
            color: var(--dark); 
            margin-bottom: 30px; 
            text-align: center; 
        }
        
        .prog-line { 
            display: flex; 
            padding: 18px 0; 
            border-bottom: 1px solid #ddd; 
            align-items: center; 
        }
        
        .prog-line:last-child { 
            border-bottom: none; 
        }
        
        .prog-line.main { 
            background: rgba(197,166,99,0.15); 
            margin: 0 -20px; 
            padding: 18px 20px; 
            border-radius: 8px; 
            border: 2px solid var(--gold); 
        }
        
        .prog-line .time { 
            font-size: 1.6rem; 
            font-weight: 700; 
            color: var(--gold); 
            min-width: 100px; 
        }
        
        .prog-line .desc { 
            font-size: 1.05rem; 
            color: var(--dark); 
            font-weight: 500; 
        }
        
        .tarif-sub { 
            text-align: center; 
            font-size: 1.2rem; 
            color: #666; 
            margin-bottom: 30px; 
        }
        
        
        .tarif-grid { margin: 30px 0; }
        .tarif-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 15px; }
        .tarif-row.highlight { background: rgba(197,166,99,0.15); border: 2px solid var(--gold); }
        .tarif-type { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
        .tarif-prices { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
        .info-enfants { text-align: center; font-size: 0.95rem; color: #666; font-weight: 500; margin: 20px 0; }

        .tarifs-simple { margin: 30px 0; }
        .tarif-line { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: #f8f9fa; border-radius: 12px; }
        .tarif-label { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
        .tarif-prix { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
        .billet-label { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.billets-box { 
            display: flex; 
            gap: 20px; 
            justify-content: center; 
            margin: 30px 0; 
        }
        
        .btn-billet-exact { 
            background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%); 
            color: var(--dark); 
            padding: 25px 40px; 
            border-radius: 12px; 
            text-decoration: none; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            min-width: 160px; 
            box-shadow: 0 6px 20px rgba(197,166,99,0.3); 
            transition: all 0.3s; 
        }
        
        .btn-billet-exact:hover { 
            transform: translateY(-4px); 
            box-shadow: 0 10px 30px rgba(197,166,99,0.5); 
        }
        
        .billet-type { 
            font-size: 1rem; 
            font-weight: 600; 
            margin-bottom: 10px; 
        }
        
        .billet-prix { 
            font-size: 2.5rem; 
            font-weight: 700; 
        }
        
        .prevente-exact { 
            text-align: center; 
            font-size: 0.95rem; 
            color: #666; 
            font-style: italic; 
        }
        
        .contact-box { 
            text-align: center; 
        }
        
        .contact-box p { 
            font-size: 1.05rem; 
            color: var(--dark); 
            margin: 10px 0; 
        }
        
        .contact-box a { 
            color: var(--gold); 
            text-decoration: none; 
            font-weight: 600; 
        }
        
        .contact-box a:hover { 
            text-decoration: underline; 
        }
        
        @media (max-width: 900px) {
            .event-title-exact { font-size: 2rem; margin-bottom: 50px; }
        .event-alert-exact { 
            display: inline-block; 
            background: var(--gold); 
            color: var(--dark); 
            padding: 15px 35px; 
            border-radius: 50px; 
            font-weight: 700; 
            font-size: 0.95rem; 
            text-transform: uppercase; 
            letter-spacing: 2.5px; 
            margin-bottom: 60px; 
            box-shadow: 0 6px 25px rgba(197,166,99,0.4); 
            animation: pulse 2s infinite; 
        }
        
        @keyframes pulse { 
            0%, 100% { transform: scale(1); } 
            50% { transform: scale(1.05); } 
        }

            .circles-exact { gap: 30px; }
            .circle-exact { width: 180px; height: 180px; }
            .countdown-exact { gap: 15px; }
            .countdown-box-exact { min-width: 110px; padding: 20px 25px; }
            .countdown-number-exact { font-size: 3rem; }
            .prog-line { flex-direction: column; align-items: flex-start; gap: 8px; }
            .prog-line .time { font-size: 1.3rem; }
            
        .tarif-grid { margin: 30px 0; }
        .tarif-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 15px; }
        .tarif-row.highlight { background: rgba(197,166,99,0.15); border: 2px solid var(--gold); }
        .tarif-type { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
        .tarif-prices { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
        .info-enfants { text-align: center; font-size: 0.95rem; color: #666; font-weight: 500; margin: 20px 0; }

        .tarifs-simple { margin: 30px 0; }
        .tarif-line { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; background: #f8f9fa; border-radius: 12px; }
        .tarif-label { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
        .tarif-prix { font-size: 1.1rem; font-weight: 600; color: var(--dark); }
        .billet-label { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.billets-box { flex-direction: column; align-items: center; }
            .btn-billet-exact { width: 100%; max-width: 250px; }
        }
.regions-section { background: var(--dark); padding: 100px 20px; }
        .regions-inner { max-width: 1200px; margin: 0 auto; }
        .regions-section .section-header h2, .regions-section .section-header span { color: var(--white); }
        .regions-section .section-header p { color: rgba(255,255,255,0.7); }
        .regions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
        .region-category { background: rgba(255,255,255,0.05); padding: 35px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
        .region-category:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
        .region-category h3 { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
        .region-links { display: flex; flex-direction: column; gap: 12px; }
        .region-link { color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s, padding-left 0.2s; }
        .region-link:hover { color: var(--white); padding-left: 10px; }
        .region-link:last-child { border-bottom: none; }

        .cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%); padding: 100px 20px; text-align: center; position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; top: -40%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(117,196,231,0.08) 0%, transparent 70%); pointer-events: none; }
        .cta-section::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(197,166,99,0.07) 0%, transparent 70%); pointer-events: none; }
        .cta-section h2 { font-size: 2.8rem; font-weight: 700; color: var(--white); margin-bottom: 18px; position: relative; z-index: 1; }
        .cta-section h2 em { color: var(--gold); font-style: normal; }
        .cta-section p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; line-height: 1.8; }
        .cta-section .btn-gold { position: relative; z-index: 1; font-size: 1.1rem; padding: 18px 50px; }

        .footer { background: #0d0d1a; padding: 70px 20px 30px; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; margin-bottom: 50px; }
        .footer-col h4 { color: var(--white); font-size: 1.15rem; font-weight: 600; margin-bottom: 24px; }
        .footer-col p, .footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.9; display: block; transition: color 0.2s; }
        .footer-col a:hover { color: var(--gold); }
        .footer-social { display: flex; gap: 16px; margin-top: 18px; }
        .footer-social a { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
        .footer-social svg { width: 19px; height: 19px; fill: var(--white); }
        .footer-contact { text-align: center; padding: 35px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-contact p:first-child { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 12px; }
        .footer-contact a { color: #75C4E7; font-size: 1.15rem; text-decoration: none; font-weight: 600; }
        .footer-contact p:last-child { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 8px; }
        .footer-bottom { text-align: center; padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

        @media (max-width: 900px) {
            .nav { position: fixed; inset: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 0; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); z-index: 1000; }
            .nav.active { transform: translateX(0); }
            .nav-link { font-size: 1.5rem; padding: 15px 0; color: var(--gold); }
            .nav-link-mobile { display: block; margin-top: 30px; background: var(--gold); color: var(--dark); padding: 15px 40px; border-radius: 30px; font-weight: 600; }
            .btn-contact-header { display: none; }
            .burger { display: flex; }
            .spectacle-content { grid-template-columns: 1fr; gap: 40px; }
            .repertoire-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
            
            .videos-grid { grid-template-columns: 1fr; }
            .event-info-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .tickets-grid { grid-template-columns: 1fr; max-width: 400px; }
            .infos-grid { grid-template-columns: 1fr; }
            .regions-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 768px) {
            .header-inner { padding: 0 20px; }
            .hero-content h1 { font-size: 2.8rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .hero-sub { font-size: 0.95rem; }
        

            .hero-buttons { flex-direction: column; align-items: center; }
        .audio-player-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 30px 0; }
        .audio-play-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; position: relative; }
        .audio-play-btn:hover { transform: scale(1.1); box-shadow: 0 4px 20px rgba(197,166,99,0.4); }
        .audio-play-btn svg { width: 24px; height: 24px; fill: var(--white); position: absolute; transition: opacity 0.3s; }
        .audio-play-btn .pause-icon { opacity: 0; }
        .audio-play-btn.playing .play-icon { opacity: 0; }
        .audio-play-btn.playing .pause-icon { opacity: 1; }
        .audio-label { color: var(--white); font-size: 1rem; font-weight: 600; }
            .hero-buttons .btn-gold, .hero-buttons .btn-outline { width: 100%; max-width: 280px; text-align: center; }
            .section-header h2, .cta-section h2 { font-size: 2rem; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-social { justify-content: center; }
        }
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 2.2rem; }
            .hero { min-height: 70vh; }
        }
    
        
        .countdown-container { background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%); padding: 40px 30px; border-radius: 16px; margin: 40px 0; text-align: center; box-shadow: 0 8px 30px rgba(197,166,99,0.3); }
        .countdown-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 25px; }
        .countdown-timer { display: flex; justify-content: center; gap: 30px; }
        .countdown-item { background: rgba(255,255,255,0.95); padding: 20px 25px; border-radius: 12px; min-width: 100px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .countdown-number { display: block; font-size: 3rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 8px; }
        .countdown-label { display: block; font-size: 0.9rem; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 1px; }
        @media (max-width: 768px) {
            .countdown-timer { gap: 15px; flex-wrap: wrap; }
            .countdown-item { min-width: 80px; padding: 15px 20px; }
            .countdown-number { font-size: 2.2rem; }
            .countdown-title { font-size: 1.2rem; }
        }


        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        