   :root {
            --cyan: #11cdd4;
            --pink: #bc47c1;
            --dark-bg: #0a0a0a;
            --text-white: #ffffff;
            --font-stack: 'Montserrat', sans-serif;
            
            /* Player Vars */
            --pl-bg: rgba(10, 10, 12, 0.95);
            --pl-accent: #8e44ad;
            --pl-height: 80px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--dark-bg); 
            color: var(--text-white); 
            font-family: var(--font-stack); 
            overflow-x: hidden; 
        }
        a { text-decoration: none; color: white; transition: 0.3s; }
        ul { list-style: none; }

        /* Correction iOS pour empêcher le zoom auto sur les inputs sans casser le design */
        input, select, textarea {
            font-size: 16px !important;
        }


        /* --- 2. HEADER & MENU (NOUVELLE STRUCTURE) --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            /* On change flex row pour column pour empiler Logo et Menu */
            display: flex;
            flex-direction: column;
            z-index: 100;
            /* Dégradé plus long pour couvrir les deux lignes */
            background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
            padding-bottom: 20px;
        transition: all 0.4s ease; /* Important pour l'effet fluide */
        }

        /* Ligne du haut : Hamburger - Logo - Socials */
        .header-top {
            display: grid;
            /* Astuce CSS Grid pour centrer parfaitement l'élément du milieu */
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            width: 100%;
            padding: 15px 40px 5px 40px; /* Padding haut/côtés */
        }
        header.scrolled {
    background: rgba(0, 0, 0, 0.95) !important; /* Fond sombre quasi opaque */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* Ombre portée */
    padding-top: 10px; /* On réduit un peu la taille pour faire compact */
    padding-bottom: 10px;
    backdrop-filter: blur(10px); /* Effet flou iOS */
}

/* Optionnel : Réduire la taille du logo au scroll */
header.scrolled .logo img {
    height: 45px; /* Plus petit */
    transition: 0.3s;
}

        .hamburger {
            font-size: 24px;
            cursor: pointer;
            justify-self: start; /* Collé à gauche */
        }
        .hamburger:hover { color: var(--cyan); }

        .logo {
            justify-self: center; /* Centré au milieu */
            display: flex;
            align-items: center;
        }
        .logo img { height: 180px; /* Logo un peu plus grand pour l'impact */ }

        /* Conteneur */
.socials {
    justify-self: end;
    display: flex;
    gap: 10px; /* Espace propre entre les icônes */
    align-items: center;
}

/* Le bouton rond (balise <a>) */
.soc-btn {
    width: 36px; 
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Style par défaut : Verre fumé */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    
    /* Transitions fluides */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Effet "rebond" léger */
    position: relative;
    overflow: hidden;
}

/* L'icône à l'intérieur */
.soc-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* --- EFFET AU SURVOL (HOVER) --- */
.soc-btn:hover {
    background: var(--cyan); /* Le fond devient Cyan */
    border-color: var(--cyan);
    color: #000; /* L'icône devient noire pour le contraste */
    
    /* Lévitation */
    transform: translateY(-3px);
    
    /* Lueur Néon */
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.6), 
                0 0 5px rgba(17, 205, 212, 0.8);
}

/* Petite rotation de l'icône au survol pour le dynamisme */
.soc-btn:hover i {
    transform: scale(1.1);
}

/* --- Masquer les réseaux sociaux sur mobile (écrans < 768px) --- */
@media (max-width: 768px) {
    .socials {
        display: none !important;
    }

    /* Optionnel : Ajuster la grille du header pour que le logo reste bien centré */
    .header-top {
        display: flex; /* On passe en Flexbox sur mobile pour simplifier */
        justify-content: space-between;
        padding-right: 20px; /* Petit équilibre visuel */
    }
    
    /* On s'assure que le logo est bien au milieu */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}
























        /* Ligne du bas : Navigation Desktop */
        .desktop-nav {
            display: none;
        }
        
        @media (min-width: 1024px) {
            .desktop-nav {
                display: flex;
                justify-content: center; /* Centré horizontalement */
                gap: 30px;
                margin-top: 10px; /* Espace avec le logo */
                padding: 0 20px;
            }
            .desktop-nav > li {
                position: relative;
                padding: 10px 0;
            }
            .desktop-nav a {
                font-size: 12px; /* Un peu plus fin pour l'élégance */
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                position: relative;
                opacity: 0.9;
            }
            .desktop-nav a:hover { opacity: 1; color: var(--cyan); }

            /* Petit carré cyan au hover */
            .desktop-nav > li > a::after {
                content: '';
                display: block;
                width: 0%; 
                height: 2px;
                background: var(--cyan);
                margin-top: 4px;
                transition: 0.3s;
                opacity: 0;
            }
            .desktop-nav > li:hover > a::after { width: 100%; opacity: 1; }

            /* SOUS-MENU */
            .submenu {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%) translateY(10px); /* Centré par rapport au parent */
                background: #0c0c0c;
                min-width: 200px;
                padding: 10px 0;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-top: 2px solid var(--cyan);
                box-shadow: 0 10px 30px rgba(0,0,0,0.8);
                text-align: left;
            }
            .desktop-nav li:hover .submenu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
            .submenu li a {
                display: block;
                padding: 10px 20px;
                font-size: 12px;
                color: #aaa;
                text-transform: none;
                letter-spacing: 0;
            }
            .submenu li a:hover {
                color: white;
                background: rgba(255,255,255,0.05);
            }
            .submenu li a::after { display: none; }
        }

        /* --- OVERLAY MOBILE --- */
     /* --- OVERLAY MOBILE --- *//* --- OVERLAY GLOBAL --- */
.overlay-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: radial-gradient(circle at top right, #1a103c, #000);
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    display: block !important; /* Force l'affichage pour le JS */
}

.overlay-menu.active { transform: translateY(0); }

.overlay-scroll-container {
    height: 100%;
    overflow-y: auto;
    padding: 100px 30px 50px 30px;
}

/* Liens Principaux */
.overlay-links { padding: 0; }
.overlay-links > li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.overlay-links li a, .mobile-menu-item {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-links i { width: 30px; color: var(--cyan); font-size: 18px; }

/* Accordéon Mobile */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 35px;
    transition: max-height 0.5s ease-out;
}

.has-mobile-submenu.active .mobile-submenu {
    max-height: 1000px; /* Grande valeur pour laisser dérouler */
    margin-top: 15px;
}

.has-mobile-submenu.active .arrow {
    transform: rotate(180deg);
    color: var(--pink);
}

.mobile-submenu li { padding: 8px 0; }
.mobile-submenu li a {
    font-size: 16px !important;
    text-transform: none;
    font-weight: 400;
    color: #ccc !important;
}

.sub-category {
    font-size: 11px !important;
    color: var(--cyan) !important;
    font-weight: 900;
    letter-spacing: 2px;
    margin-top: 15px;
    border-bottom: 1px solid rgba(17, 205, 212, 0.2);
}

/* Réseaux Sociaux */
.mobile-social-wrap { margin-top: 50px; text-align: center; }
.mobile-social-wrap p { font-size: 10px; letter-spacing: 3px; color: #555; margin-bottom: 20px; }

.mobile-social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.m-soc {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 20px;
    transition: 0.3s;
}

.m-soc.fb:hover { background: #3b5998; box-shadow: 0 0 20px #3b5998; }
.m-soc.tk:hover { background: #000; border-color: #fff; }
.m-soc.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.m-soc.yt:hover { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
/* --- ACCORDÉON MOBILE (CORRECTION) --- */
.mobile-submenu {
    display: none; /* CACHÉ PAR DÉFAUT */
    padding-left: 20px;
    margin-top: 10px;
    list-style: none;
}

/* On affiche uniquement quand le parent a la classe .active */
.has-mobile-submenu.active .mobile-submenu {
    display: block; 
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
}

/* Rotation de la flèche */
.has-mobile-submenu i {
    transition: transform 0.3s ease;
}
.has-mobile-submenu.active i {
    transform: rotate(180deg);
    color: var(--cyan);
}

.mobile-submenu li {
    font-size: 18px !important;
    border: none !important;
    padding: 5px 0 !important;
}
.mobile-submenu li a { color: #888 !important; }



















/* --- BOUTON FERMETURE OVERLAY --- */
.close-btn {
    position: absolute;
    top: 25px;       /* Distance du haut */
    right: 25px;     /* Collé à l'extrême droite */
    width: 60px;     /* Zone de clic élargie */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;  /* Au-dessus de tout le contenu de l'overlay */
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn i {
    font-size: 45px; /* CROIX BEAUCOUP PLUS GROSSE */
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Ombre pour la lisibilité */
}

.close-btn:hover i {
    color: var(--pink); /* Effet au survol */
    transform: rotate(90deg); /* Animation sympa au survol */
}

/* Ajustement pour éviter que le contenu ne commence sous la croix */
.overlay-scroll-container {
    padding-top: 100px !important; 
}













        /* --- 3. HERO BACKGROUND --- */
        .hero-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            background-color: #000;
        }
        .bg-image {
            width: 100%; height: 100%;
            background-image: url('../../uploads/images/head-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.6; 
        }

/* --- AJOUT POUR MOBILE --- */
@media (max-width: 768px) {
    .bg-image {
        /* La valeur change l'axe horizontal (X).
           center = 50%
           right  = 100% (Collé à droite)
           
           Essaie une valeur comme 65%, 75% ou 'right' 
           pour trouver le cadrage parfait.
        */
        background-position: 15% center; 
    }
}

        .scan-grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
            background-size: 3px 3px; 
            mix-blend-mode: overlay;
        }
        .vignette {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 40% 50%, transparent 0%, #000 90%);
        }

    /* --- 4. CONTENU HERO --- */
.hero-content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* On change 'justify-content: center' par 'flex-end' pour pousser vers le bas */
    /* Et on ajoute un padding-bottom pour qu'il ne touche pas le player */
    justify-content: flex-end; 
    align-items: flex-end; 
    padding-right: 10%;
    padding-left: 40%; 
    padding-bottom: 15vh; /* Ajuste cette valeur pour descendre plus ou moins (ex: 10vh, 20vh...) */
}

.sly-tagline {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px; /* Espace entre le typewriter et le titre */
    height: 60px;
    width: 100%;
    text-align: center; 
}
/* --- CSS PAR DÉFAUT (PC/Tablette large) --- */
.main-title {
    font-size: 60px; /* On remet grand pour le PC */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    transform: rotate(-3deg);
    margin: 10px 0 40px 0;
    text-align: center;
    width: 100%;
    animation: floatText 4s ease-in-out infinite;
}

        .blinking-cursor {
            display: inline-block;
            width: 12px; height: 3px;
            background: #fff;
            animation: blink 1s infinite;
            vertical-align: middle;
            margin-left: 5px;
        }


        .txt-cyan { color: var(--cyan); }
        .txt-pink { color: var(--pink); }
        
        .highlight-bg {
            background: #0a0a0a; 
            padding: 0 10px;
            display: inline-block;
            text-shadow: 0 0 20px rgba(17, 205, 212, 0.4);
        }

        .desc-box {
            background: rgba(12, 12, 12, 0.6);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 25px;
            max-width: 500px;
            transform: skewX(-15deg); 
            margin-right: 50px;
            position: relative;
        }
        
        .desc-text {
            transform: skewX(15deg); 
            color: #ccc;
            font-size: 15px;
            line-height: 1.5;
            font-weight: 400;
            border-right: 2px solid #ccc; 
            white-space: pre-wrap;
            display: inline-block;
            overflow: hidden;
            margin: 0;
        }

        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
        @keyframes floatText {
            0%, 100% { transform: rotate(-3deg) translateY(0); }
            50% { transform: rotate(-3deg) translateY(-10px); }
        }

        /* --- STICKY PLAYER CSS --- */
        .sticky-player {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            height: var(--pl-height);
            background: var(--pl-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10000;
            color: white;
            font-family: 'Inter', sans-serif;
        }
        .player-container {
            max-width: 1400px; margin: 0 auto; height: 100%;
            display: flex; align-items: center; justify-content: space-between; padding: 0 25px;
        }
        .player-section.info { display: flex; align-items: center; gap: 15px; flex: 1; }
        .player-cover-wrap { position: relative; width: 55px; height: 55px; }
        .player-cover { width: 100%; height: 100%; border-radius: 8px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        .live-dot-wrap { position: absolute; bottom: -2px; right: -2px; background: #000; padding: 2px; border-radius: 50%; }
        .live-dot { display: block; width: 10px; height: 10px; background: #ff0000; border-radius: 50%; box-shadow: 0 0 8px #ff0000; animation: pulseLive 2s infinite; }
        @keyframes pulseLive { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
        .player-track { font-weight: 800; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 250px; }
        .player-artist { font-size: 13px; color: #aaa; margin-top: 2px; }
        .player-section.controls { flex: 1; display: flex; justify-content: center; }
        .btn-main-play { width: 52px; height: 52px; border-radius: 50%; background: var(--pl-accent); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4); }
        .btn-main-play:hover { transform: scale(1.1); background: #9b59b6; }
        .player-section.tools { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 30px; }
        .volume-box { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 8px 15px; border-radius: 20px; }
        .vol-icon { font-size: 14px; opacity: 0.7; }
        .volume-slider { -webkit-appearance: none; width: 80px; height: 4px; background: #444; border-radius: 5px; outline: none; }
        .volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: var(--pl-accent); border-radius: 50%; cursor: pointer; }
        .player-stream-info { display: flex; align-items: center; gap: 8px; }
        .badge-hd { font-size: 10px; font-weight: 900; border: 1px solid var(--pl-accent); color: var(--pl-accent); padding: 1px 4px; border-radius: 3px; }
        .stream-bitrate { font-size: 11px; color: #666; font-weight: 600; }

        @media (max-width: 1024px) {
            .hero-content { padding-left: 5%; padding-right: 5%; align-items: center; }
            .main-title { font-size: 40px; }
            .sly-tagline { font-size: 30px; }
            .desc-box { margin-right: 0; }
            .desktop-nav { display: none; }
            /* Mobile adjustment for header grid */
            .header-top { padding: 15px 20px; }
            .logo img { height: 45px; }
            /* Mobile Player */
            .player-section.tools { display: none; }
            .player-track { max-width: 150px; }
            .player-container { padding: 0 15px; }
        }




        #loader-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: fadeOutLoader 0.5s forwards 2.5s; /* Disparait après 2.5s */
    pointer-events: none;
}

.audio-equalizer {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 60px;
}

.audio-equalizer span {
    display: block;
    width: 8px;
    background: var(--cyan);
    border-radius: 4px;
    animation: equalizerBounce 1s infinite ease-in-out;
    box-shadow: 0 0 15px var(--cyan);
}

/* Variations de couleur et de rythme pour chaque barre */
.audio-equalizer span:nth-child(1) { height: 30px; animation-delay: 0.1s; }
.audio-equalizer span:nth-child(2) { height: 50px; background: var(--pink); box-shadow: 0 0 15px var(--pink); animation-delay: 0.2s; }
.audio-equalizer span:nth-child(3) { height: 40px; animation-delay: 0.3s; }
.audio-equalizer span:nth-child(4) { height: 55px; background: var(--pink); box-shadow: 0 0 15px var(--pink); animation-delay: 0.4s; }
.audio-equalizer span:nth-child(5) { height: 25px; animation-delay: 0.5s; }

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 12px;
    color: white;
    animation: blinkText 1.5s infinite;
}

@keyframes equalizerBounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.8); }
}

@keyframes blinkText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes fadeOutLoader {
    to { opacity: 0; visibility: hidden; }
}


/* --- NOUVEAU TITRE MUSIQUE STYLE PODCAST --- */
.music-header-styled {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrage horizontal */
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.music-title-outline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 70px; /* Un peu plus gros pour l'impact */
    line-height: 0.85;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    /* L'effet contour demandé */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    /* Petit drop shadow pour détacher du fond */
    filter: drop-shadow(0 0 5px rgba(188, 71, 193, 0.3));
}

.music-badge {
    background: var(--pink); /* Utilisation de la variable Rose définie plus haut */
    color: #fff;
    font-weight: 800;
    padding: 5px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Positionnement : on remonte un peu pour chevaucher le titre */
    transform: translateY(-15px) rotate(-2deg); 
    box-shadow: 0 0 20px var(--pink); /* Effet Néon */
    border: 1px solid rgba(255,255,255,0.2);
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .music-title-outline {
        font-size: 45px;
    }
    .music-badge {
        font-size: 12px;
        padding: 4px 15px;
        transform: translateY(-10px) rotate(-2deg);
    }
}










/* --- NOUVEAU TITRE STÉPHANOIS STYLE PODCAST --- */
.steph-header-styled {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrage horizontal */
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.steph-title-outline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 70px;
    line-height: 0.85;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    /* L'effet contour demandé */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.3));
}

.steph-badge {
    background: #2ecc71; /* Vert émeraude/Stéphanois */
    color: #000; /* Texte noir pour meilleur contraste sur le vert */
    font-weight: 800;
    padding: 5px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Positionnement : chevauchement du titre avec inclinaison inverse */
    transform: translateY(-15px) rotate(2deg); 
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.6); /* Effet Néon vert */
    border: 1px solid rgba(255,255,255,0.2);
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .steph-title-outline {
        font-size: 40px;
    }
    .steph-badge {
        font-size: 11px;
        padding: 4px 15px;
        transform: translateY(-10px) rotate(2deg);
    }
}




/* --- NOUVEAU TITRE HI-TECH STYLE PODCAST --- */
.hitech-header-styled {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.hitech-title-outline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 70px;
    line-height: 0.85;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    /* Contour blanc transparent */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    color: transparent;
    /* Ombre cyan pour le côté futuriste */
    filter: drop-shadow(0 0 8px rgba(17, 205, 212, 0.4));
}

.hitech-badge {
    background: #e74c3c; /* Rouge vif pour Mia */
    color: #fff;
    font-weight: 800;
    padding: 5px 25px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Positionnement : décalé vers la droite et chevauchant le titre */
    transform: translateY(-15px) translateX(40px) rotate(-3deg); 
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Ajustement Mobile */
@media (max-width: 768px) {
    .hitech-title-outline {
        font-size: 42px;
    }
    .hitech-badge {
        font-size: 12px;
        padding: 4px 15px;
        transform: translateY(-10px) translateX(20px) rotate(-3deg);
    }
}

/* --- GESTION DU 3ÈME NIVEAU (SOUS-SOUS-MENU) --- */

/* On positionne le parent pour que l'enfant se cale par rapport à lui */
.desktop-nav .submenu li.nested-parent {
    position: relative;
}

/* On cache le 3ème niveau et on le place à droite du 2ème */
.desktop-nav .nested-menu {
    position: absolute;
    top: 0;
    left: 100%; /* Aligne le menu à droite du menu parent */
    background: #1a1a1a; /* Un ton plus foncé pour différencier */
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-left: 2px solid #00d2ff; /* Barre de rappel SLY */
    
    /* Animation et invisibilité par défaut */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 110;
}

/* Affichage au survol de la ligne parente */
.desktop-nav li.nested-parent:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Style des liens du 3ème niveau */
.nested-menu li a {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
    white-space: nowrap; /* Évite que le texte ne revienne à la ligne */
}

/* Petite flèche indicatrice pour le parent */
.nested-parent > a::after {
    content: "\f054"; /* Icône chevron-right de FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: auto; /* Pousse la flèche à droite */
    padding-left: 10px;
}

























/* Style pour le switcher de stations */
.station-switcher {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 15px;
}
.btn-switch {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}
.btn-switch:hover {
    background: var(--pl-accent);
    border-color: var(--pl-accent);
}

/* --- STATION SWITCHER MOBILE --- */
.mobile-switcher-container {
    position: relative;
    margin-right: 15px;
    display: none; /* Caché sur PC */
}

.btn-station-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mobile-switcher-dropdown {
    position: absolute;
    bottom: 60px; /* S'affiche au dessus du bouton */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px;
    min-width: 140px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 10001;
}

.mobile-switcher-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-switcher-dropdown button {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
}

.mobile-switcher-dropdown button:last-child { border-bottom: none; }
.mobile-switcher-dropdown button:hover { color: var(--cyan); }

/* --- ADAPTATION RESPONSIVE --- */
@media (max-width: 1024px) {
    .mobile-switcher-container { display: block; }
    .desktop-only { display: none !important; }
    .player-section.controls { flex: 2; justify-content: center; }
}

/* --- ANIMATION CHARGEMENT --- */
.play-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--cyan);
    border-radius: 50%;
    display: none; /* Masqué par défaut */
    animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.btn-main-play.is-loading + .loading-ring { display: block; }

/* --- BADGE INITIALES --- */
.station-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--pink);
    color: white;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid #000;
}

/* --- HARMONISATION DES BOUTONS --- */
.btn-station-toggle, .btn-main-play {
    width: 52px !important; 
    height: 52px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-switcher-container {
    display: block !important; /* Visible partout pour l'unicité */
    margin-left: 10px;
}

/* On cache la liste de boutons brute sur desktop si on utilise le switcher à badge */
.desktop-only { display: none !important; }

.mobile-switcher-dropdown {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

/* --- ALIGNEMENT PLAYER MOBILE --- */
@media (max-width: 1024px) {
    /* On s'assure que le container prend toute la largeur sans padding inutile à droite */
    .player-container {
        display: flex;
        width: 100%;
        padding: 0 5px 0 15px !important; /* 15px à gauche, seulement 5px à droite */
        justify-content: flex-end; /* Aligne les enfants vers la droite */
    }
    
    .player-section.info {
        flex: 1; /* FORCE la section info à prendre tout l'espace libre */
        min-width: 0; /* Empêche le texte de casser la mise en page */
    }

    .player-section.controls {
        flex: 0 0 auto; /* Ne prend que la place nécessaire pour les boutons */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px; /* Espace entre Play et Switcher */
        padding-right: 0; /* On colle au bord */
    }
    
    /* On cache le volume et autres sur mobile pour gagner de la place */
    .player-section.tools { display: none !important; }

    /* Ajustement du texte pour qu'il ne pousse pas trop */
    .player-track, .player-artist {
        max-width: 180px; /* À ajuster selon tes besoins */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* --- DESIGN DES BOUTONS (Identiques) --- */
.btn-main-play, .btn-station-toggle {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-station-toggle {
    background: rgba(255,255,255,0.05);
    color: var(--cyan);
    border-color: var(--cyan);
}

/* --- ANNEAU DE CHARGEMENT VORTEX --- */
.play-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
}

.loading-ring {
    position: absolute;
    top: -4px; left: -4px;
    width: 60px; height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--cyan);
    border-right-color: var(--pink);
    border-radius: 50%;
    display: none; /* JS l'affiche */
    animation: spinRing 0.8s linear infinite;
    z-index: 1;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

/* Badge sur l'antenne */
.station-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--pink);
    color: white;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid #000;
    text-transform: uppercase;
}












  /* --- STYLE SECTION ACTUS --- */
        .news-section {
    position: relative;
    background: linear-gradient(180deg, #1a103c 0%, #3a1c5e 100%);
    /* Réduction du padding haut et bas */
    padding: 60px 20px 40px 20px; 
    /* Supprimez ou commentez min-height si vous voulez que la section s'adapte au contenu */
    min-height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

        /* En-tête (Titre + Déco) */
        .news-header {
            position: relative;
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
            max-width: 800px;
        }

        .news-title-group {
            position: relative;
            display: inline-block;
            z-index: 2;
        }

        .title-top {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 60px;
            line-height: 0.9;
            color: #fff;
            text-transform: uppercase;
            margin: 0;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .title-badge {
            background-color: #ffd700; /* Jaune ticket */
            color: #000;
            font-weight: 800;
            font-size: 18px;
            padding: 5px 20px;
            transform: rotate(-3deg); /* Inclinaison */
            margin-top: 10px;
            box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
            /* Effet bords dentelés (style ticket) - Optionnel mais cool */
            mask-image: radial-gradient(circle at 2px 50%, transparent 2px, black 2.5px);
            mask-size: 100% 10px;
            mask-repeat: repeat-y;
            border-left: 2px solid #000; /* Fallback visuel */
        }

        .news-deco-img {
            position: absolute;
            top: -20px;
            right: 100px; /* Ajuster selon la largeur */
            height: 120px;
            z-index: 1;
            animation: floatDeco 3s ease-in-out infinite;
        }
        
        @media(max-width: 768px) {
            .news-deco-img { 
                position: relative; 
                top: 0; right: 0; 
                margin-top: 20px;
                height: 80px; 
            }
        }

        @keyframes floatDeco {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Slider Principal */
        .news-slider-container {
            width: 100%;
            max-width: 1000px;
            position: relative;
        }

        .featured-article {
            position: relative;
            width: 100%;
            height: 500px;
            background-size: cover;
            background-position: center;
            border-radius: 4px; /* Coins très légèrement arrondis */
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            display: flex;
            align-items: flex-end; /* Texte en bas */
        }

        /* Overlay sombre dégradé sur l'image */
        .featured-article::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
        }

        .article-overlay {
            position: relative;
            z-index: 2;
            padding: 40px;
            text-align: center;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .article-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .article-excerpt {
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limite à 3 lignes */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-date {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            opacity: 0.7;
            text-transform: uppercase;
        }

        /* Vignettes de navigation */
        .news-thumbnails {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: -30px; /* Chevauchement sur l'image principale */
            position: relative;
            z-index: 5;
        }

        .thumb {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }

        .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%); /* Gris par défaut */
            transition: 0.3s;
        }

        /* État Actif / Survol */
        .thumb.active, .thumb:hover {
            border-color: #ffd700; /* Bordure jaune */
            transform: translateY(-5px);
        }
        
        .thumb.active img, .thumb:hover img {
            filter: grayscale(0%); /* Couleur au survol */
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .featured-article { height: 400px; }
            .article-title { font-size: 20px; }
            .article-excerpt { font-size: 12px; display: none; /* Cacher le texte long sur mobile */ }
            .article-overlay { padding: 20px; }
            .title-top { font-size: 40px; }
            .thumb { width: 60px; height: 45px; }
        }

































    /* --- STYLE SECTION GRILLE --- */
        .schedule-section {
            background-color: #4a3b75; /* Violet un peu plus clair que la section News */
            padding: 60px 20px 100px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        /* HEADER */
        .schedule-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .schedule-title-group {
            text-align: center;
        }

        /* On réutilise les styles de titre de la section précédente si possible, sinon on redéfinit */
        .schedule-section .title-top {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 60px;
            line-height: 0.9;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            margin: 0;
        }

        .schedule-section .title-badge {
            background-color: #ffd700;
            color: #000;
            font-weight: 800;
            font-size: 18px;
            padding: 5px 20px;
            transform: rotate(-3deg);
            margin-top: 10px;
            display: inline-block;
            box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
            /* Effet ticket dentelé */
            mask-image: radial-gradient(circle at 2px 50%, transparent 2px, black 2.5px);
            mask-size: 100% 10px;
            mask-repeat: repeat-y;
            border-left: 2px solid #000;
        }

        .schedule-deco {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .char-3d-img {
            height: 140px;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
            animation: floatChar 4s ease-in-out infinite;
        }

        @keyframes floatChar {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .wave-graphic {
            width: 100px;
            height: 40px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 40" fill="none" stroke="%23bc47c1" stroke-width="3"><path d="M0 20 Q 10 5, 20 20 T 40 20 T 60 20 T 80 20 T 100 20" /></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
        }

        /* NAVIGATION JOURS */
        .days-navigation {
            background-color: #000;
            width: 100%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            padding: 0;
            margin-bottom: 30px;
            overflow-x: auto; /* Scroll sur mobile */
        }

        .day-btn {
            background: none;
            border: none;
            color: #888;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            padding: 20px 10px;
            flex-grow: 1;
            cursor: pointer;
            text-transform: uppercase;
            transition: 0.3s;
            position: relative;
            white-space: nowrap;
        }

        .day-btn:hover {
            color: #fff;
            background-color: rgba(255,255,255,0.05);
        }

        .day-btn.active {
            color: #fff;
        }

        /* Barre rose active en bas */
        .day-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #bc47c1; /* Rose SLY */
        }

        /* GRILLE PROGRAMMES */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 colonnes desktop */
            gap: 20px;
            width: 100%;
            max-width: 1200px;
        }

        /* CARTE ÉMISSION */
        .show-card {
            position: relative;
            height: 220px;
            border-radius: 4px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            opacity: 0;
            animation: fadeInGrid 0.5s forwards;
        }

        .show-card:hover {
            transform: translateY(-5px);
        }

        @keyframes fadeInGrid { to { opacity: 1; } }

        /* Overlay coloré sur l'image */
        .show-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(68, 12, 128, 0.4) 100%);
        }

        .show-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 15px;
        }

        .time-badge {
            background-color: #ff3f34; /* Rouge vif */
            color: white;
            font-weight: 700;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 3px;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .show-info {
            text-align: right;
        }

        .show-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 22px;
            color: #fff;
            text-transform: uppercase;
            font-style: italic;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
            margin: 0;
            line-height: 1;
        }

        .show-host {
            font-size: 12px;
            color: #ddd;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 5px;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .schedule-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .schedule-grid { grid-template-columns: 1fr; }
            .days-navigation { justify-content: flex-start; }
            .day-btn { padding: 15px 25px; }
            .schedule-header { flex-direction: column; gap: 20px; }
        }






































    /* --- GLOBAL SECTION STYLE --- */
        .team-events-section {
            position: relative;
            /* L'image de fond officielle */
            background-image: url('../../uploads/images/backteam_event.webp');
            background-size: cover;
            background-position: center left; /* Cadrage sur la femme */
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 50px 0;
        }

        /* Ombre pour assombrir un peu le fond et faire ressortir le texte */
        .team-events-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr; /* Plus de place pour la team */
            gap: 50px;
            padding-left: 25%; /* On pousse le contenu vers la droite pour laisser la femme visible */
        }

        /* --- HEADERS COMMUNS --- */
        .section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .title-main {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 40px;
            line-height: 0.9;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
            margin: 0;
        }

        .title-badge {
            background-color: #ffd700;
            color: #000;
            font-weight: 800;
            font-size: 14px;
            padding: 3px 15px;
            transform: rotate(-2deg);
            margin-top: 5px;
            display: inline-block;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            mask-image: radial-gradient(circle at 2px 50%, transparent 2px, black 2.5px);
            mask-size: 100% 10px;
            mask-repeat: repeat-y;
            border-left: 2px solid #000;
        }

        .header-icon-3d {
            height: 100px;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* --- TEAM SLIDER 3D --- */
        .team-slider-3d-container {
            position: relative;
            width: 100%;
            height: 400px;
            perspective: 1200px; /* Clé de l'effet 3D */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
        }

        .team-card {
            position: absolute;
            width: 240px;
            height: 320px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            padding: 0;
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        }

        /* L'image du membre */
        .team-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            filter: grayscale(100%); /* Noir et blanc comme sur la maquette */
            transition: 0.3s;
        }

        .team-card.active .team-img {
            filter: grayscale(0%); /* Couleur pour la carte active */
        }

        .team-info {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .team-name {
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 5px;
            color: #fff;
        }

        .team-desc {
            font-size: 11px;
            color: #ccc;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* NAVIGATION BUTTONS */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
            width: 40px; height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: 0.3s;
        }
        .nav-btn:hover { background: var(--cyan); border-color: var(--cyan); color: black; }
        .prev-btn { left: -20px; }
        .next-btn { right: -20px; }

        /* --- EVENT CARD --- */
        .column-events {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centrer dans la colonne */
        }

        .event-card {
            width: 100%;
            max-width: 320px;
            height: 400px;
            background: #000;
            border-radius: 20px; /* Coins très arrondis */
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s;
        }

        .event-card:hover { transform: translateY(-10px); }

        .event-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Overlay circulaire style "Tribe" */
        .event-overlay {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -60%);
            width: 200px; height: 200px;
            border: 2px dashed rgba(255, 165, 0, 0.5); /* Effet cercle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 70%);
        }

        .event-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 40px;
            text-align: center;
            line-height: 0.9;
            color: #ffa502; /* Orange */
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
            transform: rotate(-5deg);
        }
        .event-logo-text span {
            font-size: 20px;
            color: #fff;
            letter-spacing: 2px;
        }

        .event-details {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, #000 10%, transparent);
            padding: 20px;
            text-align: center;
        }

        .event-details h4 { margin: 0; color: #fff; font-size: 14px; font-weight: 700; }
        .event-details p { margin: 5px 0 0; color: #ccc; font-size: 12px; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                padding-left: 20px; padding-right: 20px;
                gap: 80px;
            }
            .team-events-section { background-position: center center; }
            .section-header { justify-content: center; }
            .column-team { margin-bottom: 50px; }
        }
































    /* --- STYLE SECTION RELEASES --- */
        .releases-section {
            /* Le fond noir vers violet comme sur l'image */
            background: linear-gradient(to right, #000 0%, #1a0b2e 50%, #2d0b4e 100%);
            padding: 80px 20px;
            color: #fff;
            position: relative;
            z-index: 10;
        }

        .releases-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr; /* Colonne albums plus large */
            gap: 60px;
        }

        .releases-header {
            margin-bottom: 30px;
            text-align: center;
        }
        .releases-header img {
            max-width: 100%;
            height: auto;
            max-height: 80px; /* Taille maitrisée des logos */
        }

        /* --- PARTIE ALBUMS --- */
        .albums-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2x2 */
            gap: 30px;
        }

        .album-card {
            background: transparent;
            cursor: pointer;
        }

        .album-cover {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1; /* Carré parfait */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .album-card:hover .album-cover img {
            transform: scale(1.1);
        }

        /* Overlay Play Button */
        .play-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .album-card:hover .play-overlay, .album-card.playing .play-overlay {
            opacity: 1;
        }

        .play-circle {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: #ffd700; /* Jaune SLY */
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            transform: scale(0.8);
            transition: transform 0.3s;
        }

        .album-card:hover .play-circle {
            transform: scale(1);
        }

        /* Icone changeante si lecture en cours */
        .album-card.playing .play-circle i::before {
            content: "\f04c"; /* Code FontAwesome Pause */
        }

        .album-info {
            margin-top: 15px;
        }

        .album-info h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 16px;
            margin: 0 0 5px 0;
            color: #fff;
        }

        .album-info span {
            font-size: 12px;
            color: #aaa;
            text-transform: uppercase;
        }

        /* --- PARTIE SINGLES --- */
        .singles-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .single-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            overflow: hidden; /* Pour l'accordéon */
            transition: background 0.3s;
        }

        .single-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* La ligne visible */
        .single-row {
            display: flex;
            align-items: center;
            padding: 10px;
            cursor: pointer;
        }

        .single-num {
            font-size: 18px;
            font-weight: 900;
            color: rgba(255,255,255,0.3);
            width: 30px;
            text-align: center;
        }

        .single-img {
            width: 50px; height: 50px;
            border-radius: 4px;
            overflow: hidden;
            margin: 0 15px;
        }
        .single-img img { width: 100%; height: 100%; object-fit: cover; }

        .single-meta {
            flex: 1;
        }

        .s-title {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
        }
        .s-artist {
            font-size: 12px;
            color: var(--cyan); /* Cyan SLY */
        }

        .single-action {
            color: #aaa;
            padding-right: 10px;
            transition: transform 0.3s;
        }

        /* Dropdown Video (Caché par défaut) */
  /* 1. On cache le dropdown par défaut */
.video-dropdown {
    display: none; /* Cache le bloc */
    overflow: hidden;
    background: #111; /* Optionnel : fond noir pour la vidéo */
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

/* 2. On l'affiche UNIQUEMENT quand le parent a la classe .active */
.single-item.active .video-dropdown {
    display: block;
}

/* 3. Petit bonus pour l'icône qui tourne */
.single-item.active .single-action i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .releases-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .albums-grid {
                grid-template-columns: repeat(2, 1fr); /* Reste en 2x2 sur tablette */
            }
        }

        @media (max-width: 600px) {
            .albums-grid {
                grid-template-columns: 1fr; /* 1 colonne sur mobile */
            }
        }











































    /* --- STYLE SECTION ACTU MUSICALE --- */
        .music-news-section {
            /* Fond dégradé violet foncé/bordeaux pour matcher l'image */
            background: linear-gradient(180deg, #3d1e46 0%, #522546 100%);
            padding: 80px 20px 120px 20px; /* Padding bottom extra pour le player sticky */
            position: relative;
        }

        .section-title-simple {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 50px;
            color: rgba(255, 255, 255, 0.6); /* Gris/Blanc transparent */
            text-align: center;
            margin-bottom: 50px;
            text-transform: none; /* Pas tout en majuscule sur ce modèle */
        }

        .music-grid-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .music-card {
            background-color: #2b1333; /* Fond violet très sombre de la carte */
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .music-card:hover {
            transform: translateY(-10px);
        }

        /* Image + Badge */
        .music-thumb {
            position: relative;
            height: 250px; /* Hauteur fixe pour l'image */
            overflow: hidden;
        }

        .music-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .music-card:hover .music-thumb img {
            transform: scale(1.1);
        }

        .cat-label {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #e74c3c; /* Rouge vif */
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 4px 8px;
            text-transform: uppercase;
            border-radius: 2px;
            z-index: 2;
        }

        /* Contenu Texte */
        .music-content {
            padding: 25px;
            flex: 1; /* Remplit le reste */
            display: flex;
            flex-direction: column;
        }

        .music-meta {
            font-size: 10px;
            color: #aaa;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .music-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }

        .music-excerpt {
            font-size: 13px;
            color: #ccc;
            line-height: 1.6;
            margin: 0;
            /* Tronquer le texte après 4 lignes */
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .music-grid-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .music-grid-wrapper {
                grid-template-columns: 1fr;
            }
            .section-title-simple {
                font-size: 36px;
            }
        }
    





















               /* --- STYLE CTA SECTION --- */
        .cta-section {
            position: relative;
            height: 600px; /* Hauteur imposante */
            width: 100%;
            overflow: hidden; /* Important pour l'animation de zoom */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            /* Fond de base au cas où l'image charge mal */
            background-color: #1a1a2e; 
        }

        /* Image de fond animée */
        .cta-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('../../uploads/images/55542.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
            /* Animation Ken Burns (Zoom lent) */
            animation: kenBurns 20s infinite alternate;
        }

        @keyframes kenBurns {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        /* Filtre couleur par dessus l'image */
        .cta-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            /* Dégradé sombre bleuté comme sur l'image */
            background: linear-gradient(135deg, rgba(20, 10, 40, 0.7), rgba(10, 20, 50, 0.5));
            z-index: 2;
        }

        /* Contenu (Texte + Bouton) */
        .cta-content {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            /* On remonte un peu le contenu pour ne pas être caché par la courbe */
            transform: translateY(-30px);
        }

        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 50px;
            line-height: 1.1;
            text-transform: uppercase;
            /* Couleur violet/gris terne spécifique à l'image */
            color: #a89bb0; 
            margin: 0;
            text-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        .cta-title span {
            display: block;
            color: #8e7c93; /* Une nuance légèrement différente */
        }

        /* Bouton Écouter */
        .cta-btn-listen {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: #15202b; /* Bleu nuit très sombre */
            color: #fff;
            padding: 10px 30px 10px 10px; /* Padding asymétrique pour le cercle */
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-btn-listen:hover {
            background-color: #1e2a38;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(17, 205, 212, 0.4); /* Glow cyan */
        }

        .icon-circle {
            width: 35px; height: 35px;
            border-radius: 50%;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        /* Animation Pulse sur le bouton */
        .cta-btn-listen::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 100%; height: 100%;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            animation: btnPulse 2s infinite;
            opacity: 0;
        }

        @keyframes btnPulse {
            0% { width: 100%; height: 100%; opacity: 0.5; }
            100% { width: 140%; height: 180%; opacity: 0; }
        }

        /* Courbe noire en bas (Masque) */
        .cta-curve-bottom {
            position: absolute;
            bottom: -50px; /* Ajuster pour la hauteur de la courbe */
            left: -10%;
            width: 120%; /* Plus large pour assurer l'arrondi sur les bords */
            height: 150px;
            background-color: var(--dark-bg); /* Couleur du fond du site (#0a0a0a) */
            border-radius: 50% 50% 0 0; /* Crée l'arche */
            z-index: 4;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .cta-title { font-size: 30px; }
            .cta-section { height: 450px; }
            .cta-curve-bottom { height: 80px; bottom: -20px; }
        }
 














           /* --- STYLE SECTION ACTU STEPHANOISE --- */
        .steph-news-section {
            /* Fond Vert Olive/Mousse (comme sur l'image) */
            background: linear-gradient(180deg, #5b7c64 0%, #46604d 100%);
            padding: 80px 20px 120px 20px;
            position: relative;
            z-index: 9;
        }

        .section-title-steph {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 50px;
            color: rgba(255, 255, 255, 0.6); /* Blanc transparent */
            text-align: center;
            margin-bottom: 50px;
            text-transform: none;
        }

        .steph-grid-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .steph-card {
            background-color: #1a291d; /* Vert très foncé (presque noir) pour la carte */
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .steph-card:hover {
            transform: translateY(-10px);
        }

        /* Image + Badge */
        .steph-thumb {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .steph-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .steph-card:hover .steph-thumb img {
            transform: scale(1.1);
        }

        .cat-label-steph {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #ff3333; /* Rouge vif comme sur l'image */
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 4px 8px;
            text-transform: uppercase;
            border-radius: 2px;
            z-index: 2;
        }

        /* Contenu Texte */
        .steph-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .steph-meta {
            font-size: 10px;
            color: #8faaaa; /* Gris-vert clair */
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .steph-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }

        .steph-excerpt {
            font-size: 13px;
            color: #ccc;
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .steph-grid-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .steph-grid-wrapper {
                grid-template-columns: 1fr;
            }
            .section-title-steph {
                font-size: 36px;
            }
        }
    























        /* --- STYLE SECTION HI-TECH --- */
        .hitech-section {
            position: relative;
            background-color: #2a1b4e; /* Violet très foncé de base */
            background: linear-gradient(135deg, #2a1b4e 0%, #150e2b 100%);
            padding: 80px 20px 100px 20px;
            overflow: hidden;
            z-index: 8;
        }

        

        /* Titres */
        .hitech-header {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 0.9;
            position: relative;
            z-index: 2;
        }

        .ht-title-1 {
            font-size: 60px;
            color: #3b8d99; /* Couleur Teal/Bleu pétrole de l'image */
            margin: 0;
        }

        .ht-title-2 {
            font-size: 70px;
            color: #3b8d99;
            margin: 0;
            text-align: center;
            transform: translateX(150px); /* Décalage vers la droite pour l'effet "Mia" */
        }

        /* SLIDER WRAPPER */
        .hitech-slider-container {
            position: relative;
            max-width: 900px;
            height: 500px;
            margin: 0 auto;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            overflow: hidden; /* Masque les slides qui dépassent */
        }

        .hitech-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Transition fluide */
        }

        /* UN SLIDE */
        .hitech-slide {
            min-width: 100%; /* Prend toute la largeur du conteneur */
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end; /* Texte en bas */
        }

        /* Overlay sombre sur l'image */
        .slide-overlay {
            width: 100%;
            padding: 40px 60px;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
            color: #fff;
            position: relative;
        }

        .slide-badge {
            background-color: #e74c3c; /* Rouge */
            display: inline-block;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            margin-right: 15px;
        }

        .slide-date {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: #ccc;
            text-transform: uppercase;
        }

        .slide-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin: 15px 0;
            line-height: 1.2;
        }

        .slide-desc {
            font-size: 14px;
            color: #ddd;
            line-height: 1.5;
            max-width: 90%;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* NAVIGATION ARROWS */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: 2px solid rgba(255,255,255,0.5);
            color: white;
            width: 50px; height: 50px;
            border-radius: 50%; /* Cercle */
            cursor: pointer;
            z-index: 10;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .slider-arrow:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        .prev { left: 20px; }
        .next { right: 20px; }

        /* PAGINATION DOTS (Visuel seulement ici car géré par slide) */
        .slide-pagination {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .dot {
            width: 30px; height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
        }
        .dot.active { background: #fff; }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .ht-title-1 { font-size: 40px; }
            .ht-title-2 { font-size: 50px; transform: translateX(0); }
            .hitech-slider-container { height: 600px; } /* Plus haut sur mobile pour le texte */
            .slide-title { font-size: 24px; }
            .slide-overlay { padding: 30px; }
            .slider-arrow { width: 40px; height: 40px; font-size: 14px; }
        }






























        

:root {
  --v-bg: #1e1e24;
  --v-accent: #ff0055; /* Rose néon */
  --v-line: rgba(255, 255, 255, 0.1);
  --disc-size: 100px; /* Taille standard */
  --disc-big: 130px;  /* Taille "En Direct" */
}

/* --- Conteneur --- */
.timeline-wrapper {
  background-color: var(--v-bg);
  padding: 30px 0;
  color: white;
  font-family: 'Helvetica Neue', sans-serif;
  overflow: hidden;
}

.timeline-header h3 {
  text-align: center;
  margin: 0 0 30px 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

/* --- Scroll Horizontal --- */
.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
  /* Cache la barre de scroll */
  scrollbar-width: none; 
}
.timeline-scroll::-webkit-scrollbar { display: none; }

.timeline-track {
  display: flex;
  align-items: center; /* Aligne tout sur la ligne centrale */
  padding: 0 50px; /* Marges sur les côtés */
  position: relative;
  width: max-content;
  min-width: 100%;
  gap: 40px;
}

/* --- La Ligne Centrale --- */
.connection-line {
  position: absolute;
  top: 50%; /* Pile au milieu */
  left: 0;
  right: 0;
  height: 2px;
  background: var(--v-line);
  z-index: 0; /* Derrière les disques */
}

/* --- Item Vinyle --- */
.vinyl-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--disc-size);
}

/* Spécificité pour l'item "En Direct" */
.vinyl-item.current {
  width: var(--disc-big);
}

/* --- L'Heure (Au dessus) --- */
.time-bubble {
  background: #333;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 12px;
  border: 1px solid #444;
  white-space: nowrap;
}

.current .time-bubble {
  background: var(--v-accent);
  color: white;
  border-color: var(--v-accent);
  box-shadow: 0 0 10px var(--v-accent);
}

/* --- Le Disque --- */
.disc-container {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: #111; /* Fond noir si image pas chargée */
}

.disc-art {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Le trou central du vinyle */
.center-hole {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  height: 15%;
  background: var(--v-bg);
  border-radius: 50%;
  z-index: 2;
  border: 2px solid #333;
}

/* Animation de rotation pour le titre en cours */
.current .disc-art {
  animation: spin-record 8s linear infinite;
}

/* Pause au survol */
.disc-container:hover .disc-art {
  animation-play-state: paused;
}
.disc-container:hover {
  transform: scale(1.1);
}

@keyframes spin-record {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Bouton Play (Overlay) --- */
.play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.vinyl-item:hover .play-overlay {
  opacity: 1;
}

.icon-play {
  font-size: 24px;
  color: white;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

/* --- Détails Artiste/Titre (En dessous) --- */
.track-details {
  margin-top: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.artist {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.song {
  font-size: 13px;
  color: white;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px; /* Coupe le texte si trop long */
}


/* Alignement du header */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Bouton Historique */
.btn-history-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-history-link:hover {
    background: var(--v-accent);
    border-color: var(--v-accent);
    color: white;
}

/* Flèches de navigation */
.timeline-nav {
    display: flex;
    gap: 5px;
}

.nav-arrow {
    background: #222;
    border: 1px solid #444;
    color: white;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: #444;
    border-color: var(--cyan);
}

/* --- Mobile --- */
@media (max-width: 600px) {
  :root { --disc-size: 80px; --disc-big: 110px; }
  .timeline-track { gap: 20px; padding: 0 20px; }
}































/* --- STYLE SECTION PODCASTS --- */
        .podcast-section {
            position: relative;
            background-color: #0f0f13;
            /* Dégradé radial subtil pour la profondeur */
            background-image: radial-gradient(circle at 10% 20%, #1a103c 0%, #000000 80%);
            padding: 80px 20px 100px 20px;
            overflow: hidden;
            z-index: 10;
        }

        /* Onde sonore décorative en arrière-plan */
        .podcast-bg-wave {
            position: absolute;
            top: 50%; left: 0;
            width: 100%; height: 300px;
            background: repeating-linear-gradient(90deg, 
                transparent, transparent 40px, 
                rgba(255, 255, 255, 0.03) 40px, 
                rgba(255, 255, 255, 0.03) 80px);
            transform: translateY(-50%) skewY(-5deg);
            z-index: 1;
            pointer-events: none;
        }

        /* En-tête */
        .podcast-header {
            position: relative;
            z-index: 2;
            text-align: left;
            max-width: 1200px;
            margin: 0 auto 40px auto;
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .pod-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 60px;
            line-height: 0.9;
            color: #fff;
            margin: 0;
            /* Effet texte transparent avec bordure (Outline) */
            -webkit-text-stroke: 1px rgba(255,255,255,0.8);
            color: transparent;
        }

        .pod-badge {
            background: var(--cyan);
            color: #000;
            font-weight: 800;
            padding: 5px 15px;
            font-size: 14px;
            transform: translateY(-10px);
            box-shadow: 0 0 15px var(--cyan);
        }

        /* Conteneur Grid */
        .podcast-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr; /* Le player prend plus de place */
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* --- COLONNE GAUCHE (MAIN) --- */
        .podcast-main {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            transition: all 0.3s ease;
        }

        .main-image-wrap {
            position: relative;
            width: 100%;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .main-image-wrap img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease;
        }

        .podcast-main:hover .main-image-wrap img { transform: scale(1.05); }

        .btn-play-pod {
            position: absolute;
            bottom: 20px; right: 20px;
            width: 70px; height: 70px;
            border-radius: 50%;
            background: var(--pink); /* Rose SLY */
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(188, 71, 193, 0.6);
            transition: 0.3s;
            display: flex; align-items: center; justify-content: center;
        }
        
        .btn-play-pod:hover { transform: scale(1.1); background: #fff; color: var(--pink); }

        .pod-live-tag {
            position: absolute;
            top: 20px; left: 20px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            border-left: 3px solid var(--cyan);
            backdrop-filter: blur(5px);
        }

        .main-info { color: #fff; }
        .pod-meta {
            font-size: 12px; color: var(--cyan);
            font-weight: 700; margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .main-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 50px; margin: 0 0 15px 0;
            font-weight: 800; line-height: 1.2;
        }
        .main-desc {
            color: #aaa; font-size: 14px; line-height: 1.6;
            margin: 0;
        }

        /* --- COLONNE DROITE (LISTE) --- */
        .podcast-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
            overflow-y: auto; /* Scroll si trop long */
            padding-right: 5px;
        }

        /* Scrollbar custom */
        .podcast-list::-webkit-scrollbar { width: 4px; }
        .podcast-list::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

        .pod-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 10px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .pod-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .pod-item.active {
            background: linear-gradient(90deg, rgba(188, 71, 193, 0.2) 0%, transparent 100%);
            border-left: 3px solid var(--pink);
        }

        .pod-thumb {
            width: 70px; height: 70px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        .pod-thumb img { width: 100%; height: 100%; object-fit: cover; }

        .pod-content { flex: 1; }
        .pod-content h4 {
            margin: 0 0 5px 0; color: #fff; font-size: 14px; font-weight: 600;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        }
        .pod-content span {
            font-size: 11px; color: #888; text-transform: uppercase;
        }

        /* Petit égaliseur sur l'élément actif */
        .equalizer-icon {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            display: none; /* Caché par défaut */
            align-items: center; justify-content: center; gap: 3px;
        }
        .pod-item.active .equalizer-icon { display: flex; }
        
        .equalizer-icon span {
            width: 3px; background: var(--cyan);
            animation: bounce 1s infinite ease-in-out;
        }
        .equalizer-icon span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
        .equalizer-icon span:nth-child(2) { height: 15px; animation-delay: 0.2s; }
        .equalizer-icon span:nth-child(3) { height: 8px; animation-delay: 0.3s; }

        @keyframes bounce { 0%, 100% { height: 5px; } 50% { height: 20px; } }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .podcast-container { grid-template-columns: 1fr; }
            .podcast-header { justify-content: center; }
            .pod-title { -webkit-text-stroke: 0px; color: #fff; font-size: 40px; }
        }









































         /* --- STYLE FOOTER --- */
        .sly-footer {
            position: relative;
            background-color: #050505;
            padding: 80px 0 100px 0; /* Padding bottom élevé à cause du player sticky */
            color: #fff;
            overflow: hidden;
            font-family: 'Montserrat', sans-serif;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Logo géant en fond */
        .footer-bg-logo {
            position: absolute;
            right: -50px;
            bottom: 50px;
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
        }
        .footer-bg-logo img { width: 500px; filter: grayscale(1); }

        .footer-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding: 0 20px;
        }

        .footer-logo { height: 60px; margin-bottom: 20px; }
        .footer-text { color: #888; font-size: 14px; line-height: 1.6; margin-bottom: 25px; }

        /* Widget Titles */
        .f-widget-title {
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 1px;
            color: var(--cyan);
            position: relative;
        }
        .f-widget-title::after {
            content: ''; display: block; width: 30px; height: 2px; background: var(--pink); margin-top: 10px;
        }

        /* Links */
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #aaa; font-size: 14px; font-weight: 500; }
        .footer-col ul li a:hover { color: var(--cyan); padding-left: 5px; }

        /* Social Icons */
        .footer-socials { display: flex; gap: 12px; }
        .f-soc {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; transition: 0.3s;
        }
        .f-soc:hover { transform: translateY(-3px); color: #fff; }
        .fb:hover { background: #3b5998; box-shadow: 0 0 15px #3b5998; }
        .twi:hover { background: #6441a5; box-shadow: 0 0 15px #6441a5; }
        .tik:hover { background: #000; border: 1px solid #fff; box-shadow: 0 0 15px #fff; }
        .sc:hover { background: #ff5500; box-shadow: 0 0 15px #ff5500; }

        /* App Links */
        .app-download p { font-size: 14px; color: #888; margin-bottom: 20px; }
        .app-btns { display: flex; flex-direction: column; gap: 10px; }
        .app-link {
            background: #111;
            padding: 10px 20px;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.1);
            font-size: 13px; font-weight: 700;
            display: flex; align-items: center; gap: 10px;
        }
        .app-link i { font-size: 18px; color: var(--cyan); }
        .app-link:hover { background: var(--cyan); color: #000; border-color: var(--cyan); }
        .app-link:hover i { color: #000; }

        /* Bottom part */
        .footer-bottom {
            margin-top: 60px;
            padding: 30px 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            background: #000;
        }
        .footer-bottom-content {
            max-width: 1200px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            font-size: 12px; color: #666;
        }
        .footer-legal { display: flex; gap: 20px; }
        .footer-legal a:hover { color: #fff; }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .footer-container { grid-template-columns: 1fr; text-align: center; }
            .f-widget-title::after { margin: 10px auto 0 auto; }
            .footer-socials { justify-content: center; }
            .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
            .footer-bg-logo img { width: 300px; }
        }

































/* --- SECTION SELECTEUR DE FLUX (Version Indépendante) --- */
.streams-selector-section {
    position: relative;
    background-color: #000000; /* Fond Noir */
    width: 100%;
    padding: 60px 20px; /* Espace en haut et en bas */
    margin-top: 0; /* On annule le chevauchement précédent */
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Optionnel : petite ligne de séparation */
}

.streams-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Plus d'espace entre les cartes */
}

/* Le reste du CSS des cartes (.stream-card, .stream-bg, etc.) reste identique */
.stream-card {
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Effets au survol */
.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

/* Image de fond avec zoom */
.stream-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.stream-card:hover .stream-bg { transform: scale(1.1); }

/* Filtre couleur */
.stream-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    transition: 0.3s;
}

/* --- COULEURS SPECIFIQUES --- */
.stream-card.classic .stream-overlay { border-left: 4px solid var(--cyan); }
.stream-card.classic:hover .stream-icon i { color: var(--cyan); }

.stream-card.club .stream-overlay { border-left: 4px solid var(--pink); }
.stream-card.club:hover .stream-icon i { color: var(--pink); }

.stream-card.urban .stream-overlay { border-left: 4px solid #f1c40f; /* Or/Jaune */ }
.stream-card.urban:hover .stream-icon i { color: #f1c40f; }

/* Contenu */
.stream-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.stream-icon {
    font-size: 30px;
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
}

.stream-info {
    flex: 1;
}

.stream-info h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
}

.stream-info p {
    margin: 3px 0 0 0;
    font-size: 12px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

/* Badge En Direct */
.stream-status {
    font-size: 9px;
    font-weight: 700;
    color: white;
    background: rgba(255,0,0,0.6);
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(2px);
}

.pulse-dot {
    display: block;
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulseRed 1s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Gros Play au survol */
.hover-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.stream-card:hover .hover-play {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}



        /* --- ADAPTATION MOBILE (Responsive) --- */
@media (max-width: 992px) {
    
    /* 1. On annule le chevauchement du header pour éviter les bugs visuels sur mobile */
    .streams-selector-section { 
        margin-top: 0; 
        padding: 10px 20px; /* Un peu moins d'espace */
    }

    /* 2. C'est ici que la magie opère : 1 seule colonne = empilement vertical */
    .streams-container {
        grid-template-columns: 1fr; /* Une seule colonne prenant toute la largeur */
        gap: 15px; /* Espace entre chaque carte */
    }

    /* 3. On réduit un peu la hauteur des cartes pour ne pas prendre tout l'écran */
    .stream-card { 
        height: 85px; /* Plus compact */
    } 

    /* 4. Ajustements de texte pour le mobile */
    .stream-info h3 { 
        font-size: 16px; 
    }
    
    .stream-info p { 
        font-size: 11px; 
    }

    .stream-icon {
        font-size: 24px; /* Icône un peu plus petite */
    }

    /* 5. Le badge "En Direct" un peu plus discret */
    .stream-status {
        padding: 2px 6px;
        font-size: 8px;
    }
}



/****************************************************************************
 * SECTION : QUI SOMMES-NOUS ?
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page de présentation de SLY Radio.
 * Sommaire :
 * 1. Hero Section & Intro
 * 2. Valeurs & Concept
 * 3. Grille de la Team (Compléments)
 ***************************************************************************/

        /* --- SECTION HERO --- */
        .about-hero {
            height: 60vh; width: 100%; display: flex; align-items: center; justify-content: center;
            background: radial-gradient(circle at center, #1a103c 0%, var(--dark-bg) 100%);
            position: relative; padding-top: 100px;
        }

        .header-styled { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: 80px; line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); color: transparent; text-transform: uppercase;
        }
        .badge-styled {
            background: var(--cyan); color: #000; font-weight: 800; padding: 5px 25px; font-size: 16px;
            transform: translateY(-20px) rotate(-2deg); box-shadow: 0 0 20px var(--cyan); font-family: var(--font-head);
        }

        /* --- SECTION ADN --- */
        .section-adn { max-width: 1200px; margin: 0 auto; padding: 80px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .adn-text { font-size: 18px; line-height: 1.8; color: #ccc; }
        .adn-text p:first-of-type::first-letter {
            float: left; font-size: 70px; line-height: 60px; font-weight: 900; padding-right: 15px; color: var(--pink); font-family: var(--font-head);
        }
        .adn-text h3 { font-family: var(--font-head); font-size: 32px; color: #fff; margin-bottom: 20px; font-weight: 800; }
        .adn-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .adn-image img { width: 100%; display: block; filter: grayscale(0.3); }

        /* --- SECTION VALEURS --- */
        .values-grid {
            background: #08080c; padding: 80px 20px; display: grid;
            grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto;
        }
        .value-card {
            background: var(--card-bg); padding: 40px; border-radius: 15px; text-align: center;
            border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
        }
        .value-card:hover { transform: translateY(-10px); border-color: var(--cyan); }
        .value-card i { font-size: 40px; color: var(--cyan); margin-bottom: 20px; display: block; }
        .value-card h4 { font-family: var(--font-head); font-size: 20px; margin-bottom: 15px; text-transform: uppercase; }
        .value-card p { font-size: 14px; color: #888; line-height: 1.6; }

        /* --- SECTION STORY (VISUEL LARGE) --- */
        .story-banner {
            position: relative; height: 500px; width: 100%; overflow: hidden;
            background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2069&auto=format&fit=crop');
            background-size: cover; background-position: center; background-attachment: fixed;
            display: flex; align-items: center; justify-content: center;
        }
        .story-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); }
        .story-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 20px; }
        .story-content h2 { font-family: var(--font-head); font-size: 40px; font-weight: 900; margin-bottom: 20px; }
        .story-content p { font-size: 18px; line-height: 1.6; color: #ddd; }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .section-adn { grid-template-columns: 1fr; text-align: center; }
            .values-grid { grid-template-columns: 1fr; }
            .title-outline { font-size: 50px; }
            .adn-text p:first-of-type::first-letter { float: none; display: block; text-align: center; padding: 0; }
        }
    

























/****************************************************************************
 * SECTION : EQUIPE
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page d'équipe de SLY Radio.
 ***************************************************************************/


        /* --- HERO SECTION --- */
        .team-hero {
              height: 60vh; width: 100%; display: flex; align-items: center; justify-content: center;
            background: radial-gradient(circle at center, #1a103c 0%, var(--dark-bg) 100%);
            position: relative; padding-top: 100px;
        }

        .header-styled { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: 70px; line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); color: transparent; text-transform: uppercase;
        }
        .badge-styled {
            background: var(--pink); color: #fff; font-weight: 800; padding: 5px 25px; font-size: 16px;
            transform: translateY(-20px) rotate(2deg); box-shadow: 0 0 20px var(--pink); font-family: var(--font-head);
        }

        /* --- SECTION MAIN CONTENT (TWO COLUMNS) --- */
        .team-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 700px;
            padding: 50px 20px;
            gap: 40px;
            align-items: center;
        }

        /* --- COLONNE GAUCHE : SLIDER 3D COMPACT --- */
        .slider-column {
            position: relative;
            height: 600px;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Aligné à gauche */
        }

        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
        }

        .team-card-mini {
            position: absolute;
            width: 200px;
            height: 280px;
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            left: 0;
        }

        .team-card-mini img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(100%); transition: 0.5s;
        }

        .team-card-mini.active { border: 2px solid var(--cyan); box-shadow: 0 0 30px rgba(17, 205, 212, 0.4); }
        .team-card-mini.active img { filter: grayscale(0%); }

        /* Navigation Arrows */
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            display: flex;
            gap: 20px;
            z-index: 10;
        }
        .nav-btn {
            width: 45px; height: 45px; border-radius: 50%;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2);
            color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: 0.3s;
        }
        .nav-btn:hover { background: var(--cyan); color: #000; box-shadow: 0 0 15px var(--cyan); }

        /* --- COLONNE DROITE : DÉTAILS --- */
        .details-column {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 50px;
            min-height: 550px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: opacity 0.5s, transform 0.5s;
        }

        .details-column::before {
            content: 'INFO';
            position: absolute;
            top: -20px; right: -20px;
            font-family: var(--font-head);
            font-size: 120px; font-weight: 900;
            color: rgba(255,255,255,0.02);
            pointer-events: none;
        }

        .detail-name { font-family: var(--font-head); font-size: 45px; font-weight: 900; color: #fff; margin-bottom: 5px; text-transform: uppercase; }
        .detail-role { font-size: 16px; color: var(--pink); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px; display: block;}
        .detail-bio { font-size: 17px; line-height: 1.8; color: #ccc; margin-bottom: 40px; max-width: 500px; }

        .detail-socials { display: flex; gap: 15px; }
        .detail-socials a {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
            font-size: 18px; border: 1px solid rgba(255,255,255,0.1);
        }
        .detail-socials a:hover { background: var(--cyan); color: #000; border-color: var(--cyan); transform: translateY(-3px); }

        /* Animation de chargement des détails */
        .fade-in-right { animation: fadeInRight 0.6s forwards; }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .team-grid-container { grid-template-columns: 1fr; padding-top: 20px; }
            .slider-column { justify-content: center; height: 450px; }
            .details-column { padding: 30px; text-align: center; min-height: auto; }
            .detail-socials { justify-content: center; }
            .title-outline { font-size: 45px; }
            .slider-controls { left: 50%; transform: translateX(-50%); }
        }










/****************************************************************************
 * SECTION : NOTRE HISTOIRE
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page "histoire"" de SLY Radio.
 ***************************************************************************/



        
        /* --- HERO SECTION --- */
        .history-hero {
          height: 60vh; width: 100%; display: flex; align-items: center; justify-content: center;
            background: radial-gradient(circle at center, #1a103c 0%, var(--dark-bg) 100%);
            position: relative; padding-top: 100px;
        }
        .header-styled { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: 70px; line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); color: transparent; text-transform: uppercase;
        }
        .badge-styled {
            background: var(--cyan); color: #000; font-weight: 800; padding: 5px 25px; font-size: 16px;
            transform: translateY(-20px) rotate(-2deg); box-shadow: 0 0 20px var(--cyan); font-family: var(--font-head);
        }

        /* --- TIMELINE SECTION --- */
        .timeline-container {
            position: relative;
            max-width: 1100px;
            margin: 100px auto;
            padding: 40px 0;
        }

        /* La ligne centrale */
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background: linear-gradient(to bottom, var(--cyan), var(--pink), var(--cyan));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(17, 205, 212, 0.3);
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background: inherit;
            width: 50%;
            opacity: 0; /* Pour l'animation */
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .timeline-item.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Alternance gauche / droite */
        .left { left: 0; text-align: right; }
        .right { left: 50%; text-align: left; }

        /* Les points sur la ligne */
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--dark-bg);
            border: 4px solid var(--cyan);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 10px var(--cyan);
        }

        .right::after { left: -10px; border-color: var(--pink); box-shadow: 0 0 10px var(--pink); }

        /* Le contenu des cartes */
        .content {
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            position: relative;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .content h2 {
            font-family: var(--font-head);
            font-size: 35px;
            font-weight: 900;
            margin-bottom: 10px;
            color: var(--cyan);
        }
        .right .content h2 { color: var(--pink); }

        .content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .content p {
            font-size: 15px;
            line-height: 1.6;
            color: #bbb;
        }

        /* Images dans la timeline */
        .time-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            filter: grayscale(0.5);
            transition: 0.3s;
        }
        .timeline-item:hover .time-img { filter: grayscale(0); transform: scale(1.02); }

        /* --- FOOTER CTA --- */
        .history-footer {
            text-align: center;
            padding: 100px 20px;
            background: #08080c;
        }
        .history-footer h2 { font-family: var(--font-head); font-size: 40px; font-weight: 900; margin-bottom: 30px; }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .timeline-container::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left !important; }
            .timeline-item::after { left: 21px; right: auto; }
            .right { left: 0%; }
        }

























/****************************************************************************
 * SECTION : REGIE PUBLICITAIRE
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page "régie pub"" de SLY Radio.
 ***************************************************************************/


/* --- HERO SECTION (Le haut de page) --- */
.pub-hero {
    position: relative;
    /* On s'assure qu'il prend toute la largeur */
    width: 100%; 
    height: 60vh;
    min-height: 500px;
    
    /* Le dégradé + l'image de fond */
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    
    /* Flexbox pour centrer le TEXTE à l'intérieur du Hero */
    display: flex;
    flex-direction: column; /* Sécurité pour empiler le contenu */
    align-items: center;
    justify-content: center;
    text-align: center;
    
    color: white;
    overflow: hidden;
    z-index: 1; /* Niveau 1 */
}

.pub-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pub-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #cbd5e1;
}

/* --- SECTION SPONSORED LAUNCH (L'INNOVATION) --- */
.sponsored-section {
    position: relative;
    display: block; /* Force le comportement de bloc standard */
    width: 100%;
    clear: both; /* Évite de monter si un élément précédent flotte */
    
    background: #000;
    padding:  20px;
    overflow: hidden;
    z-index: 2; /* Niveau 2 (au-dessus du fond, mais en dessous du menu si fixed) */
}

/* Effet néon arrière-plan */
.sponsored-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 0; /* Derrière le contenu de la section */
    pointer-events: none; /* Ne gêne pas les clics */
}

.sponsored-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1; /* Devant le halo néon */
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1e293b;
    border-radius: 40px;
    border: 8px solid #334155;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: url('uploads/images/app-splash.jpg') center/cover;
    position: relative;
}

.ad-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.sound-wave-anim {
    display: flex;
    gap: 5px;
    height: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.bar {
    width: 6px;
    background: var(--sly-blue);
    animation: equalizer 1s infinite;
}

@keyframes equalizer {
    0% { height: 10px; }
    50% { height: 40px; }
    100% { height: 10px; }
}


    /* --- SECTION LIVE & OFFRES --- */
    .offers-section {
        padding: 80px 20px;
        background: #0f172a;
        color: white;
    }

    .offers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .offer-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 20px;
        transition: transform 0.3s;
    }

    .offer-card:hover {
        transform: translateY(-10px);
        border-color: var(--sly-blue);
    }

    .offer-icon {
        font-size: 2.5rem;
        color: var(--sly-blue);
        margin-bottom: 20px;
    }

    .offer-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
    }

    /* --- FORMULAIRE --- */
    .contact-section {
        padding: 80px 20px;
        background: #0b1120;
        color: white;
        text-align: center;
    }

    .contact-form {
        max-width: 600px;
        margin: 40px auto 0;
        background: #1e293b;
        padding: 40px;
        border-radius: 20px;
        text-align: left;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .form-control {
        width: 100%;
        padding: 12px;
        background: #0f172a;
        border: 1px solid #334155;
        border-radius: 8px;
        color: white;
        font-family: inherit;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--sly-blue);
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
        background: var(--sly-blue);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-submit:hover {
        background: #0284c7;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .sponsored-grid { grid-template-columns: 1fr; text-align: center; }
        .phone-mockup { margin-top: 40px; }
        .pub-hero h1 { font-size: 2.5rem; }
    }

    /* --- PAGE REGIE PUB --- */

/* Petite Intro sous le header */
.pub-intro {
    padding: 60px 20px;
    background-color: #0f172a;
    text-align: center;
}
.intro-content {
    max-width: 800px;
    margin: 0 auto;
}
.intro-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.intro-content p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

/* Header de section centré */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}
.section-header-center .subtitle {
    color: #888;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
}

/* Ajustement couleur variables si pas définies */
:root {
    --sly-gold: #fbbf24;
}

.sponsored-section {
    position: relative;
    width: 100%;
    background: #000;
    padding: 100px 20px; /* Plus d'espace pour respirer au milieu */
    overflow: hidden;
    z-index: 2;
}

/* On force le flux normal */
.offers-section, .contact-section {
    position: relative;
    z-index: 2;
}






















/* ==========================================================================
   PAGE : PERSPECTIVES (DAB+ / ARCOM)
   ========================================================================== */

/* --- HERO --- */
.perspectives-hero {
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Image : Une tour radio ou une vue urbaine nocturne */
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1495570689269-d883668a6143?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

/* --- STRUCTURE CONTENU GÉNÉRIQUE --- */
.persp-intro, .persp-arcom {
    padding: 100px 20px;
    background-color: #0f0f12;
    position: relative;
    overflow: hidden;
}

.persp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Version inversée (Image à gauche, texte à droite) */
.persp-container.reverse .persp-text-col { order: 2; }
.persp-container.reverse .persp-img-col { order: 1; }

/* Textes */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--pink);
    margin-top: 15px;
}

.section-subtitle.txt-cyan::after { background: var(--cyan); }

.persp-text-col p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    text-align: justify;
}

.persp-text-col strong {
    color: #fff;
    font-weight: 700;
}

/* Images */
.persp-img-col {
    position: relative;
}

.persp-img-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: grayscale(20%);
    transition: 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
}

.persp-img-col:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.img-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--cyan);
    color: #000;
    font-weight: 800;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: 2px solid #fff;
}

/* Citation mise en avant */
.highlight-box {
    border-left: 4px solid var(--pink);
    background: rgba(255,255,255,0.05);
    padding: 20px;
    font-style: italic;
    color: #fff;
    font-size: 18px;
    margin: 30px 0;
    font-weight: 600;
}

/* --- SECTION ARCOM SPÉCIFIQUE --- */
.persp-arcom {
    background: linear-gradient(135deg, #1a103c 0%, #000 100%);
}

.persp-bg-icon {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    font-size: 400px;
    color: rgba(255,255,255,0.02);
    z-index: 1;
    pointer-events: none;
}

/* --- SECTION SOUTIEN --- */
.persp-support {
    padding: 100px 20px;
    background-color: #050505;
    text-align: center;
    background-image: radial-gradient(circle at center, #111 0%, #000 70%);
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
}

.support-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.support-intro {
    font-size: 18px;
    color: #888;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.support-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    background: rgba(255,255,255,0.08);
}

.support-card i {
    font-size: 40px;
    color: var(--cyan);
    margin-bottom: 20px;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

/* MANIFESTO FINALE */
.manifesto-box {
    background: linear-gradient(90deg, var(--pink), #8e44ad);
    padding: 60px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(142, 68, 173, 0.4);
    position: relative;
    overflow: hidden;
}

.manifesto-box::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-size: 150px;
    font-family: serif;
    opacity: 0.2;
    color: #000;
}

.manifesto-box h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.manifesto-box p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .persp-container, .persp-container.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Sur mobile, on remet l'image au dessus du texte pour la section inversée */
    .persp-container.reverse .persp-img-col { order: 0; }
    .persp-container.reverse .persp-text-col { order: 1; }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto-box { padding: 40px 20px; }
    .manifesto-box h3 { font-size: 24px; }
}





















/* ==========================================================================
   PAGE : NOUS SOUTENIR (DONATIONS)
   ========================================================================== */

/* --- HERO --- */
.support-hero {
     height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Image : Une tour radio ou une vue urbaine nocturne */
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1495570689269-d883668a6143?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
}

/* On surcharge la couleur du badge pour cette page */
.support-hero .badge-styled {
    background: var(--pink);
    box-shadow: 0 0 20px var(--pink);
}

/* --- POURQUOI DONNER --- */
.why-support {
    padding: 80px 20px;
    background-color: #0f0f12;
    text-align: center;
}

.support-intro-box {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.support-intro-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.support-intro-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

/* Grille des icônes d'impact */
.impact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.impact-item:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    background: rgba(188, 71, 193, 0.1);
}

.impact-item i {
    font-size: 35px;
    color: var(--pink); /* Rose SLY */
}

.impact-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

/* --- SECTION HELLOASSO --- */
.helloasso-section {
    padding: 0 20px 100px 20px;
    background-color: #0f0f12; /* Continuité du fond */
    display: flex;
    justify-content: center;
}

.helloasso-container {
    width: 100%;
    max-width: 900px;
    background: #fff; /* HelloAsso est souvent sur fond blanc, on crée un cadre propre */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Note de sécurité en bas */
.security-note {
    background: #f8f9fa;
    color: #555;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-note i {
    color: #2ecc71; /* Vert cadenas */
}

/* Responsive */
@media (max-width: 768px) {
    .support-hero { height: 40vh; }
    .impact-grid { gap: 15px; }
    .impact-item { width: 45%; } /* 2 par ligne sur mobile */
    .helloasso-container iframe { height: 850px; } /* Plus haut sur mobile car le formulaire s'empile */
}































/* ==========================================================================
   PAGE : ACTUSARCHIVES
   ========================================================================== */
  /* --- HERO SECTION COMPACTE --- */
        .archive-hero {
             height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Image : Une tour radio ou une vue urbaine nocturne */
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1495570689269-d883668a6143?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
        }
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: 60px; line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); color: transparent; text-transform: uppercase;
        }
        .badge-styled {
            background: var(--cyan); color: #000; font-weight: 800; padding: 5px 25px; font-size: 14px;
            display: inline-block; transform: translateY(-15px) rotate(-1deg); box-shadow: 0 0 20px var(--cyan); font-family: var(--font-head);
        }

        /* --- FILTRES --- */
        .filter-bar {
            max-width: 1200px; margin: 0 auto 40px auto; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
        }
        .filter-btn {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 8px 20px;
            border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase; cursor: pointer; color: #888;
        }
        .filter-btn.active, .filter-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 0 15px var(--pink); }

        /* --- MAIN LAYOUT --- */
        .main-container {
            max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 350px; gap: 50px; padding: 0 20px 100px 20px;
        }

        /* --- LISTE DES ARTICLES --- */
        .articles-list { display: flex; flex-direction: column; gap: 25px; }

        .article-row {
            display: flex; gap: 30px; background: var(--card-bg); border-radius: 15px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.03); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .article-row:hover {
            transform: translateX(10px); border-color: var(--cyan);
            box-shadow: -10px 0 30px rgba(17, 205, 212, 0.1);
        }

        .row-thumb { width: 280px; height: 180px; flex-shrink: 0; overflow: hidden; position: relative; }
        .row-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .article-row:hover .row-thumb img { transform: scale(1.1); }

        .row-content { padding: 20px 30px 20px 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .row-meta { font-size: 11px; color: var(--cyan); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
        .row-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; color: #fff; }
        .row-excerpt { font-size: 14px; color: #888; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        /* --- SIDEBAR --- */
        .sidebar-inner { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 40px; }
        .widget-title { font-family: var(--font-head); font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; color: var(--cyan); }
        .search-box { width: 100%; background: #000; border: 1px solid #333; padding: 12px; border-radius: 6px; color: #fff; }
        
        /* Newsletter Widget */
        .newsletter-widget { background: linear-gradient(135deg, #1a103c 0%, #000 100%); padding: 25px; border-radius: 12px; border: 1px solid var(--pink); }
        .newsletter-widget h4 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-head); }
        .newsletter-widget p { font-size: 13px; color: #aaa; margin-bottom: 15px; }
        .newsletter-btn { width: 100%; background: var(--pink); color: #fff; border: none; padding: 10px; border-radius: 4px; font-weight: 800; cursor: pointer; }

        /* --- PAGINATION --- */
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .page-num {
            width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.05); border-radius: 4px; font-weight: 700; cursor: pointer;
        }
        .page-num.active { background: var(--cyan); color: #000; }
        .page-num:hover:not(.active) { background: var(--pink); }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
            .sidebar { display: none; }
            .row-thumb { width: 150px; height: 150px; }
            .row-title { font-size: 18px; }
        }
        @media (max-width: 600px) {
            .article-row { flex-direction: column; }
            .row-thumb { width: 100%; height: 200px; }
            .row-content { padding: 20px; }
            .title-outline { font-size: 40px; }
        }
             /* CSS AJOUTÉ POUR LES RESEAUX SOCIAUX & FILTRES */
        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            transition: transform 0.2s, opacity 0.2s;
            text-decoration: none;
        }
        .social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
        .social-twitch { background-color: #6441a5; }
        .social-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
        .social-discord { background-color: #5865F2; }
        .social-fb { background-color: #1877F2; }
        .social-yt { background-color: #FF0000; }
        .social-tiktok { background-color: #000; }

        /* Lien actif du filtre */
        .filter-btn a { text-decoration: none; color: inherit; display: block; width: 100%; height: 100%; }


























        /* --- HERO SECTION --- */
        .show-hero {
            height: 75vh; width: 100%; position: relative;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* On retire background-image d'ici */
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(1.2);
    z-index: 1;
    transform: scale(1.05);
    transition: transform 0.5s;
}
        .hero-content { position: relative; z-index: 2; text-align: center; padding-top: 80px; }
        
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: clamp(50px, 8vw, 100px); line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8); color: transparent; text-transform: uppercase;
            text-shadow: 0 0 30px rgba(0,0,0,0.5);
        }
        .title-filled { color: #fff; -webkit-text-stroke: 0; }
        
        .badge-styled {
            background: var(--pink); color: #fff; font-weight: 800; padding: 8px 30px; font-size: 16px;
            display: inline-block; transform: translateY(-30px) rotate(-3deg); 
            box-shadow: 0 0 20px rgba(188, 71, 193, 0.6); font-family: var(--font-head);
            border: 2px solid #fff;
        }

        /* --- BARRE INFOS --- */
        .show-info-bar {
            background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08);
            max-width: 1000px; margin: -60px auto 0 auto;
            position: relative; z-index: 10; display: grid;
            grid-template-columns: repeat(3, 1fr); padding: 35px;
            border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
        }
        .info-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); position: relative; }
        .info-item:last-child { border-right: none; }
        .info-item span { display: block; font-size: 12px; color: var(--cyan); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .info-item p { font-family: var(--font-head); font-weight: 700; font-size: 22px; }

        /* --- CONTENU --- */
        .show-main-container {
            max-width: 1200px; margin: 80px auto;
            display: grid; grid-template-columns: 1fr 350px; gap: 60px; padding: 0 20px;
        }

        .show-description h2 {
            font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 30px;
            background: linear-gradient(90deg, #fff, #999); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .show-description .content-text { font-size: 17px; line-height: 1.8; color: #ccc; margin-bottom: 30px; }
        .content-text p { margin-bottom: 20px; }

        .btn-action {
            display: inline-flex; align-items: center; gap: 10px;
            background: transparent; border: 2px solid var(--cyan); color: var(--cyan);
            padding: 12px 30px; font-weight: 700; font-family: var(--font-head);
            text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: 0.3s;
        }
        .btn-action:hover { background: var(--cyan); color: #000; box-shadow: 0 0 20px rgba(17, 205, 212, 0.4); }

        /* Sidebar */
        .host-sidebar {
            background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
            border-radius: 20px; padding: 40px;
            border: 1px solid rgba(255,255,255,0.05); height: fit-content;
            position: sticky; top: 120px;
        }
        .host-avatar { 
            width: 140px; height: 140px; border-radius: 50%; object-fit: cover; 
            border: 3px solid var(--pink); margin-bottom: 20px; padding: 5px; background: var(--card-bg);
        }
        .host-socials a {
            width: 40px; height: 40px; background: #1a1a20; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 16px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; color: #fff;
        }
        .host-socials a:hover { transform: translateY(-3px); border-color: var(--cyan); color: var(--cyan); }

        /* --- REPLAYS --- */
        .replay-section { background: #050507; padding: 100px 20px 150px 20px; margin-top: 50px; position: relative; }
        .replay-header { text-align: center; margin-bottom: 60px; }
        .replay-header h3 { font-family: var(--font-head); font-size: 40px; font-weight: 900; letter-spacing: -1px; }
        
        .replay-grid {
            max-width: 1200px; margin: 0 auto; display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px;
        }
        .replay-card {
            background: var(--card-bg); border-radius: 12px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
            display: flex; flex-direction: column; cursor: pointer;
        }
        .replay-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .replay-thumb { height: 160px; position: relative; overflow: hidden; }
        .replay-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .replay-card:hover .replay-thumb img { transform: scale(1.1); filter: brightness(0.6); }
        
        .play-btn-small {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5);
            width: 50px; height: 50px; background: var(--cyan); color: #000;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.3s;
        }
        .replay-card:hover .play-btn-small { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        
        .replay-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .replay-date { font-size: 11px; color: var(--pink); font-weight: 800; margin-bottom: 8px; }
        .replay-title { font-size: 15px; font-weight: 700; line-height: 1.4; color: #fff; }












































        
        /* --- HERO PODCAST --- */
        .podcasts-hero {
            padding: 160px 20px 60px 20px;
            background: radial-gradient(circle at top left, #1a103c 0%, var(--dark-bg) 100%);
            text-align: center;
        }
        .title-outline {
            font-family: var(--font-head); font-weight: 900; font-size: 70px; line-height: 0.85;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6); color: transparent; text-transform: uppercase;
        }
        .badge-styled {
            background: var(--pink); color: #fff; font-weight: 800; padding: 5px 25px; font-size: 14px;
            display: inline-block; transform: translateY(-15px) rotate(-1deg); box-shadow: 0 0 20px var(--pink); font-family: var(--font-head);
        }

        /* --- FEATURED PODCAST (À LA UNE) --- */
        .featured-pod-container {
            max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px;
        }
        .featured-pod-card {
            display: grid; grid-template-columns: 450px 1fr;
            background: var(--card-bg); border-radius: 20px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }
        .featured-img-wrap { position: relative; height: 350px; }
        .featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .play-btn-large {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 80px; height: 80px; background: var(--cyan); color: #000;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 30px; box-shadow: 0 0 30px var(--cyan); transition: 0.3s;
        }
        .featured-pod-card:hover .play-btn-large { transform: translate(-50%, -50%) scale(1.1); background: #fff; }

        .featured-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
        .featured-label { color: var(--cyan); font-weight: 800; font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
        .featured-title { font-family: var(--font-head); font-size: 36px; font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
        .featured-desc { color: #aaa; line-height: 1.6; margin-bottom: 30px; }

        /* --- BARRE DE RECHERCHE ET FILTRES --- */
        .pod-nav-bar {
            max-width: 1200px; margin: 0 auto 40px auto; padding: 0 20px;
            display: flex; justify-content: space-between; align-items: center; gap: 20px;
        }
        .pod-filters { display: flex; gap: 10px; }
        .filter-btn {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 10px 20px;
            border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; color: #888;
        }
        .filter-btn.active { background: var(--cyan); color: #000; border-color: var(--cyan); }
        .pod-search { position: relative; flex: 1; max-width: 300px; }
        .pod-search input { width: 100%; background: #000; border: 1px solid #333; padding: 12px 40px 12px 15px; border-radius: 4px; color: #fff; }
        .pod-search i { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #555; }

        /* --- GRID DES PODCASTS --- */
        .pod-grid {
            max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
        }
        .pod-card {
            background: var(--card-bg); border-radius: 12px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.03); transition: 0.4s;
        }
        .pod-card:hover { transform: translateY(-10px); border-color: var(--pink); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
        .pod-thumb { position: relative; height: 180px; overflow: hidden; }
        .pod-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .pod-card:hover .pod-thumb img { transform: scale(1.1); }
        .play-overlay {
            position: absolute; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.3s;
        }
        .pod-card:hover .play-overlay { opacity: 1; }
        .play-icon-small { width: 50px; height: 50px; background: var(--pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }

        .pod-body { padding: 20px; }
        .pod-meta { font-size: 10px; color: var(--cyan); font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
        .pod-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; height: 44px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
        .pod-info-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #666; font-weight: 600; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .pod-grid { grid-template-columns: repeat(2, 1fr); }
            .featured-pod-card { grid-template-columns: 1fr; }
            .featured-img-wrap { height: 250px; }
        }
        @media (max-width: 768px) {
            .title-outline { font-size: 45px; }
            .pod-nav-bar { flex-direction: column; align-items: flex-start; }
            .pod-search { max-width: 100%; }
        }
        @media (max-width: 480px) {
            .pod-grid { grid-template-columns: 1fr; }
        }






















        /* Le conteneur qui remplace l'iframe */
.youtube-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

/* Le bouton Play central */
.play-fake-button {
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2;
}

.youtube-placeholder:hover .play-fake-button {
    background-color: #FF0000; /* Rouge YouTube au survol */
}

.play-fake-button i {
    color: white;
    font-size: 24px;
}

/* Overlay sombre pour faire ressortir le bouton */
.youtube-placeholder::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}



































