/* --- VARIABLES & BASE (Design Liquid Glass) --- */
:root {
    --color-primary-light: #D81B60; 
    --color-secondary-dark: #4A148C; 
    --color-accent: #00e5ff; 
    --color-bg: #0a0816; 
    --color-text-light: #ffffff;
    --color-text-dim: #b0bec5;
    --color-accent-gradient: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary-dark));
    
    /* 💧 LIQUID GLASS VARIABLES 💧 */
    --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-highlight: rgba(255, 255, 255, 0.2); /* Biseau lumineux */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15); /* Ombre douce */
    --glass-shadow-hover: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
}

html, body {
    margin: 0; padding: 0;
    background-color: var(--color-bg); 
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body { padding: 10px; }

/* --- FOND ANIMÉ (BLOBS CYBERPUNK) --- */
.background-blobs {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; overflow: hidden; pointer-events: none;
}

.blob {
    position: absolute; border-radius: 50%; 
    filter: blur(120px); opacity: 0.25; 
    animation: blobFloat 20s infinite alternate ease-in-out; 
    transform-origin: center center;
}

.blob-1 { width: 50vw; height: 50vw; background: var(--color-primary-light); top: -20%; left: -10%; }
.blob-2 { width: 40vw; height: 40vw; background: var(--color-secondary-dark); bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { width: 30vw; height: 30vw; background: var(--color-accent); top: 30%; left: 40%; animation-delay: -10s; opacity: 0.15; }

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(80px, 40px) scale(1.1) rotate(20deg); }
}

/* ---------------- HEADER & NAVIGATION (VERSION 2026) ---------------- */
#header-container {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.02); /* Transparence ultra subtile */
    backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 30px; 
    border-radius: 50px; /* Forme de Pilule ultra-moderne */
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin: 10px auto 30px auto; 
    max-width: 1000px; /* Largeur contenue pour l'élégance */
    position: sticky; top: 15px; z-index: 1000;
    transition: all 0.3s ease;
}

#logo-link { display: flex; justify-content: center; }
#header-logo { height: 64px; width: auto; transition: transform 0.3s; }
#header-logo:hover { transform: scale(1.05); }

#nav-menu { display: none; }
#nav-menu a {
    text-decoration: none; color: var(--color-text-dim);
    font-weight: 500; font-size: 0.9em; margin-left: 35px; 
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
#nav-menu a i { color: var(--color-text-dim); transition: all 0.3s; font-size: 1.1em; }
#nav-menu a:hover { color: white; }
#nav-menu a:hover i { color: var(--color-accent); transform: scale(1.2); }

.menu-icon {
    width: 30px; height: 20px; position: absolute; right: 25px;
    display: flex; flex-direction: column; justify-content: space-between;
    cursor: pointer; z-index: 1000;
}
.menu-icon div {
    width: 100%; height: 2px; background-color: white;
    border-radius: 2px; transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    #header-container { padding: 12px 20px; border-radius: 30px; margin: 10px 5px 25px 5px; }
    #header-logo { height: 26px; }
    .menu-icon { right: 20px; }
    
    #nav-menu {
        display: none; position: fixed; top: 0; right: 0;
        width: 75%; max-width: 300px; height: 100vh;
        background: rgba(10, 8, 22, 0.95); backdrop-filter: blur(24px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8); border-left: 1px solid rgba(255,255,255,0.05);
        flex-direction: column; padding: 80px 20px 20px; z-index: 999; 
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(100%);
    }
    #nav-menu.open { display: flex; transform: translateX(0); }
    #nav-menu a { margin: 10px 0; padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.1em; }
    
    .instagram-menu, .facebook-menu, .email-menu { display: block; }
    .menu-contact-separator { display: block; height: 1px; background-color: rgba(255,255,255,0.1); margin: 20px 0; }
}

@media (min-width: 769px) {
    .menu-icon { display: none; }
    #nav-menu { display: flex; flex-direction: row; align-items: center; flex-grow: 0; }
    .instagram-menu, .facebook-menu, .email-menu, .menu-contact-separator { display: none !important; }
}

/* ---------------- BANNER (H1) (VERSION 2026) ---------------- */
.info-bar {
    text-align: center; padding: 20px 10px 40px 10px;
    background: transparent; border: none; box-shadow: none; margin-bottom: 10px;
}
.info-bar h1 { 
    font-size: 2.8em; font-weight: 900; margin: 0 0 10px 0; 
    letter-spacing: -1px; line-height: 1.2; 
}
.info-bar span { 
    font-size: 1em; color: var(--color-text-dim); font-weight: 400; letter-spacing: 0.5px;
}
.gradient-text { 
    background: var(--color-accent-gradient); -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; font-weight: 900; 
}

@media (max-width: 768px) {
    .info-bar h1 { font-size: 2em; }
}

/* ---------------- GRILLE D'ÉVÉNEMENTS (VERSION SOMBRE & LISIBLE) ---------------- */
.event-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.event-card {
    background: rgba(15, 12, 25, 0.75); /* Fond beaucoup plus sombre pour la lisibilité */
    backdrop-filter: blur(20px) saturate(120%); -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-top: 1px solid rgba(255, 255, 255, 0.15); 
    border-left: 4px solid; /* Ligne de couleur sur la gauche (style notification moderne) */
    border-radius: 16px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s ease; display: flex; flex-direction: column; justify-content: space-between;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(25, 20, 40, 0.85);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.event-date { font-weight: 700; color: var(--color-accent); font-size: 0.9em; letter-spacing: 1px;}
.status-indicator { font-size: 0.75em; font-weight: 800; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 1px; }

.indicator-upcoming { background: rgba(0, 229, 255, 0.15); color: var(--color-accent); border: 1px solid rgba(0, 229, 255, 0.3); }
.indicator-update { background: rgba(216, 27, 96, 0.15); color: #ff4081; border: 1px solid rgba(216, 27, 96, 0.3); }
.indicator-finished { background: rgba(255, 255, 255, 0.05); color: #888; border: 1px solid rgba(255, 255, 255, 0.1); }

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
.blinking { animation: blink 2s linear infinite; }

.status-text { font-size: 0.9em; font-weight: 400; color: var(--color-text-dim); }
.event-name { font-size: 1.4em; font-weight: 800; margin: 5px 0 5px 0; color: white; }
.event-location { font-size: 0.85em; color: var(--color-text-dim); margin: 5px 0 15px 0; font-weight: 500; }
.event-location i { margin-right: 5px; color: var(--color-primary-light); }

.status-avenir { border-left-color: var(--color-accent); }
.status-maj { border-left-color: var(--color-primary-light); }
.status-standard { border-left-color: #555; }

/* LIENS D'ACTION */
.link-action {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; border-radius: 8px; font-weight: 700; text-decoration: none;
    margin-top: 15px; transition: all 0.3s;
}
.link-available { background: var(--color-accent-gradient); color: white; box-shadow: 0 4px 15px rgba(216, 27, 96, 0.2); }
.link-available:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4); }
.link-available i { color: white; }

.link-unavailable { background: rgba(255,255,255,0.05); color: #777; cursor: default; border: 1px solid rgba(255,255,255,0.1); }
.link-unavailable:hover { transform: none; }
.link-unavailable i { color: #777; }

/* ---------------- FOOTER ---------------- */
#footer {
    text-align: center; padding: 40px 20px;
    background: var(--glass-bg); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight);
    border-radius: 15px; box-shadow: var(--glass-shadow); margin-top: 40px;
}
#footertxt { margin-bottom: 25px; color: var(--color-text-dim); }

.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.social-link { text-decoration: none; font-size: 1em; display: flex; align-items: center; font-weight: 600; color: var(--color-text-light); }
.social-link i {
    margin-right: 10px; border-radius: 50%; padding: 10px; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
    transition: all 0.3s; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.2);
}
.social-link:hover i { transform: scale(1.15) translateY(-3px); box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4); background: var(--color-primary-light); border-color: var(--color-primary-light);}

.footer-urls { margin-top: 20px; font-size: 0.9em; font-weight: 500; color: var(--color-text-dim); }
.footer-link { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--color-primary-light); }

/* ---------------- GALERIE DES ALBUMS ---------------- */
.album-card {
    background: var(--glass-bg); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight);
    border-radius: 15px; overflow: hidden; box-shadow: var(--glass-shadow); transition: all 0.4s ease;
    text-decoration: none; color: var(--color-text-light); display: flex; flex-direction: column;
}
.album-card:hover { transform: translateY(-8px); box-shadow: var(--glass-shadow-hover); border-color: rgba(216, 27, 96, 0.4); }

.album-cover { width: 100%; height: 220px; object-fit: cover; background-color: #111; display: block; }

.album-info { padding: 20px; }
.album-title { font-size: 1.3em; font-weight: 800; margin: 0 0 10px 0; color: white; }
.album-meta { display: flex; justify-content: space-between; font-size: 0.9em; color: var(--color-text-dim); margin-bottom: 15px; font-weight: 500;}
.album-meta i { color: var(--color-accent); }

.album-stats {
    background: rgba(216, 27, 96, 0.15); color: #ff4081; border: 1px solid rgba(216, 27, 96, 0.3);
    padding: 6px 12px; border-radius: 20px; font-size: 0.85em; font-weight: 700; display: inline-block;
}

/* ---------------- CARROUSEL INDEX ---------------- */
.albums-carousel-section { margin: 40px 0; }
.section-title { font-size: 1.8em; margin-bottom: 20px; text-align: left; color: white; font-weight: 900;}

.albums-carousel {
    display: flex; overflow-x: auto; gap: 20px; padding-bottom: 20px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--color-primary-light) rgba(255,255,255,0.05);
}
.albums-carousel::-webkit-scrollbar { height: 6px; }
.albums-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.albums-carousel::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 4px; }

.carousel-album-card {
    flex: 0 0 260px; scroll-snap-align: start;
    background: var(--glass-bg); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight);
    border-radius: 15px; overflow: hidden; box-shadow: var(--glass-shadow);
    text-decoration: none; color: white; transition: all 0.4s ease; display: flex; flex-direction: column;
}
.carousel-album-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-hover); border-color: rgba(216, 27, 96, 0.3); }

.carousel-album-card img { width: 100%; height: 160px; object-fit: cover; }
.carousel-album-info { padding: 15px; }
.carousel-album-info h3 { margin: 0 0 5px 0; font-size: 1.1em; color: white; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.carousel-album-info span { font-size: 0.85em; color: var(--color-text-dim); }

.view-all-card {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.2); transition: all 0.3s;
}
.view-all-card:hover { background: rgba(255,255,255,0.1); border-color: var(--color-accent); color: var(--color-accent) !important; }
.view-all-card i { font-size: 2.5em; margin-bottom: 10px; color: var(--color-accent); }

/* ---------------- MOSAÏQUE & SLIDER ---------------- */
.photo-mosaic { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; padding: 10px 0; margin-bottom: 40px; }
.mosaic-item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 12px; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: all 0.3s; }
.mosaic-item:hover { transform: scale(1.05); z-index: 2; border: 1px solid var(--color-primary-light); box-shadow: 0 10px 25px rgba(0,0,0,0.5);}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .photo-mosaic { grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 8px; } }

.viewer-container {
    position: relative; max-width: 1000px; margin: 0 auto;
    background: rgba(0,0,0,0.3); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight);
    border-radius: 15px; overflow: hidden; box-shadow: var(--glass-shadow);
}
.slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slider::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: start; display: flex; justify-content: center; align-items: center; position: relative; min-height: 50vh; max-height: 80vh; }
.slide img { max-width: 100%; max-height: 80vh; object-fit: contain; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.2);
    width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; color: white;
    cursor: pointer; z-index: 10; transition: all 0.3s; display: flex; justify-content: center; align-items: center;
}
.slider-btn:hover { background: var(--color-primary-light); border-color: var(--color-primary-light); }
.prev-btn { left: 15px; } .next-btn { right: 15px; }
@media (max-width: 768px) { .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; } }

.action-bar {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; padding: 20px;
    background: var(--glass-bg); backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border); border-top: 1px solid var(--glass-highlight); border-left: 1px solid var(--glass-highlight);
    border-radius: 15px; margin-top: 25px; box-shadow: var(--glass-shadow);
}
.action-btn {
    padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 0.95em;
    display: flex; align-items: center; gap: 10px; cursor: pointer; border: none; color: white; transition: all 0.3s;
}
.action-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* BOUTON PARTAGE (CORRIGÉ POUR LE THÈME SOMBRE) */
.btn-share { 
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-top: 1px solid rgba(255,255,255,0.2);
    color: white; 
}
.btn-share:hover { background: rgba(255,255,255,0.15); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 4, 11, 0.95); backdrop-filter: blur(15px); z-index: 99999; flex-direction: column; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: white; background: rgba(255, 255, 255, 0.05); width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; cursor: pointer; z-index: 100000; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.2); }
.lightbox-close:hover { background: var(--color-primary-light); transform: rotate(90deg); border-color: var(--color-primary-light); }
.lightbox .viewer-container { max-width: 100%; width: 100%; height: 75vh; background: transparent; box-shadow: none; margin: 0; border-radius: 0; border: none; }
.lightbox .slide { min-height: 75vh; max-height: 75vh; }
.lightbox .slide img { max-height: 75vh; }
.lightbox .action-bar { background: transparent; border: none; box-shadow: none; margin-top: 10px; padding: 0; }

/* --- OPTIMISATION MOBILE POUR LE MODE ADMIN --- */
@media (max-width: 768px) {
    .admin-quick-panel {
        width: calc(100% - 40px) !important; /* Prend presque toute la largeur */
        left: 20px !important;
        top: 10px !important;
        padding: 12px !important;
    }
    
    .admin-react-select {
        font-size: 16px !important; /* Évite le zoom auto forcé sur iPhone */
        height: 45px; /* Plus facile à cliquer avec le pouce */
    }

    .reaction-overlay {
        font-size: 0.85em !important;
        width: 80%;
        white-space: normal !important; /* Permet au texte de passer à la ligne si trop long */
        text-align: center;
    }
}

/* --- BANNIÈRE DE SOUTIEN ORGANISATEUR --- */
.support-banner {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    padding: 20px 25px; margin-top: -10px; margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease;
}
.support-banner:hover {
    background: rgba(255,255,255,0.06);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Couleurs de la bordure selon le réseau */
.support-banner.fb { border-left: 4px solid #1877F2; }
.support-banner.ig { border-left: 4px solid #E1306C; }
.support-banner.web { border-left: 4px solid var(--color-accent); }

.support-content { flex: 1; min-width: 250px; }
.support-title { display: block; font-size: 1.15em; font-weight: 800; color: white; margin-bottom: 5px; letter-spacing: 0.5px; }
.support-desc { font-size: 0.85em; color: var(--color-text-dim); line-height: 1.5; display: block; }

.support-btn {
    padding: 12px 25px; border-radius: 30px; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    white-space: nowrap; text-transform: uppercase; font-size: 0.85em; letter-spacing: 1px;
    color: white !important;
}
.support-btn i { font-size: 1.2em; }
.support-btn:hover { transform: translateY(-3px) scale(1.05); }

/* Dégradés dynamiques des boutons */
.support-banner.fb .support-btn { background: linear-gradient(45deg, #1877F2, #00A5FF); box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }
.support-banner.fb .support-btn:hover { box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6); }

.support-banner.ig .support-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); }
.support-banner.ig .support-btn:hover { box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6); }

.support-banner.web .support-btn { background: linear-gradient(45deg, var(--color-accent), #007bb5); box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3); }
.support-banner.web .support-btn:hover { box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5); }

/* --- CARROUSEL COMPACT (Mini-Tickets COHÉRENTS) --- */
.compact-carousel {
    display: flex; overflow-x: auto; gap: 15px; 
    padding-top: 15px; /* Donne de l'espace en haut pour le badge NEW */
    padding-bottom: 20px; /* Donne de l'espace en bas pour les ombres portées */
    padding-left: 5px; /* Évite que l'ombre de gauche soit coupée */
    scrollbar-width: none; 
}
.compact-carousel::-webkit-scrollbar { display: none; } 

.compact-ticket {
    flex: 0 0 250px; display: flex; align-items: center; gap: 15px; padding: 12px;
    background: rgba(15, 12, 25, 0.75); /* Même fond sombre que les événements ! */
    backdrop-filter: blur(20px) saturate(120%); -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px; text-decoration: none; transition: all 0.3s ease; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.compact-ticket:hover {
    background: rgba(25, 20, 40, 0.85); border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}
.compact-ticket img {
    width: 65px; height: 65px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
}
.compact-ticket-info {
    display: flex; flex-direction: column; overflow: hidden; justify-content: center;
}
.compact-ticket-info h3 {
    margin: 0; font-size: 0.95em; font-weight: 700; color: white;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.compact-ticket-info span { font-size: 0.8em; color: var(--color-text-dim); margin-top: 3px; }

.compact-ticket-badge {
    position: absolute; top: -8px; right: -8px; background: var(--color-accent);
    color: var(--color-bg); font-size: 0.65em; font-weight: 900; padding: 4px 10px;
    border-radius: 12px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(0,229,255,0.4);
}

/* --- BADGE HYPE (VUES ALBUMS) --- */
.hype-view-badge {
    background: rgba(255, 145, 0, 0.1); /* Fond légèrement orangé */
    border: 1px solid rgba(255, 145, 0, 0.3);
    color: #ffba00;
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 0.85em; 
    font-weight: 800; 
    display: inline-flex; 
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.15); /* Aura néon */
}
.fire-icon {
    animation: pulseFire 1.5s infinite alternate;
}
@keyframes pulseFire {
    0% { transform: scale(1); opacity: 0.8; text-shadow: 0 0 5px #ff9100; }
    100% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 15px #ff9100, 0 0 25px #ff0000; }
}