/* =============================================
   TICKET PLATFORM - STYLE PRINCIPAL
   Thème Premium Noir & Or
   Version améliorée - Disposition optimisée
   ============================================= */

/* ---------------------------------------------
   1. VARIABLES & RESET
   --------------------------------------------- */
:root {
    --black-deep: #0B0B0F;
    --black-soft: #111217;
    --black-card: #1A1B22;
    --white-pearl: #F5F5F7;
    --gold-primary: #D4AF37;
    --gold-medium: #C9A227;
    --gold-deep: #B8961E;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-glow-intense: rgba(212, 175, 55, 0.6);
    --gray-smoke: #2A2A30;
    --gray-light: #3A3A42;
    --red-edition: #8B0000;
    --red-glow: rgba(139, 0, 0, 0.3);
    
    --transition: all 0.3s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px var(--gold-glow);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black-deep);
    color: var(--white-pearl);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---------------------------------------------
   2. TYPOGRAPHIE & TEXTES
   --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------------------------------------------
   3. NAVIGATION
   --------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-glow);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white-pearl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white-pearl);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a:hover svg {
    stroke: var(--gold-primary);
}

.btn-nav {
    background: var(--gold-primary);
    color: var(--black-deep) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
}

/* ---------------------------------------------
   4. BOUTON MUTE (AUDIO)
   --------------------------------------------- */
.mute-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold-primary);
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.mute-button:hover {
    transform: scale(1.1);
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px var(--gold-glow);
}

.mute-button.muted {
    border-color: var(--red-edition);
    color: var(--red-edition);
}

.mute-button.muted:hover {
    border-color: var(--red-edition);
    box-shadow: 0 0 30px var(--red-glow);
}

.mute-button svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

/* Tooltip */
.mute-button .tooltip-text {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    color: var(--white-pearl);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid var(--gold-glow);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease 2s, visibility 0.3s ease 2s, transform 0.3s ease 2s;
}

.mute-button .tooltip-text::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.85);
    border-right: 1px solid var(--gold-glow);
    border-bottom: 1px solid var(--gold-glow);
    transform: rotate(45deg);
    backdrop-filter: blur(5px);
}

.mute-button:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.mute-button.muted .tooltip-text {
    border-color: var(--red-glow);
}

.mute-button.muted .tooltip-text::after {
    border-right-color: var(--red-glow);
    border-bottom-color: var(--red-glow);
}

@keyframes soundPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { box-shadow: 0 0 20px 5px var(--gold-glow); }
}

.mute-button:not(.muted) {
    animation: soundPulse 2s infinite;
}

/* ---------------------------------------------
   5. HERO SECTION AMÉLIORÉE
   --------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 60px;
    overflow: hidden;
}

.bk_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bk_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
                rgba(26, 26, 42, 0.7) 0%,
                rgba(0, 0, 0, 0.8) 50%,
                var(--black-deep) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(139, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white-pearl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    border: 1px solid var(--gold-glow);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.badge-location {
    background: rgba(0, 0, 0, 0.6);
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold-glow);
}

.detail-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.price-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.price-prevente {
    background: rgba(212, 175, 55, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 600;
}

.price-porte {
    background: rgba(139, 0, 0, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--red-edition);
    color: var(--red-edition);
    font-weight: 600;
}

/* ---------------------------------------------
   6. BOUTONS
   --------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black-deep);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white-pearl);
    border: 2px solid var(--gold-glow);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-secondary:hover svg {
    stroke: var(--gold-primary);
}

.btn-block {
    width: 100%;
}

/* ---------------------------------------------
   7. SECTIONS
   --------------------------------------------- */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* ---------------------------------------------
   8. EVENT CARD (AMÉLIORÉ)
   --------------------------------------------- */
.event-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.event-card-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2;
}

.badge-event {
    background: var(--gold-primary);
    color: var(--black-deep);
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
}

.event-card-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 3rem;
}

.event-info-col {
    padding-right: 2rem;
    border-right: 1px solid var(--gold-glow);
}

.event-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.meta-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.event-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold-glow);
    font-size: 0.9rem;
}

.feature-tag-icon {
    width: 16px;
    height: 16px;
    stroke: var(--gold-primary);
}

.event-price-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.price-display {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.price-box {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-glow);
}

.price-prevente-box {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
}

.price-porte-box {
    background: rgba(139, 0, 0, 0.05);
    border-color: var(--red-edition);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.price-porte-box .price-value {
    color: var(--red-edition);
}

/* ---------------------------------------------
   9. PACKS GRID (AMÉLIORÉ)
   --------------------------------------------- */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pack-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-card.card-vip {
    border-left: 4px solid var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.3));
}

.pack-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pack-icon {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
}

.vip-icon {
    stroke: var(--gold-primary);
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.pack-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.pack-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--gold-primary);
    color: var(--black-deep);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(5deg);
}

.pack-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.pack-price small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.pack-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pack-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

/* ---------------------------------------------
   10. DRINKS GRID (NOUVEAU)
   --------------------------------------------- */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.drink-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.drink-category:hover {
    border-color: var(--gold-primary);
}

.drink-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.category-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.drink-list {
    list-style: none;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}

.drink-item:last-child {
    border-bottom: none;
}

.drink-name {
    font-size: 1rem;
}

.drink-price {
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* ---------------------------------------------
   11. FEATURES GRID
   --------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-glow);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-glow);
}

.feature-icon {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------------------------------------------
   12. FOOTER AMÉLIORÉ
   --------------------------------------------- */
.footer {
    background: var(--black-soft);
    border-top: 1px solid var(--gold-glow);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.footer-section h4 svg {
    width: 20px;
    height: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-section a svg {
    width: 16px;
    height: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.social-links a:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.social-links a:hover svg {
    stroke: var(--black-deep);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.payment-icon {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-glow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------------------
   13. RESPONSIVE
   --------------------------------------------- */
@media (max-width: 1200px) {
    .event-card-grid {
        grid-template-columns: 1fr;
    }
    
    .event-info-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--gold-glow);
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-details {
        flex-direction: column;
        align-items: stretch;
    }
    
    .detail-item {
        width: 100%;
        justify-content: center;
    }
    
    .price-display {
        flex-direction: column;
    }
    
    .event-card-grid {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .price-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pack-card {
        padding: 1.5rem;
    }
    
    .pack-price {
        font-size: 2rem;
    }
}

/* ---------------------------------------------
   14. ANIMATIONS
   --------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}
/* =============================================
   MENU MOBILE PREMIUM - EFFET GLACÉ
   ============================================= */

/* Bouton hamburger */
.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--gold-glow);
    border-radius: var(--radius-md);
    cursor: pointer;
    position: relative;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    border-color: var(--gold-primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white-pearl);
    margin: 6px auto;
    transition: var(--transition);
    border-radius: 4px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay du menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 15, 0.3);
    backdrop-filter: blur(12px) brightness(0.8);
    -webkit-backdrop-filter: blur(12px) brightness(0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Conteneur du menu */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: rgba(26, 27, 34, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-left: 2px solid var(--gold-glow);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu-container.active {
    right: 0;
}

/* En-tête du menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-glow);
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-pearl);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-logo svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-primary);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold-glow);
    color: var(--white-pearl);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: rotate(90deg);
}

/* Liens du menu */
.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--white-pearl);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-menu-link svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-glow);
    transform: translateX(5px);
}

.mobile-menu-link:hover svg {
    transform: scale(1.1);
}

.mobile-menu-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.mobile-menu-link.active svg {
    stroke: var(--gold-primary);
}

/* Section utilisateur dans le menu */
.mobile-menu-user {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-glow);
}

.mobile-menu-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-deep);
    font-weight: 700;
    font-size: 1.2rem;
}

.mobile-menu-user-details {
    flex: 1;
}

.mobile-menu-user-name {
    font-weight: 600;
    color: var(--gold-primary);
}

.mobile-menu-user-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 2px solid var(--gold-glow);
    color: var(--white-pearl);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-menu-logout:hover {
    border-color: var(--red-edition);
    color: var(--red-edition);
    background: rgba(139, 0, 0, 0.1);
}

.mobile-menu-logout svg {
    width: 18px;
    height: 18px;
}

/* Pied du menu */
.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gold-glow);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-social a:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.mobile-menu-social a svg {
    width: 18px;
    height: 18px;
    stroke: var(--white-pearl);
}

.mobile-menu-social a:hover svg {
    stroke: var(--gold-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-container {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-container {
        max-width: 100%;
    }
}
/* =============================================
   CORRECTION BADGE EVENT CARD
   ============================================= */

.event-card {
    position: relative;
    padding-top: 1rem; /* Espace pour le badge */
}

.event-card-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 1rem;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.badge-event {
    background: var(--gold-primary);
    color: var(--black-deep);
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Version améliorée du badge pour qu'il ne cache rien */
.event-card-badge {
    position: static;
    margin-bottom: 1rem;
}

.event-card-grid {
    padding-top: 0.5rem;
}

/* Alternative : badge en haut à droite */
.event-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    z-index: 10;
}

.badge-event {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .event-card-badge {
        position: static;
        margin-bottom: 1rem;
    }
}