/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #121212;
    --bg-surface-light: #1a1a1a;
    --text-main: #f5f5f5;
    --text-muted: #888888;
    --color-accent: #00ff66; /* Vert Fluo / Acid */
    --color-raw: #ffffff;
    --border-color: #262626;
    
    --font-massive: 'Archivo Black', 'Arial Black', sans-serif;
    --font-body: 'Space Grotesk', 'Helvetica Neue', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typos global */
h1, h2, h3 {
    font-family: var(--font-massive);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.9;
}

/* ==========================================================================
   EFFET GLITCH
   ========================================================================== */
.glitch-text {
    position: relative;
    color: var(--color-raw);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: inherit;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.glitch-text::before {
    color: var(--color-accent);
    animation: glitch-before 3s infinite linear;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
    color: #ff003c;
    animation: glitch-after 3s infinite linear;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-before {
    0%, 90%, 100%  { transform: translate(0); opacity: 0; }
    91%            { transform: translate(-4px, -2px); opacity: 1; }
    93%            { transform: translate(4px, 2px); opacity: 1; }
    95%            { transform: translate(-3px, 1px); opacity: 1; }
    97%            { transform: translate(0); opacity: 0; }
}

@keyframes glitch-after {
    0%, 90%, 100%  { transform: translate(0); opacity: 0; }
    92%            { transform: translate(4px, 3px); opacity: 1; }
    94%            { transform: translate(-4px, -1px); opacity: 1; }
    96%            { transform: translate(2px, 2px); opacity: 1; }
    98%            { transform: translate(0); opacity: 0; }
}

a {
    color: inherit;
    text-decoration: none;
}

.tagline {
    font-family: var(--font-massive);
    color: var(--color-accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}
/* ==========================================================================
   EFFET CYBER SHIMMER - DOUBLE LIGNE (VERT FINALE)
   ========================================================================== */
.title-clean-shimmer {
    display: flex;
    flex-direction: column; 
    line-height: 0.95;       
    margin: 40px 0;
}

.title-clean-shimmer span {
    font-family: var(--font-massive), 'Arial Black', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;

    /* Dégradé laser : Blanc -> Vert Électrique -> Blanc */
    background: linear-gradient(
        to right, 
        #ffffff 25%, 
        var(--color-accent) 45%, 
        var(--color-accent) 55%, 
        #ffffff 75%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    animation: clean-laser-shine 4s linear infinite;
}

.title-clean-shimmer span:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes clean-laser-shine {
    to { background-position: 200% center; }
}

@media (max-width: 768px) {
    .title-clean-shimmer span { font-size: 3rem; }
}
/* ==========================================================================
   BOUTONS & COMPOSANTS — style FrameButton
   ========================================================================== */
.btn {
    display: inline-block;
    position: relative;
    overflow: visible;           /* laisser dépasser les coins */
    padding: 15px 30px;
    font-family: var(--font-massive);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    text-align: center;
    user-select: none;
}

/* ---- Variantes ---- */
.btn-primary {
    background-color: var(--color-raw);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background-color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-raw);
    border: 1.5px solid var(--border-color);
}
.btn-secondary:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background-color: rgba(0, 255, 102, 0.05);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--bg-dark);
}
.btn-accent:hover {
    background-color: var(--color-raw);
}

/* ---- Coins animés (FrameMarkers) ---- */
.btn .corner {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
    opacity: 0.5;
}
.btn:hover .corner { opacity: 1; }

/* Trait haut-gauche */
.btn .corner-tl {
    top:    -5px; left:   -5px;
    border-top:    1.5px solid currentColor;
    border-left:   1.5px solid currentColor;
}
/* Trait haut-droite */
.btn .corner-tr {
    top:    -5px; right:  -5px;
    border-top:    1.5px solid currentColor;
    border-right:  1.5px solid currentColor;
}
/* Trait bas-droite */
.btn .corner-br {
    bottom: -5px; right:  -5px;
    border-bottom: 1.5px solid currentColor;
    border-right:  1.5px solid currentColor;
}
/* Trait bas-gauche */
.btn .corner-bl {
    bottom: -5px; left:   -5px;
    border-bottom: 1.5px solid currentColor;
    border-left:   1.5px solid currentColor;
}

/* Déplacement au hover — chaque coin s'éloigne vers son angle */
.btn:hover .corner-tl { transform: translate(-5px, -5px); }
.btn:hover .corner-tr { transform: translate( 5px, -5px); }
.btn:hover .corner-br { transform: translate( 5px,  5px); }
.btn:hover .corner-bl { transform: translate(-5px,  5px); }

/* Coins blancs fixes sur btn-secondary (indépendant de la couleur du texte) */
.btn-secondary .corner-tl,
.btn-secondary .corner-tr,
.btn-secondary .corner-br,
.btn-secondary .corner-bl {
    border-color: var(--color-raw) !important;
}

/* ---- Nav links — style FrameButton complet ---- */
.nav-links a {
    position: relative;
    overflow: visible;
    padding: 8px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: var(--text-muted);
    background-color: transparent;
    border: 1.5px solid var(--border-color);
    transition: color 0.25s ease,
                border-color 0.25s ease,
                background-color 0.25s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background-color: rgba(0, 255, 102, 0.05);
}

.nav-links a.active {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background-color: rgba(0, 255, 102, 0.05);
}

/* Coins animés */
.nav-links a .corner {
    position: absolute;
    width: 7px;
    height: 7px;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s ease;
}

.nav-links a:hover .corner { opacity: 0.7; }
.nav-links a.active .corner { opacity: 1; }

.nav-links a .corner-tl {
    top: -5px; left: -5px;
    border-top:  1.5px solid var(--color-raw);
    border-left: 1.5px solid var(--color-raw);
}
.nav-links a .corner-tr {
    top: -5px; right: -5px;
    border-top:   1.5px solid var(--color-raw);
    border-right: 1.5px solid var(--color-raw);
}
.nav-links a .corner-br {
    bottom: -5px; right: -5px;
    border-bottom: 1.5px solid var(--color-raw);
    border-right:  1.5px solid var(--color-raw);
}
.nav-links a .corner-bl {
    bottom: -5px; left: -5px;
    border-bottom: 1.5px solid var(--color-raw);
    border-left:   1.5px solid var(--color-raw);
}

.nav-links a:hover .corner-tl,
.nav-links a.active .corner-tl { transform: translate(-4px, -4px); }
.nav-links a:hover .corner-tr,
.nav-links a.active .corner-tr { transform: translate( 4px, -4px); }
.nav-links a:hover .corner-br,
.nav-links a.active .corner-br { transform: translate( 4px,  4px); }
.nav-links a:hover .corner-bl,
.nav-links a.active .corner-bl { transform: translate(-4px,  4px); }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Alignement parfait du Logo + Texte en haut à gauche */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-massive);
    font-size: 1.1rem;
    letter-spacing: -1px;
    text-decoration: none !important;
    position: relative;
    overflow: visible;
    padding: 8px 14px;
    border: 1.5px solid var(--border-color);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.logo:hover {
    border-color: var(--color-raw);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Coins du logo */
.logo .corner {
    position: absolute;
    width: 7px;
    height: 7px;
    pointer-events: none;
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo .corner-tl {
    top: -5px; left: -5px;
    border-top:  1.5px solid var(--color-raw);
    border-left: 1.5px solid var(--color-raw);
}
.logo .corner-tr {
    top: -5px; right: -5px;
    border-top:   1.5px solid var(--color-raw);
    border-right: 1.5px solid var(--color-raw);
}
.logo .corner-br {
    bottom: -5px; right: -5px;
    border-bottom: 1.5px solid var(--color-raw);
    border-right:  1.5px solid var(--color-raw);
}
.logo .corner-bl {
    bottom: -5px; left: -5px;
    border-bottom: 1.5px solid var(--color-raw);
    border-left:   1.5px solid var(--color-raw);
}

.logo:hover .corner-tl { transform: translate(-4px, -4px); }
.logo:hover .corner-tr { transform: translate( 4px, -4px); }
.logo:hover .corner-br { transform: translate( 4px,  4px); }
.logo:hover .corner-bl { transform: translate(-4px,  4px); }

.logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

/* Force l'allumage en VERT de l'encadrement et du texte de la page active */
.nav-links a.active {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    background-color: rgba(0, 255, 102, 0.05) !important;
}
.nav-links a.active .corner {
    opacity: 1 !important;
    color: var(--color-accent) !important;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-raw);
    transition: 0.3s;
}

/* ==========================================================================
   SECTIONS ACCOUEIL
   ========================================================================== */
/* Hero — CSS Grid avec zones nommées, fiable 100% */
.hero {
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 42%;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "content  empty"
        "content  card";
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.9)),
                url('../assets/img/mon-fond.jpg') no-repeat center center / cover;
}

/* Contenu gauche — s'étend sur 2 lignes, centré */
.hero-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 40px;
}

.hero-content .btn {
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2.55rem, 6.8vw, 5.1rem);
    margin-bottom: 20px;
}

.sub-hero {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Card — zone "card" = bas de la colonne droite */
.hero-next-event {
    grid-area: card;
    align-self: end;
    margin-right: 60px;
    border-color: var(--color-accent) !important;
    border-bottom: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

/* Photo en fond plein */
.hero-next-event .poster-bg {
    opacity: 0.45 !important;
    filter: saturate(0.85);
}

/* Manifeste */
.intro-manifesto {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.intro-manifesto h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    max-width: 900px;
    margin-bottom: 30px;
}

.intro-manifesto p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Prochaines Dates */
.next-events {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.events-grid-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.event-card {
    display: grid;
    grid-template-columns: 140px 1fr auto; /* Largeur fixe parfaite pour le talon de gauche */
    align-items: stretch; /* Force tous les blocs internes à faire EXACTEMENT la même hauteur */
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0 30px 0 0; /* Supprime le padding haut/bas/gauche pour coller le ticket aux bords */
    min-height: 140px; /* SÉCURITÉ : Force la même hauteur pour toutes les bannières */
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

event-card:hover {
    border-color: var(--color-accent);
}

/* ==========================================================================
   TALONS DE TICKET (DATE) - AVEC CODE-BARRES & HALO LUMINEUX
   ========================================================================== */
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #141414;
    border-right: 2px dashed var(--border-color); /* Ligne de découpe */
    padding: 20px;
    
    /* Motif de lignes verticales Code-barres */
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 4px,
        rgba(255, 255, 255, 0.02) 4px,
        rgba(255, 255, 255, 0.02) 6px,
        transparent 6px,
        transparent 14px,
        rgba(255, 255, 255, 0.04) 14px,
        rgba(255, 255, 255, 0.04) 18px
    );
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Centre parfaitement les textes et ajoute de l'espace à côté du ticket */
.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px; 
}

/* Aligne verticalement le bouton à droite */
.event-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* Modificateurs de texte à l'intérieur de la date */
.event-date .day {
    font-family: var(--font-massive);
    font-size: 2.2rem;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.event-date .month {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-family: var(--font-massive);
    letter-spacing: 1px;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.event-date .year {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 4px;
    position: relative;
    z-index: 2;
}

/* 4. Effet d'activation au survol de la carte (Hover) */
.event-card:hover .event-date {
    /* La ligne pointillée passe au vert fluo */
    border-right-color: var(--color-accent);
    
    /* Un halo vert "radioactif" se diffuse doucement derrière les chiffres */
    background-image: radial-gradient(
        circle at center, 
        rgba(0, 255, 102, 0.15) 0%, 
        #161616 80%
    );
}

.event-date .day {
    font-family: var(--font-massive);
    font-size: 2rem;
    line-height: 1;
}

.event-date .year {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 2px;
}

.event-date .month {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: bold;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.event-details .location {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.event-details .lineup {
    color: var(--text-muted);
}

.center-action {
    text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 50px 20px;
    background-color: var(--bg-surface);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;      /* Garde le logo intact sans l'écraser */
    /* La ligne border a été supprimée */
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-family: var(--font-massive);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST ADAPTATIONS)
   ========================================================================== */
@media (max-width: 768px) {
    /* Menu Mobile Systèmes */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Event Cards en colonne sur Mobile */
    .event-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .event-date {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 20px;
        margin-right: 0;
        width: 100%;
    }

    .event-action .btn {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   PAGE ÉVÉNEMENTS : TIMELINE & GALERIE
   ========================================================================== */

/* Timeline Références */
.timeline {
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
    margin-left: 10px;
}

.timeline-year {
    font-size: 2rem;
    color: var(--color-accent);
    margin: 40px 0 20px 0;
    position: relative;
}

/* Le petit point sur la ligne du temps */
.timeline-year::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--bg-dark);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

.timeline-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    display: flex;
    align-items: stretch;
    background: #121212;
    border: 1px solid var(--border-color);
    min-height: 110px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.12);
    transform: translateX(5px);
}

/* Texte à gauche */
.tl-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Colonne image à droite */
.tl-img-col {
    width: 300px;
    flex-shrink: 0;
    border-left: 1px solid #1a1a1a;
    overflow: hidden;
    position: relative;
}

.tl-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.6;
    filter: saturate(0.85);
    transition: opacity 0.3s ease, transform 0.4s ease, filter 0.3s ease;
    display: block;
}

.timeline-item:hover .tl-img-col img {
    opacity: 0.92;
    transform: scale(1.04);
    filter: saturate(1.1);
}

/* + décoratif */
.tl-img-col::after {
    content: '+';
    position: absolute;
    top: 8px; right: 10px;
    color: var(--border-color);
    font-size: 0.8rem;
    z-index: 2;
    transition: color 0.3s;
    font-family: var(--font-body);
}
.timeline-item:hover .tl-img-col::after {
    color: var(--color-accent);
}

.timeline-item h4 {
    font-size: 1.2rem;
    color: var(--color-raw);
    margin-bottom: 4px;
    font-family: var(--font-massive);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timeline-role {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.timeline-location {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-style: italic;
}

/* Timeline + image laser côte à côte */
.timeline-with-img {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.timeline-with-img .timeline {
    flex: 1;
    min-width: 0;
}

.timeline-laser {
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.timeline-laser img {
    width: 100%;
    display: block;
    border: 1px solid var(--border-color);
    object-fit: cover;
    transition: border-color 0.3s ease;
    filter: brightness(0.9) saturate(1.1);
}

.timeline-laser img:hover {
    border-color: var(--color-accent);
    filter: brightness(1) saturate(1.2);
}

@media (max-width: 900px) {
    .timeline-with-img {
        flex-direction: column;
    }
    .timeline-laser {
        width: 100%;
        position: static;
    }
}

/* Galerie d'images (Album) */
.gallery-grid {
    display: grid;
    /* Créé des colonnes automatiques et responsives */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--border-color);
    aspect-ratio: 1 / 1; /* Format carré parfait pour Insta/Affiches */
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit le carré sans déformer l'image */
    transition: transform 0.4s ease;
    opacity: 0.7;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Petit zoom stylé au survol */
    opacity: 1;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--color-raw);
    font-family: var(--font-massive);
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* ==========================================================================
   EVENT CARD POSTER — Prochains événements style Festival
   ========================================================================== */
.event-card-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    transition: border-color 0.3s ease;
    background: var(--bg-surface);
}
.event-card-poster:hover { border-color: var(--color-accent); }

/* Photo en fond ultra-subtile */
.event-card-poster .poster-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.07;
    filter: saturate(0.5);
    transition: opacity 0.4s ease;
    z-index: 0;
    display: block;
}
.event-card-poster:hover .poster-bg { opacity: 0.13; }

/* Barre verte gauche avec texte vertical */
.poster-left-bar {
    position: relative;
    z-index: 1;
    background-color: var(--color-accent);
    color: var(--bg-dark);
    padding: 20px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: var(--font-massive);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}

/* Zone principale */
.poster-main {
    position: relative;
    z-index: 1;
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.poster-date-line {
    font-family: var(--font-massive);
    font-size: 0.78rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.poster-title {
    font-family: var(--font-massive);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--color-raw);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.poster-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.poster-meta span::before { content: '→ '; color: var(--color-accent); }

/* Bouton à droite */
.poster-action {
    position: relative;
    z-index: 1;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border-color);
}

/* ==========================================================================
   HISTORIQUE — DARK CARDS GRID + GHOST YEARS
   ========================================================================== */
.hist-year-block { margin-bottom: 60px; }

.hist-year-sep {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.hist-ghost-year {
    font-family: var(--font-massive);
    font-size: 4.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #2a2a2a;
    user-select: none;
    letter-spacing: -2px;
}

.hist-year-line { flex: 1; height: 1px; background: var(--border-color); }

.hist-year-count {
    font-family: var(--font-massive);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #444;
    text-transform: uppercase;
    white-space: nowrap;
}

.hist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hist-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #1e1e1e;
    aspect-ratio: 16 / 7;
    cursor: default;
    transition: border-color 0.3s ease;
    background: #0d0d0d;
}
.hist-card:hover { border-color: var(--color-accent); }

.hist-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.38;
    filter: saturate(0.7);
    transition: opacity 0.4s ease, transform 0.5s ease, filter 0.4s ease;
    display: block;
}
.hist-card:hover img { opacity: 0.65; transform: scale(1.04); filter: saturate(1.05); }

.hist-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.hist-card-tag {
    position: absolute;
    top: 10px; right: 10px;
    font-family: var(--font-massive);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: #444;
    border: 1px solid #2a2a2a;
    padding: 3px 9px;
    text-transform: uppercase;
    z-index: 2;
    transition: color 0.3s, border-color 0.3s;
}
.hist-card:hover .hist-card-tag { color: var(--color-accent); border-color: var(--color-accent); }

.hist-card-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 14px 18px;
    z-index: 2;
}
.hist-card-content h4 {
    font-family: var(--font-massive);
    font-size: 1rem;
    color: #ddd;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 1;
    transition: color 0.3s;
}
.hist-card:hover .hist-card-content h4 { color: #fff; }

.hist-role { font-size: 0.75rem; color: var(--color-accent); font-weight: bold; margin-bottom: 1px; }
.hist-loc  { font-size: 0.72rem; color: #555; font-style: italic; }

/* Carte sans image */
.hist-card--no-img { background: #0d0d0d; }
.hist-card--no-img .hist-card-overlay {
    background: linear-gradient(135deg, rgba(0,255,102,0.04) 0%, transparent 100%);
}

/* ==========================================================================
   ALBUM SOIRÉES
   ========================================================================== */
.album-year-block {
    margin-bottom: 70px;
}
.album-year-block:last-child {
    margin-bottom: 0;
}

.album-year-label {
    font-family: var(--font-massive);
    font-size: 3rem;
    color: var(--color-accent);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.album-item {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    cursor: default;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.album-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.album-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.album-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0.75;
    display: block;
}

.album-item:hover .album-img-wrap img {
    transform: scale(1.06);
    opacity: 1;
}

.album-item figcaption {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--bg-surface);
}

.album-title {
    font-family: var(--font-massive);
    font-size: 0.95rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SYSTÈME DE PANIER
   ========================================================================== */

/* Bouton flottant */
#fl-cart-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    background: var(--color-accent);
    color: var(--bg-dark);
    border: none;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.2s, transform 0.2s;
}
#fl-cart-btn:hover { background: var(--color-raw); transform: scale(1.08); }

.fl-cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    font-family: var(--font-massive);
    font-size: 0.72rem;
    font-weight: 900;
    min-width: 22px;
    height: 22px;
    padding: 0 4px;
    border-radius: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    z-index: 10;
    line-height: 1;
}

/* Overlay */
#fl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
#fl-overlay.show { opacity: 1; pointer-events: all; }

/* Drawer */
#fl-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    z-index: 9002;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
}
#fl-drawer.open { right: 0; }

.fl-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-massive);
    font-size: 1rem;
    letter-spacing: 3px;
}
.fl-drawer-header button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.fl-drawer-header button:hover { color: var(--color-accent); }

#fl-cart-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.fl-cart-empty {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 40px 0;
}

.fl-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
.fl-cart-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}
.fl-cart-item-info { flex: 1; min-width: 0; }
.fl-cart-item-name {
    font-family: var(--font-massive);
    font-size: 0.72rem;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fl-cart-item-price {
    font-size: 0.82rem;
    color: var(--color-accent);
    font-family: var(--font-massive);
}
.fl-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-massive);
    font-size: 0.85rem;
}
.fl-cart-item-qty button {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fl-cart-item-qty button:hover { border-color: var(--color-accent); color: var(--color-accent); }
.fl-cart-item-del {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s;
    padding: 4px;
}
.fl-cart-item-del:hover { color: #ff4444; }

.fl-drawer-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-surface);
}
.fl-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-massive);
    margin-bottom: 16px;
}
.fl-total-row span:first-child { font-size: 0.72rem; letter-spacing: 3px; color: var(--text-muted); }
.fl-total-row span:last-child  { font-size: 1.4rem; color: var(--color-accent); }
.fl-checkout-btn {
    width: 100%;
    padding: 14px;
    font-family: var(--font-massive);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--color-accent);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.fl-checkout-btn:hover { background: var(--color-raw); }

/* Notification */
#fl-notif {
    position: fixed;
    bottom: 96px;
    right: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--color-accent);
    color: var(--text-main);
    font-family: var(--font-massive);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 16px;
    z-index: 9100;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
#fl-notif.show { opacity: 1; transform: translateY(0); }

/* Modal taille */
#fl-size-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
#fl-size-modal.show { opacity: 1; pointer-events: all; }

.fl-size-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 36px 40px;
    position: relative;
    max-width: 360px;
    width: 90%;
    text-align: center;
}
.fl-size-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}
.fl-size-close:hover { color: var(--color-accent); }
.fl-size-label {
    font-family: var(--font-massive);
    font-size: 0.62rem;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 6px;
}
.fl-size-name {
    font-family: var(--font-massive);
    font-size: 1rem;
    margin-bottom: 24px;
}
.fl-size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.fl-size-grid button {
    padding: 12px;
    font-family: var(--font-massive);
    font-size: 0.82rem;
    letter-spacing: 2px;
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.fl-size-grid button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--bg-dark);
}

/* ==========================================================================
   ADAPTATION DU FOOTER SHADCN / 21ST.DEV
   ========================================================================== */

/* Structure globale du conteneur */
.advanced-footer {
    background-color: rgba(26, 26, 26, 0.5);
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
}

/* Grille responsive fidèle au composant d'origine */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Par défaut sur mobile (grid-cols-1) */
    gap: 32px; /* gap-8 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px; /* py-16 px-4 */
}

/* Alignements des colonnes */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px; /* gap-4 */
}

/* Bloc Logo + Nom */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px; /* gap-3 */
}

.footer-logo {
    width: 40px; /* h-10 w-10 */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem; /* text-xl */
    font-family: var(--font-massive);
}

.footer-desc {
    font-size: 0.875rem; /* text-sm */
    color: var(--text-muted); /* text-muted-foreground */
    line-height: 1.6;
}

/* Titres de sections */
.footer-heading {
    font-size: 1rem; /* text-base */
    font-family: var(--font-body);
    font-weight: 600; /* font-semibold */
    color: var(--color-raw);
    margin-bottom: 0px;
}

/* Gestion radicale des listes pour supprimer TOUTES les puces de l'image */
.advanced-footer ul, 
.advanced-footer li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px; /* space-y-2 */
}

.footer-links a {
    font-size: 0.875rem; /* text-sm */
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-raw);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    filter: grayscale(1) brightness(2);
}

.social-link:hover .social-icon {
    opacity: 1;
    filter: none;
}

/* --- FOOTER : CONTACT + PRESTATIONS B2B --- */
.footer-contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--color-accent); }

.footer-contact-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-col-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

/* Boutons CTA footer */
.footer-cta-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    font-family: var(--font-massive);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s;
}
.footer-cta-btn:hover {
    border-color: var(--color-raw);
    color: var(--color-raw);
}

/* Variante verte — Demander un devis */
.footer-cta-btn--accent {
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.footer-cta-btn--accent:hover {
    background: var(--color-accent);
    color: #000;
}

/* ── Gradient bars in sections ── */
.with-bars {
    position: relative;
    overflow: hidden;
}
.with-bars > *:not(.footer-gb) {
    position: relative;
    z-index: 1;
}
.footer-gb {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    z-index: 0;
}
.footer-gb span {
    flex: 1;
    background: linear-gradient(to top, rgba(0,255,102,0.55), rgba(0,255,102,0.08) 60%, transparent);
}
@keyframes fgb0 { 0%{height:100%} 100%{height:45%} }
@keyframes fgb1 { 0%{height:91%}  100%{height:41%} }
@keyframes fgb2 { 0%{height:82%}  100%{height:37%} }
@keyframes fgb3 { 0%{height:73%}  100%{height:33%} }
@keyframes fgb4 { 0%{height:65%}  100%{height:29%} }
@keyframes fgb5 { 0%{height:57%}  100%{height:26%} }
@keyframes fgb6 { 0%{height:50%}  100%{height:22%} }
@keyframes fgb7 { 0%{height:43%}  100%{height:19%} }
@keyframes fgb8 { 0%{height:37%}  100%{height:16%} }
@keyframes fgb9 { 0%{height:31%}  100%{height:14%} }

/* Bas du site */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 16px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- MEDIA QUERIES (RESPONSIVE EXACT) --- */

/* Tablette (md) */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
    .footer-col.center-md {
        justify-self: center; /* md:justify-self-center */
    }
}

/* Ordinateur (lg) */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
        gap: 48px; /* lg:gap-12 */
    }
}

/* ==========================================================================
   CORRECTIONS FINALES (PLACHÉES TOUT EN BAS POUR S'APPLIQUER PAR-DESSUS LE RESTE)
   ========================================================================== */

/* 1. AGGRANDISSEMENT MAXIMAL DU TITRE SUR 2 LIGNES */
.title-clean-shimmer {
    line-height: 0.85 !important; /* Rapproche les deux lignes au maximum */
}
.title-clean-shimmer span {
    font-size: clamp(4.5rem, 11vw, 7.5rem) !important; /* Titre gigantesque et adaptatif */
}

/* 2. BOUTON ACCUEIL (Navigation active) : UNIQUEMENT CONTOUR ET TEXTE VERT */
.nav-links a.active {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    background-color: transparent !important; /* Supprime le fond, devient transparent */
}
/* Force les petits coins du bouton Accueil à devenir verts */
.nav-links a.active .corner {
    color: var(--color-accent) !important;
    opacity: 1 !important;
}

/* 3. BOUTON "VOIR TOUTES LES DATES" : UNIQUEMENT CONTOUR ET TEXTE VERT */
.center-action .btn {
    color: var(--color-accent) !important;
    border: 1.5px solid var(--color-accent) !important; /* Contour vert fluo */
    background-color: transparent !important; /* Supprime le fond noir ou blanc */
}
/* Force les petits coins du bouton "Voir toutes les dates" à devenir verts */
.center-action .btn .corner {
    color: var(--color-accent) !important;
    opacity: 1 !important;
}
.btn .corner, 
.nav-links a .corner {
    display: inline-block !important; /* Réactive les coins pour les autres boutons */
}

/* 2. On les masque UNIQUEMENT pour le bouton / pavé Fréquences Lorraine */
.logo .corner,
.logo-wrap .corner,
.footer-logo-wrap .corner {
    display: none !important; /* Supprime les crochets blancs uniquement ici */
}
/* ==========================================================================
   BANDEAU DÉFILANT — Style B : fond vert / texte noir + scanlines + glitch
   ========================================================================== */
.rave-marquee {
    position: relative;
    background-color: var(--color-accent);
    color: #000;
    font-family: var(--font-massive);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
    cursor: default;
    user-select: none;
}

/* Scanlines verticales sombres sur fond vert */
.rave-marquee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 18px,
        rgba(0, 0, 0, 0.07) 18px,
        rgba(0, 0, 0, 0.07) 20px
    );
    pointer-events: none;
    z-index: 1;
}

/* Fondu sur les bords gauche/droit */
.rave-marquee::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--color-accent) 0%,
        transparent 60px,
        transparent calc(100% - 60px),
        var(--color-accent) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* TRACK — contient 2 copies du texte pour boucle seamless */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-loop 32s linear infinite;
    position: relative;
    z-index: 3;
}
.marquee-track:hover { animation-play-state: paused; }

/* Chaque copie du texte */
.scramble-text {
    display: block;
    padding: 0 80px;
    font-weight: 900;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* Séparateur ◆ légèrement opacifié */
.marquee-sep { opacity: 0.4; margin: 0 6px; }

@keyframes marquee-loop {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Customisation de ton historique existant */
.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px dashed rgba(255, 255, 255, 0.1); /* Ligne pointillée sombre à gauche */
}

.timeline-item {
    position: relative;
    overflow: hidden;
    background: #121212;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Fond bannière via variable CSS --banner */
.timeline-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--banner, none);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.timeline-item:hover::after {
    opacity: 0.55;
}

/* Tous les enfants directs passent au-dessus du fond */
.timeline-item > *:not(div) {
    position: relative;
    z-index: 1;
}

/* Effet au survol */
.timeline-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
    transform: translateX(5px);
}

.timeline-item::before {
    content: '+';
    position: absolute;
    top: 5px; right: 10px;
    color: var(--border-color);
    font-size: 0.8rem;
    z-index: 2;
}
.timeline-item:hover::before {
    color: var(--color-accent);
}
