/* =========================================
   FONTS LOCALES (Optimisation Perf & RGPD)
   Chemin relatif : ../fonts/
   ========================================= */

/* --- INTER --- */

/* Regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

/* SemiBold (600) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

/* ExtraBold (800) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
}

/* --- MONTSERRAT --- */

/* Light (300) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Montserrat-Light.woff2') format('woff2');
}

/* Regular (400) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
}

/* SemiBold (600) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
}

/* Bold (700) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
}

/* ExtraBold (800) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
}

/* Black (900) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/Montserrat-Black.woff2') format('woff2');
}
:root {
    /* --- Palette SLY Radio --- */
    --cyan: #11cdd4;
    --pink: #bc47c1;
    --dark-bg: #0a0a0a;
    --card-bg: #13131a;
    --text-white: #ffffff;
    --text-gray: #aaa;
    
    /* --- Typographie --- */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-head: 'Montserrat', sans-serif;
    
    /* --- Player Vars --- */
    --pl-bg: rgba(10, 10, 12, 0.98);
    --pl-accent: #8e44ad;
    --pl-height: 80px;

    /* --- Ticker Dédicaces --- */
    --ticker-bg: #1a1a1a;
    --ticker-text: #ffffff;
    --ticker-accent: #004a99;
    --ticker-highlight: #ffba08;
    --ticker-height: 44px;
    --ticker-speed: 30s;
    
    /* --- Système --- */
    --radius-sm: 8px;
    --radius-md: 15px;
    --shadow-main: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Reset & Global --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; /* Désactive le flash gris au clic sur mobile */
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base pour le REM */
}

body { 
    background-color: var(--dark-bg); 
    color: var(--text-white); 
    font-family: var(--font-head); /* Montserrat par défaut */
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Rendu des polices plus net */
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typographie & Liens --- */
a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s ease; 
}

ul { list-style: none; }

/* --- Correction Formulaires iOS & Modern Browsers --- */
input, select, textarea, button {
    font-family: inherit;
    font-size: 1rem !important; /* Force 16px pour éviter le zoom auto iOS */
    outline: none;
}

/* --- Images Responsives --- */
img {
    max-width: 100%;
    height: auto; 
    display: block; /* Supprime l'espace vide sous les images */
    interpolation-mode: high-quality; /* Meilleure qualité de redimensionnement */
}

/* --- Utilitaires --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-player-spacer {
    height: calc(var(--pl-height) + 40px);
    width: 100%;
    pointer-events: none;
}
      

/* 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);
}
             /* 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; }
        }












/* =========================================
           1. GLOBAL HEADER (Menu Principal)
           ========================================= */
      .global-header {
    position: fixed;
    top: var(--ticker-height); /* Commence JUSTE EN DESSOUS du ticker (44px) */
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    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;
}

/* Quand on scroll, le header remonte tout en haut */
.global-header.scrolled {
    top: 0; /* Remonte à 0px puisque le ticker est parti */
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(10px);
}

        .header-top {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            width: 100%;
            padding: 15px 40px 5px 40px;
        }

        .hamburger {
            font-size: 24px; cursor: pointer; justify-self: start; color: #fff;
        }
        .hamburger:hover { color: var(--cyan); }

        .logo { justify-self: center; display: flex; align-items: center; }
        .logo img { height: 60px; transition: 0.3s; }
        
        /* Réduire logo au scroll */
        .global-header.scrolled .logo img { height: 45px; }


        
        
        /* --- CONTENEUR DES RÉSEAUX SOCIAUX --- */
.socials {
    justify-self: end;
    display: flex;
    flex-direction: row !important; /* Force l'alignement horizontal */
    gap: 12px;
    align-items: center;
}

/* --- BOUTON ROND --- */
.soc-btn {
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* --- ICÔNE À L'INTÉRIEUR (Sans bordure !) --- */
.soc-btn i {
    font-size: 16px;
    margin: 0;
    border: none !important; /* Annule l'erreur du double cercle */
    transition: transform 0.3s ease;
}

.soc-btn:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.6);
}

.soc-btn:hover i {
    transform: scale(1.1);
}
        /* Desktop Nav */
        .desktop-nav { display: none; }
        @media (min-width: 1024px) {
            .desktop-nav {
                display: flex; justify-content: center; gap: 30px; margin-top: 10px; padding: 0 20px;
            }
            .desktop-nav a {
                font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; opacity: 0.9; position: relative; font-family: var(--font-head);
            }
            .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; }
        }

        /* Overlay Menu (Mobile) */
        .overlay-menu {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background: #000; z-index: 2000;
            display: flex; flex-direction: column; justify-content: center; padding-left: 50px;
            transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
        }
        .overlay-menu.active { transform: translateY(0); }
        .close-btn { position: absolute; top: 30px; left: 40px; font-size: 24px; cursor: pointer; color: #fff; }
        .overlay-links li { font-size: 32px; font-weight: 700; margin-bottom: 20px; cursor: pointer; color: #fff; font-family: var(--font-head); }
        .overlay-links li span { color: var(--pink); }
        .overlay-links li:hover { color: var(--cyan); }





























        /* --- OVERLAY MOBILE --- */

        
/* 1. LE CONTENEUR FIXE (Le cadre du menu) */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Prend tout l'écran */
    z-index: 9999;
    background: radial-gradient(circle at top right, #1a103c, #000);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    
    /* TRÈS IMPORTANT : On empêche le menu de dépasser de son propre cadre */
    overflow: hidden; 
}

.overlay-menu.active { 
    transform: translateY(0); 
}

/* 2. LA ZONE DE SCROLL (C'est elle qui doit tout gérer) */
.overlay-scroll-container {
    width: 100%;
    height: 100%; /* Important : remplit le parent fixe */
    
    /* On active le scroll vertical */
    overflow-y: auto; 
    
    /* Scroll fluide pour iOS (Safari mobile) */
    -webkit-overflow-scrolling: touch; 
    
    /* On laisse de la place pour les mains en bas (à cause du player) */
    padding: 100px 30px 150px 30px; 
}

/* 3. LES LIENS (On s'assure qu'ils ne bloquent pas la hauteur) */
.overlay-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block; /* Laisse la liste s'étirer naturellement */
    height: auto;
}

/* 4. LES SOUS-MENUS (Optimisation) */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 35px;
    transition: max-height 0.6s ease-in-out, opacity 0.4s;
    opacity: 0;
}

.has-mobile-submenu.active .mobile-submenu {
    /* Augmente cette valeur si tu as vraiment beaucoup d'émissions */
    max-height: 2000px; 
    opacity: 1;
    margin-top: 15px;
    margin-bottom: 10px;
}


.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; }


.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; 
}

.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;
    justify-content: flex-end; /* Aligne le bloc vers le BAS */
    align-items: flex-end; /* Aligne TOUT le contenu à l'EXTRÊME DROITE */
    padding-right: 10%; /* Marge pour ne pas coller à l'écran */
    padding-left: 10%;
    padding-bottom: 15vh; /* Remonte le bloc pour ne pas toucher ton player */
    z-index: 2;
}
.sly-tagline {
    min-height: 1.5em; /* Réserve l'espace pour éviter que le titre dessous ne saute */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.typing-container {
    white-space: nowrap; /* Empêche le curseur de passer à la ligne suivante */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem; /* Ajuste selon tes besoins */
    color: #fff;
}

.blinking-cursor {
    margin-left: 2px;
    font-weight: 400;
    color: #00ecff; /* Cyan comme sur ta capture */
    animation: blink 0.8s infinite;
}
@media (max-width: 768px) {
    .typing-container {
        /* pre-wrap permet de respecter le saut de ligne (\n) du Javascript */
        white-space: pre-wrap !important; 
        line-height: 1.2; /* Évite que les deux lignes se superposent */
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Style des blocs de titre (Capture 2) */
.highlight-bg {
    background: #000;
    padding: 2px 10px;
    display: inline-block;
    margin: 3px 0;
    transform: rotate(-1deg); /* Léger effet déstructuré comme sur l'image */
}

.txt-cyan { color: #00ecff; }
.txt-pink { color: #ff00ff; }

.main-title {
    font-size: clamp(40px, 5vw, 60px); 
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    text-align: right; /* Aligné à droite */
    margin: 0 0 40px 0;
    transform: rotate(-3deg);
    transform-origin: right center; /* Point de pivot à droite pour la rotation */
    animation: floatText 4s ease-in-out infinite;
}


/* --- LA BOÎTE DE DESCRIPTION --- */
.desc-box {
    background: rgba(12, 12, 12, 0.75); /* Fond assombri pour la lisibilité */
    border: 1px solid rgba(255,255,255,0.15);
    border-right: 4px solid var(--cyan); /* Belle ligne d'ancrage à droite */
    padding: 25px 30px;
    max-width: 500px;
    
    /* Inclinaison parfaite ancrée à DROITE */
    transform: skewX(-15deg);
    transform-origin: bottom right; /* IMPÉRATIF pour ne pas décaler la boîte ! */
    
    position: relative;
    backdrop-filter: blur(5px);
}

.desc-text {
    transform: skewX(15deg); /* Redresse le texte */
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    text-align: right; /* Texte aligné à droite pour suivre la boîte */
    margin: 0;
    display: block;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes blink { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0; } 
}

@keyframes floatText {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-8px); }
}

/* =========================================
   RESPONSIVE (Mobile & Tablette)
   ========================================= */
@media (max-width: 1024px) {
    /* Ajustement de l'image de fond */
    .bg-image {
        background-position: 15% center; 
    }

    /* Recentrage global du contenu */
    .hero-content {
        align-items: center; /* Sur mobile, on recentre tout ! */
        justify-content: center; /* Au centre de l'écran */
        padding-right: 5%;
        padding-left: 5%;
        padding-bottom: 0;
    }
    
    /* Textes centrés */
    .sly-tagline, .main-title, .desc-text {
        text-align: center;
    }
    
    /* L'animation flotte par rapport au centre */
    .main-title {
        transform-origin: center center;
    }
    
    /* Boîte de description droite et pleine largeur */
    .desc-box {
        transform: skewX(0); /* On enlève l'inclinaison sur mobile, plus lisible */
        border-right: 1px solid rgba(255,255,255,0.15);
        border-bottom: 4px solid var(--cyan);
        width: 100%;
    }
    
    /* Texte droit à l'intérieur de la boîte */
    .desc-text {
        transform: skewX(0);
    }
}
























































        /* --- STICKY PLAYER CSS --- */
        .sticky-player {
            --station-color: #ff0055; /* Couleur par défaut (Original) */
            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;
            transition: border-color 0.4s ease; /* Transition douce lors du changement */
        }
        .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: var(--station-color); /* Dynamique */
    border-radius: 50%;
    box-shadow: 0 0 8px var(--station-color); /* Dynamique */
    animation: pulseLive 2s infinite;
    transition: background 0.4s, box-shadow 0.4s;
}
        @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(--station-color); /* remplace var(--pl-accent) */
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, background 0.4s, box-shadow 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-main-play:hover {
    transform: scale(1.1);
    filter: brightness(1.2); /* Éclaircit la couleur de la station au survol */
}
        
        
        .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-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    background: var(--station-color); /* Dynamique */
    border-radius: 50%;
    cursor: pointer;
}

.badge-hd {
    font-size: 10px; font-weight: 900;
    border: 1px solid var(--station-color); /* Dynamique */
    color: var(--station-color); /* Dynamique */
    padding: 1px 4px; border-radius: 3px;
}






        .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; }
        .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; }
        }





/* --- 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: #1a1a1a; /* Utilisation de la variable Rose définie plus haut */
color: #00e5ff;
    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-color: #1a1a1a; /* Fond très sombre */
    color: #00e5ff; /* Cyan très vif pour trancher */
    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%);
    padding: 60px 20px 40px 20px; 
    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);
    margin-top: 10px;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    /* Effet bords dentelés */
    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;
}

.news-deco-img {
    position: absolute;
    top: -20px;
    right: 100px;
    height: 120px;
    z-index: 1;
    animation: floatDeco 3s ease-in-out infinite;
}

@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;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    background-color: #000; /* Fond noir pour éviter le flash blanc pendant la transition */
}

/* Conteneur d'image pour l'effet de zoom interne */
.main-news-image-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.news-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

/* Overlay sombre dégradé */
.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%);
    z-index: 2;
}

/* Contenu textuel */
.article-overlay {
    position: relative;
    z-index: 3;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.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;
    -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;
}

/* Stats et Like */
/* Positionnement en haut à droite */
.news-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10; /* Doit être au-dessus du dégradé */
}

/* Style des badges (Vues et Likes) */
.news-stats-overlay span, 
.news-stats-overlay .like-btn {
    background: rgba(0, 0, 0, 0.6); /* Fond sombre semi-transparent */
    backdrop-filter: blur(5px);    /* Effet de flou derrière le badge */
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Ajustement spécifique pour le bouton Like */
.news-stats-overlay .like-btn {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.news-stats-overlay .like-btn:hover {
    transform: scale(1.1);
    background: #ffd700;
    color: #000;
}
.like-btn {
    background: #ffd700;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 800;
    color: #000;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 6px;
}

.like-btn:hover { transform: scale(1.1); }
.like-btn:active { transform: scale(0.95); }

/* Zone cliquable pour l'article */
.content-clickable {
    cursor: pointer;
}

/* Vignettes de navigation */
.news-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.thumb.active, .thumb:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.thumb.active img, .thumb:hover img {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
    .featured-article { height: 420px; }
    .article-title { font-size: 20px; }
    .article-excerpt { display: none; }
    .article-overlay { padding: 20px; }
    .title-top { font-size: 40px; }
    .thumb { width: 60px; height: 45px; }
    .news-stats-overlay { top: 10px; right: 10px; }
}

























    /* --- 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: #000000; 
    color: #ffffff;
    font-weight: 700;
            font-size: 10px;
            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 --- */
/* --- STYLE CTA SECTION --- */
.cta-section {
    position: relative;
    height: 600px;
    width: 100%;
    /* On cache le débordement du zoom de l'image */
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a2e; 
}

/* On applique l'animation Ken Burns directement sur la balise img */
.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remplace background-size: cover pour une balise <img> */
    object-fit: cover;
    z-index: 1;
    animation: kenBurns 20s infinite alternate linear;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(20, 10, 40, 0.7), rgba(10, 20, 50, 0.5));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 10; /* Doit être au dessus de tout */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transform: translateY(-30px);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 50px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #a89bb0; 
    margin: 0;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.cta-title span {
    display: block;
    color: #ffffff; /* Un blanc pur ressortira mieux sur le fond sombre */
}

/* Bouton Écouter */
.cta-btn-listen {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #15202b;
    color: #fff;
    padding: 10px 30px 10px 10px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    /* On enlève overflow:hidden pour voir le pulse sortir du bouton */
}

    

        .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%;
    
    /* On définit la taille de base FIXE (100% du parent) */
    width: 100%; height: 100%;
    
    /* On initialise la transformation : centré et taille normale (scale 1) */
    transform: translate(-50%, -50%) scale(1);
    
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    
    /* On prévient le navigateur pour fluidifier */
    will-change: transform, opacity;
    
    animation: btnPulse 2s infinite;
    opacity: 0;
}

@keyframes btnPulse {
    0% {
        /* On garde le centrage ET on commence à taille normale */
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        /* On garde le centrage.
           width: 140% devient scaleX(1.4)
           height: 180% devient scaleY(1.8)
           On combine les deux dans scale(x, y)
        */
        transform: translate(-50%, -50%) scale(1.4, 1.8);
        opacity: 0;
    }
}
 
        /* 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 */
        }

        .hitech-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

        /* 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;
            z-index: 2;
            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-color: #ff0000; 
    color: #ffffff; /* Blanc pur sur rouge */
    font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  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; 
    height: 20px;
    background: var(--cyan);
    will-change: transform;
    animation: bounce 1s infinite ease-in-out;
    transform-origin: bottom;
}

@keyframes bounce { 
    0%, 100% { transform: scaleY(0.2); } 
    50% { transform: scaleY(1); } 
}

/* On garde les délais pour l'effet de vague, mais on retire les 'height' inutiles qui seraient écrasés par l'animation de toute façon */
.equalizer-icon span:nth-child(1) { animation-delay: 0.1s; }
.equalizer-icon span:nth-child(2) { animation-delay: 0.2s; }
.equalizer-icon span:nth-child(3) { animation-delay: 0.3s; }

/* MODIFICATION 3 : On utilise scaleY au lieu de height */
@keyframes bounce { 
    0%, 100% { 
        /* 0.25 * 20px = 5px (comme avant) */
        transform: scaleY(0.25); 
    } 
    50% { 
        /* 1 * 20px = 20px (comme avant) */
        transform: scaleY(1); 
    } 
}

/* 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 {
            color: #b3b3b3;
            margin-top: 60px;
            padding: 30px 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            background: #000;
        }
        .footer-bottom a {
    color: #ffffff; /* Liens en blanc pur pour être sûr qu'ils ressortent */
    text-decoration: underline; /* Aide à identifier les liens */
}
        .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 Optimisée) --- */
.streams-selector-section {
    position: relative;
    background-color: #000000;
    width: 100%;
    padding: 60px 20px;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.streams-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- CARTE STREAM --- */
.stream-card {
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Image de fond optimisée */
.stream-bg-img {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

.stream-card:hover .stream-bg-img { 
    transform: scale(1.1); 
}

/* Filtre et Overlay */
.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.3) 100%);
    transition: 0.3s;
    z-index: 2;
}

/* Couleurs dynamiques via classes */
.stream-card[data-station="classic"] .stream-overlay { border-left: 4px solid var(--cyan); }
.stream-card[data-station="club"] .stream-overlay { border-left: 4px solid var(--pink); }
.stream-card[data-station="urban"] .stream-overlay { border-left: 4px solid #f1c40f; }

/* --- CONTENU --- */
.stream-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    pointer-events: none; /* Laisse le clic passer à la carte */
}

.stream-icon {
    font-size: 28px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.stream-card:hover[data-station="classic"] .stream-icon i { color: var(--cyan); }
.stream-card:hover[data-station="club"] .stream-icon i { color: var(--pink); }
.stream-card:hover[data-station="urban"] .stream-icon i { color: #f1c40f; }

.stream-info {
    flex: 1;
}

.stream-info h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
}

.stream-info p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #aaa;
    font-family: 'Inter', sans-serif;
}

/* --- ETAT PLAYING (ACTIF) --- */
.stream-card.is-playing {
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(211, 23, 148, 0.4);
    transform: scale(1.03);
}

.stream-play-icon {
    width: 36px;
    height: 36px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(211, 23, 148, 0.6);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Affichage du bouton play si playing */
.stream-card.is-playing .stream-play-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Changement icône pause */
.stream-card.is-playing .stream-play-icon i::before {
    content: "\f04c"; /* Code fa-pause */
}

/* --- BADGE LIVE --- */
.stream-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    background: rgba(255,0,0,0.7);
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 4;
}

.pulse-dot {
    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.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .streams-selector-section { 
        padding: 30px 15px; 
    }
    .streams-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stream-card { 
        height: 90px; 
    } 
    .stream-info h3 { font-size: 16px; }
}


/****************************************************************************
 * 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 {
   min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}


.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: clamp(45px, 10vw, 90px); /* Taille adaptative : min 45px, max 90px */
    line-height: 0.9;
    margin-bottom: 10px; /* Espace avec ce qui suit */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5); 
    color: transparent; 
    text-transform: uppercase;
}

.badge-styled {
    background: var(--cyan); 
    color: #000; 
    font-weight: 800; 
    padding: 8px 30px; 
    font-size: 16px;
    display: inline-block;
    transform: translateY(-25px) rotate(-2deg); /* Un peu plus décalé pour le style */
    box-shadow: 0 0 30px rgba(17, 205, 212, 0.4); 
    font-family: var(--font-head);
    z-index: 2;
}

        /* --- 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('../../uploads/images/bg_studio.avif');
            background-size: cover; background-position: center; background-attachment: fixed;
            display: flex; align-items: center; justify-content: center;

            background-image: url('../uploads/images/story-banner-sm.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
        }
        @media (min-width: 768px) {
    .story-banner {
        background-image: url('../uploads/images/story-banner-lg.webp');
        background-attachment: fixed; /* Petit effet parallaxe sympa sur PC */
    }
}

        .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 SLY RADIO - INTEGRALITÉ DU CODE
 ***************************************************************************/
/* --- TEAM HERO SECTION --- */
.team-hero {
    min-height: 80vh; 
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: radial-gradient(circle at center, #1a103c 0%, #0a0a0a 100%);
    position: relative; 
    padding-top: 220px; /* Espace pour ton header géant sur mobile */
    padding-bottom: 80px;
    text-align: center;
}

.header-styled { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.title-outline {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    font-size: clamp(50px, 12vw, 110px); 
    line-height: 0.85;
    margin-bottom: 0; 
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); 
    color: transparent; 
    text-transform: uppercase;
    letter-spacing: -2px;
}

.badge-styled {
    background: var(--cyan); 
    color: #000; 
    font-weight: 800; 
    padding: 10px 35px; 
    font-size: 18px;
    display: inline-block;
    transform: translateY(-30px) rotate(-3deg); 
    box-shadow: 0 10px 40px rgba(17, 205, 212, 0.5); 
    font-family: 'Montserrat', sans-serif;
    z-index: 5;
    text-transform: uppercase;
}

/* Ajustement responsive du Hero */
@media (max-width: 768px) {
    .team-hero {
        padding-top: 250px; /* Plus d'espace sur mobile pour ton logo 180px */
        min-height: 60vh;
    }
}
/* --- 1. CONFIGURATION & LAYOUT --- */
.team-grid-container {
    max-width: 1250px;
    margin: 40px auto 100px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
    gap: 60px;
    padding: 0 40px;
    align-items: center;
}

/* --- 2. COLONNE SLIDER (GAUCHE) --- */
.slider-column {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    perspective: 1200px; /* Effet de profondeur */
}

.slider-track {
    position: relative;
    width: 100%;
    height: 350px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- 3. CARTES 3D --- */
.team-card-mini {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.team-card-mini.active {
    border: 2px solid var(--cyan);
    box-shadow: 0 0 40px rgba(17, 205, 212, 0.4);
}

.team-card-mini.active img {
    filter: grayscale(0%);
}

/* --- 4. BOUTON PARTAGE FLOTTANT (SUR LA PHOTO) --- */
.floating-share-btn {
    position: absolute;
    top: 20px;
    right: 50px; /* Ajusté pour être sur le bord droit de la zone image */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--cyan);
    color: #000;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(17, 205, 212, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-share-btn:hover {
    background: var(--pink);
    color: #fff;
    transform: scale(1.1) rotate(15deg);
}

/* --- 5. NAVIGATION EXTERIEURE --- */
.slider-nav-wrapper {
    position: absolute;
    top: 50%;
    left: -30px; /* Sort de la colonne */
    right: -30px; /* Sort de la colonne */
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.side-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.side-nav-btn:hover {
    background: var(--cyan);
    color: #000;
    border-color: var(--cyan);
}

/* --- 6. COLONNE DÉTAILS (DROITE) --- */
.details-column {
    background: #13131a;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
}

.role-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--pink), #8e44ad);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.detail-bio {
    font-size: 14px; /* Plus petit pour les longs textes */
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    text-align: justify;
}

/* --- 7. RESEAUX SOCIAUX --- */
.detail-socials {
    display: flex;
    gap: 12px;
}

.soc-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s ease;
}

.soc-link:hover {
    background: var(--cyan);
    color: #000;
    transform: translateY(-3px);
}

/* --- 8. RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .team-grid-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .slider-column { height: 400px; order: 1; }
    .details-column { order: 2; padding: 30px; text-align: center; min-height: auto; }
    
    .role-badge { margin: 0 auto 15px; }
    .detail-socials { justify-content: center; }
    .detail-bio { text-align: center; }

    .slider-nav-wrapper {
        position: relative;
        left: 0; right: 0;
        margin-top: 20px;
        pointer-events: auto;
        justify-content: center;
        gap: 20px;
    }
    
    .floating-share-btn {
        right: 10px;
        top: 0;
    }
}







/****************************************************************************
 * SECTION : NOTRE HISTOIRE
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page "histoire"" de SLY Radio.
 ***************************************************************************/



        
        /* --- HERO SECTION --- */
        .history-hero {
            min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}

        .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: 0 auto;
            padding: 40px 0;
            z-index: 1; /* Inférieur à la barre de recherche */
        }

        /* 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 {
   min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}


.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.webp') 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; /* Important : garde les barres centrées verticalement lors du redimensionnement */
    margin-bottom: 20px;
}

.bar {
    width: 6px;
    background: var(--sly-blue);
    
    /* 1. On fixe la hauteur MAXIMALE ici */
    height: 40px;
    
    /* 2. On prévient le navigateur */
    will-change: transform;
    
    animation: equalizer 1s infinite;
}

@keyframes equalizer {
    0% {
        /* 10px / 40px = 0.25 */
        transform: scaleY(0.25);
    }
    50% {
        /* 40px / 40px = 1 */
        transform: scaleY(1);
    }
    100% {
        /* Retour à 10px */
        transform: scaleY(0.25);
    }
}

    /* --- 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 {
   min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}


/* --- 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 {
   min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}


/* 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 {
       min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}

        .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 {
              min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}

.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;
}
        
        .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 {
               min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}

        .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;
}















































.sly-compact-club {
    padding: 30px 10px;
    background: #000;
    text-align: center;
    font-family: sans-serif;
}

/* Titre épuré et brillant */
.sly-title-slim {
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 300;
}

.sly-title-slim .brand {
    font-weight: 800;
    color: #ff0055;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

/* Grille serrée */
.sly-grid-compact {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.dj-item {
    flex: 1;
    max-width: 180px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dj-thumb {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
}

/* Cartouche d'info style "Glassmorphism" */
.dj-info-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dj-name-small {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dj-day {
    color: #ff0055;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Animations au survol */
.dj-item:hover {
    transform: translateY(-5px);
}

.dj-item:hover img {
    scale: 1.1;
}

.dj-item:hover .dj-info-glass {
    background: rgba(255, 0, 85, 0.8);
    backdrop-filter: blur(0px);
}

.dj-item:hover .dj-name-small, 
.dj-item:hover .dj-day {
    color: #fff;
}

/* Mobile */
@media (max-width: 480px) {
    .sly-grid-compact { gap: 10px; }
    .dj-name-small { font-size: 0.7rem; }
    .dj-day { font-size: 0.6rem; }
}






























/* Modales */
.sly-modal {
    display: none; position: fixed; z-index: 9999; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px); align-items: center; justify-content: center;
}
.modal-content {
    background: #1a1a1a; width: 90%; max-width: 900px; border-radius: 20px;
    position: relative; padding: 40px; color: white;
    box-shadow: 0 0 50px rgba(255,102,0,0.2);
}
.close-modal {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: white; font-size: 30px; cursor: pointer;
}

/* Layout Album */
.album-header-modal { display: flex; gap: 30px; margin-bottom: 30px; align-items: flex-end; }
.album-header-modal img { width: 250px; height: 250px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.header-text h2 { font-size: 3rem; font-weight: 900; margin: 0; color: #ff6600; }

/* Tableaux */
.sly-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.sly-table th { text-align: left; padding: 12px; color: #666; font-size: 0.8rem; text-transform: uppercase; border-bottom: 1px solid #333; }
.sly-table td { padding: 15px 12px; border-bottom: 1px solid #222; transition: 0.3s; }
.sly-table tr:hover td { background: rgba(255,255,255,0.05); }

/* Actions Singles */
.single-actions { display: flex; gap: 10px; }
/* Boutons plus discrets (Singles & Tracks) */
.btn-action {
    background: rgba(255, 255, 255, 0.03); /* Presque invisible */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    width: 34px;
    height: 34px;
    border-radius: 8px; /* Carré arrondi plus moderne que le cercle */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.btn-action:hover {
    background: transparent;
    border-color: #ff6600;
    color: #ff6600;
    transform: translateY(-2px);
}

/* Version YouTube spécifique */
.open-yt:hover {
    border-color: #ff0000;
    color: #ff0000;
}

/* Texte meta sous les albums */
.meta-small {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Table de la modale plus aérée */
.sly-table td {
    padding: 12px;
    font-size: 14px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}












/* Animation de fondu */
.fade-out {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Style de l'icône Stop pour qu'elle soit bien centrée */
#playIconPath {
    transition: d 0.2s ease-in-out;
}








/* Format Carré pour les miniatures de la liste */
.pod-thumb {
    position: relative;
    width: 80px; /* Ajuste selon ton design */
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.pod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Force le remplissage sans déformer */
    aspect-ratio: 1 / 1;
}

/* Bouton Play sur les miniatures */
.pod-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--pink); /* Ta couleur rose */
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s ease;
}

.pod-item:hover .pod-item-play {
    opacity: 1;
}

/* Style des liens dans les titres */
.pod-content h3 a, .main-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.pod-content h3 a:hover, .main-title a:hover {
    color: var(--cyan); /* Ta couleur cyan */
}































/* Correction du Hero */
        .podcast-hero {
              min-height: 70vh; /* Augmenté légèrement pour un look plus "Premium" */
    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: 150px; /* Espace généreux pour laisser respirer le header fixe */
    padding-bottom: 50px;
}

        
        .hero-cover {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.4) blur(10px);
            transform: scale(1.1);
        }

        .hero-info {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .hero-poster {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: block;
        }

        .hero-text { flex: 1; }
        .hero-show { color: var(--cyan); text-transform: uppercase; font-weight: bold; letter-spacing: 2px; }
        .hero-title { font-size: 3rem; margin: 10px 0; font-family: 'Montserrat', sans-serif; }

        /* Player Custom */
        .custom-player {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            backdrop-filter: blur(5px);
        }

        .play-btn-big {
            background: var(--pink);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: 0.3s;
        }

        .play-btn-big:hover { transform: scale(1.1); background: var(--cyan); }

        .progress-container { flex: 1; }
        .progress-bar {
            height: 6px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        .progress-fill {
            height: 100%;
            background: var(--cyan);
            width: 0%;
            border-radius: 3px;
        }
        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-top: 8px;
            color: #ccc;
        }

        /* Layout */
        .main-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            padding: 0 20px;
        }

        .article-body h2 { color: var(--cyan); }
        .article-body p { line-height: 1.8; color: #ddd; font-size: 1.1rem; }

        .sidebar { background: #1a1a1a; padding: 25px; border-radius: 15px; height: fit-content; }
        .widget-title { border-left: 4px solid var(--pink); padding-left: 15px; margin-bottom: 25px; }

        @media (max-width: 900px) {
            .main-wrapper { grid-template-columns: 1fr; }
            .hero-info { flex-direction: column; text-align: center; }
            .hero-poster { width: 180px; height: 180px; }
            .hero-title { font-size: 2rem; }
        }







        /* Stats pour le podcast principal */
.pod-meta span i {
    margin-right: 4px;
    color: var(--cyan); /* ou ta couleur d'accent */
}

/* Stats pour les items de la liste */
.pod-item-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #bbb;
    margin-bottom: 4px;
}

.pod-item-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pod-item-stats i {
    font-size: 10px;
    color: var(--pink); /* Une couleur différente pour les stats si tu veux */
}

.pod-content h3 {
    margin-bottom: 4px;
}

























.like-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.like-btn:hover {
    transform: scale(1.1);
    color: #ff4d4d;
}

.like-btn.liked i {
    font-weight: 900; /* fa-solid */
    color: #ff4d4d;
}

/* Stats dans les overlays (Actus & Hitech) */
.news-stats-overlay, .news-stats-hitech {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Stats dans les cartes (Musique & Sainté) */
.news-stats-inline {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}














/* =========================================
   PAGE ARTICLE (SINGLE POST & PODCAST)
   ========================================= */

/* --- 1. HERO HEADER IMMERSIF --- */
.art-hero {
    position: relative;
    min-height: 500px;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Fond flou dynamique (LCP Optimized) */
.art-hero-blur-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.art-hero-blur-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px) brightness(0.4);
    transform: scale(1.1); /* Évite les bords blancs dus au flou */
}

.art-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.8) 70%, #0a0a0a 100%);
    z-index: 2;
}

/* Conteneur de contenu Hero */
.art-hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    animation: artFadeInUp 0.8s ease-out;
}

.art-hero-poster {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md, 15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.art-hero-text {
    flex: 1;
}

.art-category {
    display: inline-block;
    background-color: var(--cyan);
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.4);
}

.art-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Meta Data */
.art-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 14px;
    color: #ddd;
    font-weight: 600;
}

.art-meta-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.art-author-avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid var(--cyan);
    box-shadow: 0 0 10px rgba(17, 205, 212, 0.3);
}

/* --- 2. LAYOUT PRINCIPAL --- */
.art-main-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.art-content-area {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.art-body {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

.art-body p { margin-bottom: 25px; }

.art-body h2 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 45px 0 25px;
    border-left: 4px solid var(--pink);
    padding-left: 20px;
}

/* Lettrine SLY */
.art-body p:first-of-type::first-letter {
    float: left;
    font-size: 65px;
    line-height: 1;
    font-weight: 900;
    padding-right: 12px;
    color: var(--cyan);
}

/* --- 3. SIDEBAR & WIDGETS --- */
.art-sidebar-inner { 
    position: sticky; 
    top: 120px; 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.art-widget {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.art-widget-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Mini Posts Sidebar */
.art-mini-post { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    cursor: pointer;
    transition: var(--trans);
}

.art-mini-post:hover { transform: translateX(5px); }

.art-mini-thumb { 
    width: 70px; 
    height: 70px; 
    border-radius: 8px; 
    object-fit: cover; 
}

.art-mini-title { 
    font-size: 14px; 
    font-weight: 700; 
    color: #fff; 
    line-height: 1.3;
}

/* --- 4. ANIMATIONS & RESPONSIVE --- */
@keyframes artFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .art-main-wrapper { grid-template-columns: 1fr; }
    .art-sidebar { display: none; }
    .art-hero-content-container { flex-direction: column; text-align: center; }
    .art-hero-poster { width: 100%; max-width: 450px; height: auto; }
    .art-meta { justify-content: center; }
}

@media (max-width: 600px) {
    .art-hero { height: auto; padding-top: 140px; padding-bottom: 60px; }
    .art-content-area { padding: 25px; border-radius: 0; border-inline: none; }
    .art-title { font-size: 28px; }
}




























/* =========================================
   GESTION DES EMBEDS (YouTube, Spotify, etc.)
   ========================================= */

/* On force toutes les iframes à ne jamais dépasser la largeur de leur conteneur */
.art-body iframe {
    max-width: 100%;
    border-radius: 8px; /* Un petit bord arrondi pour faire joli */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Optionnel : une ombre pour l'intégrer au design */
    margin: 20px 0;
}

/* Astuce spécifique pour les vidéos YouTube/Vimeo :
  Maintenir le ratio 16:9 même quand la largeur change.
*/
.art-body iframe[src*="youtube.com"],
.art-body iframe[src*="vimeo.com"],
.art-body iframe[src*="dailymotion.com"] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto; /* Annule la hauteur fixe en pixels */
}

/* Ajustement pour Spotify / SoundCloud (qui sont plutôt des rectangles fins) */
.art-body iframe[src*="spotify.com"] {
    width: 100%;
    /* On laisse la hauteur gérée par Spotify, max-width fait le reste */
}

/* Les blockquotes générés par Twitter/X ou Instagram */
.art-body blockquote.twitter-tweet,
.art-body blockquote.instagram-media {
    max-width: 100% !important;
    margin: 20px auto !important; /* On centre l'embed */
}




/* --- WIDGET PARTAGE (Très esthétique et moderne) --- */
.art-share-buttons { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Grille 2 colonnes parfaite */
    gap: 12px; 
}

.art-share-btn { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 12px; 
    border-radius: 8px; /* Plus moderne que 4px */
    font-size: 13px; 
    font-weight: 700; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white; 
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05); /* Fond sombre vitré de base */
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.art-share-btn i {
    font-size: 16px;
    transition: 0.3s ease;
}

/* Couleurs de base des icônes pour qu'on les reconnaisse sans survol */
.art-sb-fb i { color: #1877F2; }
.art-sb-x i { color: #ccc; } 
.art-sb-wa i { color: #25d366; }
.art-sb-li i { color: #0a66c2; }
.art-sb-rd i { color: #ff4500; }
.art-sb-copy i { color: var(--cyan); }

/* --- EFFETS AU SURVOL (Remplissage total + Ombre lumineuse) --- */
.art-share-btn:hover { 
    transform: translateY(-4px); 
    color: white; /* Force le texte en blanc */
}

.art-sb-fb:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }
.art-sb-fb:hover i { color: #fff; }

.art-sb-x:hover { background: #000; border-color: #333; box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); }
.art-sb-x:hover i { color: #fff; }

.art-sb-wa:hover { background: #25d366; border-color: #25d366; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
.art-sb-wa:hover i { color: #fff; }

.art-sb-li:hover { background: #0a66c2; border-color: #0a66c2; box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4); }
.art-sb-li:hover i { color: #fff; }

.art-sb-rd:hover { background: #ff4500; border-color: #ff4500; box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4); }
.art-sb-rd:hover i { color: #fff; }

/* Cas particulier : Bouton Copier le lien prend tes couleurs radio */
.art-sb-copy:hover { 
    background: var(--cyan); 
    border-color: var(--cyan); 
    box-shadow: 0 5px 15px rgba(17, 205, 212, 0.4); 
    color: #000; 
}
.art-sb-copy:hover i { color: #000; }





















































/* --- WIDGET OUTILS (Imprimer / Email) --- */
.art-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.art-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-stack);
}

.art-action-btn i {
    font-size: 18px;
    color: var(--cyan);
    transition: 0.3s ease;
}

/* Effet Hover Imprimer (Cyan) */
.art-btn-print:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #000;
    box-shadow: 0 5px 15px rgba(17, 205, 212, 0.4);
}
.art-btn-print:hover i { color: #000; }

/* Effet Hover Email (Rose) */
.art-btn-email:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 5px 15px rgba(188, 71, 193, 0.4);
}
.art-btn-email:hover i { color: #fff; }































/* =========================================
   MODE IMPRESSION (Clean & Éco-encre)
   ========================================= */
@media print {
    /* 1. On cache tout ce qui est inutile à lire sur papier */
    .global-header, 
    .art-hero, 
    .art-sidebar, 
    .art-related-section, 
    .art-comments-section, 
    .sly-footer, 
    .sticky-player, 
    .radio-ticker-wrapper,
    .art-tags {
        display: none !important;
    }
    
    /* 2. On remet un fond blanc et texte noir absolu */
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    /* 3. On casse la grille pour prendre toute la largeur de la feuille A4 */
    .art-main-wrapper {
        display: block !important; 
        max-width: 100% !important;
        margin: 0 !important; 
        padding: 0 !important;
    }
    
    /* 4. On s'assure que le texte de l'article est noir et propre */
    .art-body {
        color: #000000 !important;
        font-size: 12pt !important; /* pt au lieu de px pour le papier */
        line-height: 1.5 !important;
    }
    
    .art-body h2 {
        color: #000 !important;
    }
    .art-body h2::before {
        background: #000 !important; /* Remplace la barre rose par du noir */
    }

    /* 5. On affiche le titre "Caché" que l'on a ajouté en HTML */
    .print-only-title {
        display: block !important;
        font-size: 24pt !important;
        font-family: sans-serif;
        border-bottom: 2px solid #000;
        margin-bottom: 20px;
        padding-bottom: 10px;
        color: #000;
    }
}













/* --- MAIN CONTAINER --- */
.art-main-wrapper {
    max-width: 1250px; /* Un poil plus large pour respirer */
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

/* --- CONTENT AREA (Embellie) --- */
.art-content-area {
    background: rgba(20, 20, 25, 0.6); /* Fond très léger */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); /* Profondeur */
    backdrop-filter: blur(10px);
}

.art-body {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* --- SIDEBAR (Mise en relief totale) --- */
.art-sidebar { 
    position: relative; 
}

.art-sidebar-inner { 
    position: sticky; 
    top: 120px; /* Mieux centré lors du scroll */
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

/* Les blocs à l'intérieur de la sidebar */
.art-widget {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 20, 0.9));
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet 3D léger au survol d'un widget */
.art-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(17, 205, 212, 0.1);
    border-color: rgba(17, 205, 212, 0.3);
}

.art-widget-title {
    font-family: var(--font-stack); 
    font-size: 16px; 
    font-weight: 800; 
    text-transform: uppercase;
    margin-bottom: 25px; 
    padding-bottom: 10px; 
    color: #fff;
    position: relative;
}

/* Barre sous le titre de widget plus moderne */
.art-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    border-radius: 3px;
}






/* --- Recherche --- */
.art-search-form { position: relative; }

.art-search-input { 
    width: 100%; 
    background: rgba(0,0,0,0.5); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 15px 50px 15px 20px; 
    border-radius: 50px; /* Champ arrondi très élégant */
    color: #fff; 
    font-family: inherit; 
    transition: 0.3s;
}

.art-search-input:focus { 
    outline: none; 
    border-color: var(--cyan); 
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.3);
    background: rgba(0,0,0,0.8);
}

.art-search-btn { 
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    background: none; 
    border: none; 
    color: var(--cyan); 
    cursor: pointer; 
    font-size: 16px;
    transition: 0.3s;
}
.art-search-btn:hover { color: var(--pink); transform: translateY(-50%) scale(1.1); }

/* --- À la une (Mini posts) --- */
.art-mini-post { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    cursor: pointer; 
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s;
}
.art-mini-post:last-child { margin-bottom: 0; }

.art-mini-post:hover { 
    background: rgba(255,255,255,0.05); 
}

.art-mini-post:hover .art-mini-title { color: var(--cyan); }
.art-mini-post:hover .art-mini-thumb { transform: scale(1.05); }

.art-mini-thumb { 
    width: 70px; height: 70px; 
    border-radius: 8px; 
    object-fit: cover; 
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.art-mini-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.art-mini-title { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 5px; transition: 0.3s; color: white; }
.art-mini-date { font-size: 10px; color: var(--pink); font-weight: 600; text-transform: uppercase;}

















/* --- COMMENTS SECTION --- */
.art-comments-section { 
    max-width: 900px; 
    margin: 60px auto 100px; 
    padding: 0 20px; 
}

.art-comment-form-wrapper { 
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.9), rgba(10, 10, 15, 0.9));
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.08); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.art-input-field { 
    width: 100%; 
    background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 15px 20px; 
    color: #fff; 
    border-radius: 8px; 
    font-family: inherit; 
    transition: all 0.3s ease;
}

.art-input-field:focus { 
    outline: none; 
    border-color: var(--cyan); 
    background: rgba(0,0,0,0.6);
    box-shadow: 0 5px 20px rgba(17, 205, 212, 0.2);
    transform: translateY(-2px); /* L'input "se soulève" quand on tape dedans */
}

.art-submit-btn {
    background: linear-gradient(90deg, var(--cyan), #0ab5bc); 
    color: #000; 
    padding: 15px 40px; 
    font-weight: 800; 
    border: none; 
    border-radius: 50px; /* Bouton très arrondi */
    cursor: pointer; 
    text-transform: uppercase; 
    font-family: var(--font-stack); 
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(17, 205, 212, 0.3);
}

.art-submit-btn:hover { 
    background: #fff; 
    box-shadow: 0 10px 30px rgba(255,255,255,0.4); 
    transform: translateY(-3px);
}


















 .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; }
        .filter-btn a { text-decoration: none; color: inherit; display: block; width: 100%; height: 100%; }























/* --- MODALE NEWSLETTER --- */
.nlt-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nlt-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nlt-modal-card {
    background: linear-gradient(145deg, #1a1a20, #0a0a0c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.nlt-modal-overlay.active .nlt-modal-card {
    transform: scale(1);
}

.nlt-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.nlt-icon.success { color: var(--cyan); }
.nlt-icon.error { color: #ff3333; }
.nlt-icon.info { color: #ffcc00; }

.nlt-modal-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.nlt-modal-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.nlt-close-btn {
    background: var(--cyan);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.nlt-close-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 205, 212, 0.4);
}










































/* --- Animation de battement pour le badge --- */
.badge-styled {
    animation: pulse-sly 2s infinite;
    transform-origin: center;
}

@keyframes pulse-sly {
    0%, 100% { transform: translateY(-30px) rotate(-3deg) scale(1); }
    50% { transform: translateY(-30px) rotate(-3deg) scale(1.05); }
}

/* --- Style du lien de secours --- */
.ha-fallback-link {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(17, 205, 212, 0.05);
    border: 1px dashed var(--cyan);
    border-radius: 10px;
}

.ha-fallback-link p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.ha-fallback-link a {
    color: var(--cyan);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.ha-fallback-link a:hover {
    color: var(--pink);
}

/* Optionnel : cacher le lien sur desktop si l'iframe marche bien */
@media (min-width: 992px) {
    .ha-fallback-link {
        display: none;
    }
}










































        /* Barre de recherche (Filtre) */
       /* Barre de recherche (Filtre) */
.history-filter-bar {
    background: rgba(10, 10, 10, 0.95); /* Plus opaque pour ne pas voir le texte derrière */
    backdrop-filter: blur(15px);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 60px; /* À ajuster : doit correspondre à la hauteur de ton header (.global-header) */
    z-index: 100; /* Assez haut pour passer au dessus de la timeline */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Ajoute de l'ombre pour la profondeur */
}

        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #1a1a1a;
            padding: 5px 15px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .filter-input {
            background: transparent;
            border: none;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            padding: 8px;
            outline: none;
            color-scheme: dark; /* Pour les icônes calendrier en blanc */
        }

        .btn-search {
            background: linear-gradient(45deg, #ff0055, #ff5500);
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .btn-search:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
        }

        /* Timeline Container */
        .timeline-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px 80px 20px;
            position: relative;
        }

        /* La ligne verticale */
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50px; /* Position de la ligne */
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #ff0055, transparent);
            opacity: 0.3;
            z-index: 0;
        }

        /* Item unique */
        .history-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
        }

    
        /* Heure à gauche */
        .h-time {
            width: 80px;
            text-align: right;
            padding-right: 20px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        /* Carte Contenu */
      .h-card {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 10px 20px rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

        .h-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            border-color: rgba(255, 0, 85, 0.3);
        }

        .h-cover {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            flex-shrink: 0;
        }

        .h-info {
            display: flex;
            flex-direction: column;
        }

        .h-artist {
            font-size: 0.85rem;
            color: #aaa;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 4px;
            letter-spacing: 1px;
        }

        .h-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        
        /* Badge "En ce moment" si c'est le premier item et qu'on ne filtre pas le passé */
        .history-item:first-child .h-time {
            color: #ff0055;
            text-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
        }

        /* Responsive Mobile */
        @media (max-width: 600px) {
            .history-filter-bar {
                flex-direction: column;
                gap: 10px;
            }
            .filter-group { width: 100%; justify-content: space-between; }
            .filter-input { width: 100%; }
            .btn-search { width: 100%; }

            .timeline-container::before { left: 20px; }
            .h-time { 
                width: auto; 
                position: absolute; 
                top: -10px; 
                left: 60px; 
                background: #000; 
                padding: 2px 8px; 
                border-radius: 4px;
                font-size: 0.8rem;
                z-index: 10;
            }
            .history-item { margin-top: 25px; }
            .h-card { margin-left: 30px; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }



























/* Conteneur de l'image avec overlay play */
.h-cover-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.h-cover-wrapper .play-mini {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.h-cover-wrapper:hover .play-mini {
    opacity: 1;
}

/* Badge Statistiques */
.h-stats {
    font-size: 11px;
    color: var(--cyan);
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Actions à droite */
.h-actions {
    margin-left: auto;
    display: flex;
    gap: 15px;
    align-items: center;
}

.h-btn-yt, .h-btn-google {
    font-size: 18px;
    transition: 0.3s;
    opacity: 0.3;
}

.h-btn-yt { color: #FF0000; }
.h-btn-google { color: #fff; }

.h-btn-yt:hover, .h-btn-google:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* État de lecture */
.btn-action.playing i {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}





















        .chart-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* --- PODIUM (Top 3) --- */
        .podium-section {
            display: flex;
            justify-content: center;
            align-items: flex-end; /* Aligner en bas pour l'effet escalier */
            gap: 20px;
            margin-bottom: 60px;
            margin-top: 20px;
        }

        .podium-card {
            position: relative;
            text-align: center;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .podium-card:hover { transform: translateY(-10px); }

        /* Ordre visuel : 2 - 1 - 3 */
        .podium-card.rank-1 { order: 2; z-index: 10; width: 220px; }
        .podium-card.rank-2 { order: 1; width: 180px; opacity: 0.9; }
        .podium-card.rank-3 { order: 3; width: 170px; opacity: 0.8; }

        .p-cover-box {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 15px;
        }

        .podium-card.rank-1 .p-cover-box { border: 2px solid #FFD700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
        .podium-card.rank-2 .p-cover-box { border: 2px solid #C0C0C0; }
        .podium-card.rank-3 .p-cover-box { border: 2px solid #CD7F32; }

        .p-cover { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }

        .rank-badge {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.2rem;
            border: 2px solid white;
        }
        
        .rank-1 .rank-badge { background: #FFD700; color: #000; border-color: #FFD700; width: 50px; height: 50px; font-size: 1.5rem; }
        .rank-2 .rank-badge { background: #C0C0C0; color: #000; border-color: #C0C0C0; }
        .rank-3 .rank-badge { background: #CD7F32; color: #000; border-color: #CD7F32; }

        .p-info h3 { font-size: 1.1rem; margin: 0; font-weight: 800; text-transform: uppercase; margin-top: 10px; }
        .p-info p { font-size: 0.9rem; color: #aaa; margin: 5px 0 0 0; }

        /* --- LISTE (4 à 30) --- */
        .chart-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .chart-row {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 20px;
            border-radius: 10px;
            transition: background 0.2s;
            border: 1px solid transparent;
        }
        .chart-row:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .c-rank {
            font-size: 1.5rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.2);
            width: 50px;
            text-align: center;
        }
        .c-thumb {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            margin: 0 20px;
            object-fit: cover;
        }
        .c-info { flex-grow: 1; }
        .c-title { font-weight: 700; font-size: 1rem; }
        .c-artist { font-size: 0.85rem; color: #aaa; text-transform: uppercase; }
        
        .c-actions { opacity: 0; transition: opacity 0.2s; }
        .chart-row:hover .c-actions { opacity: 1; }
        
        .btn-play-mini {
            width: 35px; height: 35px; border-radius: 50%;
            background: #ff0055; color: white; border: none;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .podium-section { flex-direction: column; align-items: center; gap: 40px; }
            .podium-card { width: 100% !important; max-width: 250px; order: initial !important; }
            /* On remet l'ordre 1, 2, 3 sur mobile */
            .podium-card.rank-1 { order: 1 !important; }
            .podium-card.rank-2 { order: 2 !important; }
            .podium-card.rank-3 { order: 3 !important; }
            
            .c-rank { font-size: 1.2rem; width: 30px; }
            .c-thumb { margin: 0 10px; }
            .c-actions { opacity: 1; } /* Toujours visible sur mobile */
        }

















        /* Podium Play Overlay */
.p-cover-box { position: relative; overflow: hidden; border-radius: 15px; }

.p-play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    backdrop-filter: blur(3px);
}

.podium-card:hover .p-play-overlay { opacity: 1; }

.play-podium {
    background: var(--cyan);
    color: #000;
    border: none;
    width: 60px; height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transform: scale(0.8);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-podium:hover { transform: scale(1) rotate(5deg); background: #fff; }

/* Liste Rows Play */
.btn-action.play-row, .btn-action.play-hit {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 35px; height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-action.play-row:hover, .btn-action.play-hit:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: scale(1.1);
}

/* Hit Thumb Wrapper (Petites listes) */
.hit-thumb-wrapper { position: relative; width: 40px; height: 40px; margin-right: 15px; }
.play-hit {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100% !important;
    font-size: 10px !important;
    opacity: 0;
}
.hit-thumb-wrapper:hover .play-hit { opacity: 1; }

/* Stats Header */
.stats-header-title {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-weight: 800;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-plays { font-size: 0.8rem; color: #888; font-weight: bold; text-align: right; min-width: 80px; }
.c-plays span { color: var(--cyan); font-size: 0.7rem; text-transform: uppercase; }






















/* Stats sur le Podium */
.p-stat-badge {
    display: inline-block;
    background: rgba(17, 205, 212, 0.15);
    color: var(--cyan);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 10px;
    border: 1px solid rgba(17, 205, 212, 0.3);
}

/* Stats dans les lignes du classement */
.c-stat-mini {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
    font-weight: 600;
}

.chart-row:hover .c-stat-mini {
    color: var(--pink); /* Le texte s'illumine au survol de la ligne */
    transition: 0.3s;
}

/* Ajustement pour aligner les textes dans la colonne info */
.c-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


































        .temp-hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, #050505 100%),
                        url('<?php echo $isUrban ? "../uploads/images/bg-urban.webp" : "../uploads/images/bg-club.webp"; ?>');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .temp-content {
            z-index: 10;
            padding: 20px;
        }

        .radio-logo-temp {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: clamp(60px, 15vw, 150px);
            line-height: 0.8;
            color: transparent;
            -webkit-text-stroke: 2px #fff;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: -5px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
            to { filter: drop-shadow(0 0 30px var(--radio-color)); }
        }

        .teaser-badge {
            background: var(--radio-gradient);
            color: #000;
            font-weight: 800;
            padding: 8px 25px;
            font-size: 1.2rem;
            display: inline-block;
            transform: rotate(-2deg);
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .teaser-text {
            color: #fff;
            font-size: 1.1rem;
            margin-top: 40px;
            max-width: 500px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .back-home {
            margin-top: 50px;
            display: inline-block;
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid var(--radio-color);
            padding-bottom: 5px;
            transition: 0.3s;
        }

        .back-home:hover { color: var(--radio-color); }

        /* Animation de fond (ondes) */
        .waves-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            opacity: 0.3;
        }













































         
        .urban-hero {
            padding: 120px 20px 60px;
            text-align: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--dark-bg));
        }

        .urban-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: clamp(40px, 10vw, 100px);
            color: transparent;
            -webkit-text-stroke: 2px var(--accent-urban);
            text-transform: uppercase;
            line-height: 0.9;
        }

        .urban-badge {
            background: var(--accent-urban);
            color: #000;
            padding: 5px 20px;
            font-weight: 900;
            display: inline-block;
            margin-top: 10px;
            transform: skewX(-10deg);
        }

        /* Réutilisation du design Timeline adapté */
        .urban-history-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .u-card {
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--accent-urban);
            margin-bottom: 20px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            border-radius: 0 12px 12px 0;
            transition: 0.3s;
        }

        .u-card:hover {
            background: rgba(255, 204, 0, 0.05);
            transform: translateX(10px);
        }

        .u-stat {
            font-size: 11px;
            color: var(--accent-urban);
            font-weight: 800;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .btn-urban-play {
            background: var(--accent-urban);
            color: #000;
            border: none;
            width: 40px; height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .btn-urban-play:hover { transform: scale(1.1); background: #fff; }
        
        .btn-urban-play.playing i { color: #000; }
        .btn-urban-play.playing { animation: pulseUrban 1.5s infinite; }

        @keyframes pulseUrban {
            0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
        }







/* 1. Définition de la couleur en haut du fichier */
:root {
    --accent-color: #ffcc00; /* Jaune Urban par défaut, change ici pour le Cyan #11cdd4 si besoin */
}

.temp-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.radio-logo-temp {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(50px, 12vw, 130px);
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    text-transform: uppercase;
    margin: 15px 0;
    letter-spacing: -3px;
}

.teaser-badge {
    background: var(--accent-color); /* Utilisation de la variable */
    color: #000;
    font-weight: 800;
    padding: 10px 30px;
    font-size: 1.1rem;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.teaser-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin: 30px auto;
    max-width: 600px;
    line-height: 1.6;
}

.back-home {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color); /* Correction ici */
    padding-bottom: 5px;
    transition: 0.3s;
}

.back-home:hover {
    color: var(--accent-color);
}






































































 .search-container {
            max-width: 600px;
            margin: 0 auto 50px auto;
            position: relative;
        }
        .artist-search-input {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px 25px;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: 0.3s;
        }
        .artist-search-input:focus {
            background: rgba(255,255,255,0.1);
            border-color: #ff0055;
            box-shadow: 0 0 15px rgba(255,0,85,0.2);
        }

        .artists-grid {
            display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px 20px;
        }

        .artist-card {
            background: #111;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
        }

        .artist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border-color: rgba(255,0,85,0.3);
        }

        .card-img-box {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .artist-card:hover .card-img { transform: scale(1.05); }

        .card-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-genre {
            font-size: 0.75rem;
            color: #ff0055;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .card-name {
            font-size: 1.1rem;
            font-weight: 800;
            margin: 5px 0 15px 0;
            font-family: 'Montserrat', sans-serif;
            color: #fff;
        }

        .card-short-bio {
            font-size: 0.9rem;
            color: #aaa;
            line-height: 1.5;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .btn-bio {
            background: rgba(255,255,255,0.1);
            color: white;
            border: none;
            padding: 8px;
            width: 100%;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.2s;
            text-transform: uppercase;
            font-size: 0.7rem;
        }
        .btn-bio:hover { background: #ff0055; }

        /* --- MODAL ESTHÉTIQUE CORRIGÉE (SCROLL FIXE) --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0; visibility: hidden;
            transition: 0.3s;
            display: flex; align-items: center; justify-content: center;
            padding: 20px;
        }
        
        .modal-overlay.active { opacity: 1; visibility: visible; }

        .modal-box {
            background: #111;
            width: 100%;
            max-width: 900px;
            
            /* HAUTEUR FIXE POUR LA MODALE */
            height: 85vh; 
            max-height: 85vh;

            border-radius: 20px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.8);
            border: 1px solid rgba(255,255,255,0.1);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            
            /* FLEXBOX POUR GÉRER LE SCROLL INTERNE */
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Important : on coupe ce qui dépasse de la boite principale */
        }
        
        .modal-overlay.active .modal-box { transform: scale(1); }

        .modal-header {
            height: 350px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0; /* Le header ne doit jamais rétrécir */
        }
        
        .modal-cover-bg {
            width: 100%; height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        }

        .modal-close-btn {
            position: absolute; top: 20px; right: 20px;
            background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 40px; height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s;
        }
        .modal-close-btn:hover { background: #ff0055; border-color: #ff0055; transform: rotate(90deg); }

        .modal-title-block {
            position: absolute;
            bottom: 20px; left: 30px;
            z-index: 5;
        }
        
        .modal-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        .modal-meta {
            display: flex; gap: 15px; align-items: center;
        }
        
        .meta-tag {
            background: rgba(255,0,85,0.8);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .meta-flag { width: 25px; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

        /* Le corps de la modale devient flexible */
        .modal-body {
            padding: 30px 40px;
            color: #ddd;
            font-size: 1.05rem;
            line-height: 1.8;
            
            /* Prend tout l'espace restant sous le header */
            flex: 1; 
            display: flex;
            flex-direction: column;
            overflow: hidden; /* Empêche le double scroll */
        }

        /* La div du texte : C'est elle qui scrolle ! */
        #m-bio-text {
            flex: 1; /* Prend l'espace disponible */
            overflow-y: auto; /* Active l'ascenseur ICI seulement */
            padding-right: 15px; /* Pour éviter que le texte touche la scrollbar */
        }

        /* Design de la scrollbar pour Chrome/Safari/Edge */
        #m-bio-text::-webkit-scrollbar { width: 8px; }
        #m-bio-text::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
        #m-bio-text::-webkit-scrollbar-thumb { background: #ff0055; border-radius: 4px; }
        #m-bio-text::-webkit-scrollbar-thumb:hover { background: #d40047; }

        .modal-stats {
            display: flex; gap: 30px; 
            margin-top: 20px; padding-top: 20px; 
            border-top: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0; /* Les stats restent fixes en bas */
        }
        .stat-item { text-align: center; }
        .stat-val { display: block; font-size: 1.5rem; font-weight: 800; color: white; }
        .stat-label { font-size: 0.8rem; color: #888; text-transform: uppercase; }

        @media (max-width: 768px) {
            .modal-header { height: 200px; }
            .modal-name { font-size: 1.8rem; }
            .modal-body { padding: 20px; }
            .modal-box { height: 95vh; max-height: 95vh; } /* Plus grand sur mobile */
        }
        /* --- PAGINATION --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.page-num {
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.page-num.active, .page-num:hover {
    background: #ff0055;
}








.modal-share-box {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.btn-share-artist {
    background: rgba(17, 205, 212, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-share-artist:hover {
    background: var(--cyan);
    color: #000;
}

.btn-share-artist.success {
    border-color: #2ecc71;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}






















        /* --- RECHERCHE --- */
        .search-container {
            max-width: 600px;
            margin: 0 auto 50px auto;
            position: relative;
        }
        .lyrics-search-input {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px 25px;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            outline: none;
            transition: 0.3s;
        }
        .lyrics-search-input:focus {
            background: rgba(255,255,255,0.1);
            border-color: #ff0055;
            box-shadow: 0 0 15px rgba(255,0,85,0.2);
        }

        /* --- GRID DES PAROLES --- */
        .lyrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px 20px;
        }

        .lyrics-card {
            background: #151515;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 15px;
            gap: 15px;
        }

        .lyrics-card:hover {
            transform: scale(1.02);
            background: #1a1a1a;
            border-color: #ff0055;
        }

        .l-thumb {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
            background: #222;
        }

        .l-info {
            flex: 1;
            overflow: hidden;
        }

        .l-title {
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            margin-bottom: 2px;
        }

        .l-artist {
            font-size: 0.85rem;
            color: #ff0055;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* --- MODALE LYRICS --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(15px);
            z-index: 1000;
            opacity: 0; visibility: hidden;
            transition: 0.3s;
            display: flex; align-items: center; justify-content: center;
            padding: 20px;
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }

        .modal-box {
            background: #111;
            width: 100%;
            max-width: 800px;
            height: 85vh;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }

        .modal-header {
            padding: 40px;
            background: linear-gradient(to bottom, rgba(255,0,85,0.1), transparent);
            text-align: center;
            flex-shrink: 0;
        }

        .m-artist { font-size: 0.9rem; color: #ff0055; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
        .m-title { font-size: 2.2rem; font-weight: 900; margin-top: 5px; font-family: 'Montserrat'; }

        .modal-body {
            flex: 1;
            overflow-y: auto;
            padding: 0 40px 40px 40px;
            text-align: center;
        }

        /* TYPOGRAPHIE DES PAROLES */
        #m-lyrics-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #ccc;
            white-space: pre-line; /* RESPECTE LES SAUTS DE LIGNE */
            font-weight: 400;
        }

        /* SCROLLBAR STYLE */
        .modal-body::-webkit-scrollbar { width: 6px; }
        .modal-body::-webkit-scrollbar-track { background: transparent; }
        .modal-body::-webkit-scrollbar-thumb { background: #ff0055; border-radius: 10px; }

        .modal-close {
            position: absolute; top: 20px; right: 20px;
            background: rgba(255,255,255,0.05);
            border: none; color: white; width: 40px; height: 40px; border-radius: 50%;
            cursor: pointer; z-index: 10; transition: 0.2s;
        }
        .modal-close:hover { background: #ff0055; transform: rotate(90deg); }

        @media (max-width: 768px) {
            .m-title { font-size: 1.6rem; }
            .modal-body { padding: 0 20px 20px 20px; }
            #m-lyrics-text { font-size: 1.1rem; }
        }


































        .alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 20px;
}
.alpha-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.alpha-btn.active, .alpha-btn:hover {
    background: var(--cyan);
    color: #000;
}
.lyrics-card.hidden { display: none; }

































/* --- Grille et Cartes Lyrics --- */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.lyrics-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lyrics-card:hover {
    background: rgba(17, 205, 212, 0.05);
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Force les pochettes en carré parfait */
.l-thumb-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Carré parfait moderne */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #1a1a1a;
}

.l-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Remplit sans déformer */
    transition: transform 0.5s ease;
}

.lyrics-card:hover .l-thumb {
    transform: scale(1.1);
}

/* Infos Titre et Artiste */
.l-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.l-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Coupe le texte trop long avec "..." */
}

.l-artist {
    color: var(--cyan);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Gestion de l'affichage JS */
.lyrics-card.hidden {
    display: none !important;
}

/* --- Navigation Alphabétique --- */
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 30px auto;
    max-width: 1000px;
}

.alpha-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.alpha-btn:hover, .alpha-btn.active {
    background: var(--cyan);
    color: #000;
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .lyrics-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile */
        gap: 15px;
        padding: 10px;
    }
    
    .alpha-btn {
        width: 38px; /* Plus gros sur mobile pour le clic au doigt */
        height: 38px;
    }
}




























.loader-lyrics {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: var(--cyan);
}









.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.btn-like-action {
    background: rgba(211, 23, 148, 0.1);
    border: 1px solid #d31794;
    color: #d31794;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-like-action:hover {
    background: #d31794;
    color: #fff;
}

.btn-like-action.liked {
    background: #d31794;
    color: #fff;
    transform: scale(1.1);
}

.loader-bio {
    text-align: center;
    padding: 40px;
    color: #d31794;
    font-size: 1.5rem;
}

















.error-page {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at center, #1a1a20 0%, #050505 100%);
            padding: 20px;
        }

        .error-container {
            max-width: 600px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            backdrop-filter: blur(15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        }

        .error-code {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: clamp(80px, 15vw, 150px);
            line-height: 1;
            background: linear-gradient(to bottom, var(--cyan), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            filter: drop-shadow(0 0 15px rgba(17, 205, 212, 0.3));
        }

        .error-message {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .error-text {
            color: #aaa;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--cyan);
            color: #000;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 800;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-back:hover {
            background: #fff;
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(17, 205, 212, 0.4);
        }

        /* Animation d'ondes radio en fond */
        .wave {
            position: absolute;
            border: 2px solid var(--pink);
            opacity: 0;
            border-radius: 50%;
            animation: pulse 4s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% { width: 0; height: 0; opacity: 0.5; }
            100% { width: 800px; height: 800px; opacity: 0; }
        }
























         .twitch-hero {
            padding-top: 120px;
            background: linear-gradient(180deg, rgba(145, 71, 255, 0.1) 0%, #050505 100%);
            min-height: 90vh;
        }

        .twitch-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Aspect ratio 16/9 pour le player */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.35%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.8), 0 0 20px rgba(145, 71, 255, 0.3);
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .twitch-info {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(145, 71, 255, 0.2);
        }

        .t-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .t-icon {
            font-size: 2.5rem;
            color: #9147ff; /* Couleur Twitch */
        }

        .t-status {
            background: #ff0000;
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .btn-twitch-follow {
            background: #9147ff;
            color: #fff;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-twitch-follow:hover {
            background: #772ce8;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .twitch-hero { padding-top: 100px; }
        }







        

        .chat-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 80px 20px;
            min-height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .chat-placeholder {
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px dashed rgba(255, 255, 255, 0.1);
            padding: 60px;
            border-radius: 24px;
            width: 100%;
        }

        .chat-placeholder i {
            font-size: 4rem;
            color: #ff0055;
            margin-bottom: 20px;
            opacity: 0.5;
        }








        
        .request-container { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

        /* Alertes */
        .alert { padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: center; font-weight: 600; }
        .alert.success { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
        .alert.error { background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }

        /* Search Bar */
        .search-box-large {
            background: #151515; border: 2px solid rgba(255, 255, 255, 0.1);
            padding: 20px; border-radius: 15px; display: flex; gap: 10px; margin-bottom: 40px;
        }
        .search-box-large input {
            flex: 1; background: transparent; border: none; color: white; font-size: 1.2rem; outline: none;
        }

        /* Results */
        .song-result {
            display: flex; align-items: center; background: rgba(255,255,255,0.03);
            padding: 15px; border-radius: 12px; margin-bottom: 10px; transition: 0.3s;
            border: 1px solid transparent;
        }
        .song-result:hover { background: rgba(255,255,255,0.08); border-color: #ff0055; }

        .s-cover { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; margin-right: 20px; }
        .s-info { flex: 1; }
        .s-title { font-weight: 800; font-size: 1.1rem; display: block; }
        .s-artist { font-size: 0.9rem; color: #ff0055; text-transform: uppercase; font-weight: 600; }

        .btn-request {
            background: #ff0055; color: white; border: none; padding: 10px 20px;
            border-radius: 50px; cursor: pointer; font-weight: 800; font-size: 0.8rem;
        }

        /* Modal */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
            z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal-overlay.active { display: flex; }
        .modal-box {
            background: #111; width: 100%; max-width: 500px; padding: 30px;
            border-radius: 20px; border: 1px solid rgba(255,255,255,0.1);
        }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #aaa; }
        .form-control {
            width: 100%; background: #222; border: 1px solid #333; padding: 12px;
            border-radius: 8px; color: white; outline: none;
        }
        .form-control:focus { border-color: #ff0055; }
        .btn-send { width: 100%; background: #ff0055; color: white; border: none; padding: 15px; border-radius: 8px; font-weight: 800; cursor: pointer; }
    









                .search-box-large {
            display: flex;
            width: 100%;
            max-width: 800px;
            margin: 0 auto 30px auto;
            background: rgba(255,255,255,0.05);
            border: 2px solid #ff0055;
            border-radius: 50px;
            padding: 10px 25px;
        }
        .search-box-large form { display: flex; flex: 1; }
        .search-box-large input {
            width: 100%; /* Utilise toute la largeur disponible */
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.2rem;
            outline: none;
            padding: 5px 10px;
        }

        /* Suggestions si vide (Point 3) */
        .no-results-box {
            text-align: center;
            padding: 40px;
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            border: 1px dashed rgba(255,255,255,0.1);
        }
        .suggest-link { color: #ff0055; text-decoration: none; font-weight: bold; }
        .btn-manual {
            margin-top: 15px;
            background: #fff; color: #000;
            border: none; padding: 10px 20px;
            border-radius: 5px; cursor: pointer; font-weight: 600;
        }
        .manual-form { display: none; margin-top: 20px; animation: fadeIn 0.3s; }
        @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }



































        
        .suggest-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px 20px 80px 20px;
        }

        /* Alertes */
        .alert { padding: 20px; border-radius: 12px; margin-bottom: 30px; text-align: center; font-weight: 600; }
        .alert.success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.3); }
        .alert.error { background: rgba(231, 76, 60, 0.1); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }

        /* Card Formulaire */
        .suggest-card {
            background: #111;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .suggest-intro { text-align: center; margin-bottom: 35px; }
        .suggest-intro i { font-size: 3rem; color: #ff0055; margin-bottom: 15px; }
        .suggest-intro h3 { font-family: 'Montserrat'; font-weight: 800; font-size: 1.5rem; margin-bottom: 10px; }
        .suggest-intro p { color: #888; font-size: 0.95rem; line-height: 1.5; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
        
        .form-control {
            width: 100%;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 12px;
            color: white;
            font-family: 'Inter';
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .form-control:focus { 
            border-color: #ff0055; 
            background: rgba(255,255,255,0.07); 
            box-shadow: 0 0 15px rgba(255,0,85,0.1); 
        }

        .btn-submit-suggest {
            width: 100%;
            background: linear-gradient(45deg, #ff0055, #ff5500);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-weight: 900;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.3s;
            margin-top: 10px;
        }
        .btn-submit-suggest:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 10px 20px rgba(255, 0, 85, 0.4); 
        }

        /* Flex row pour Artiste / Titre */
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

        @media (max-width: 600px) {
            .form-row { grid-template-columns: 1fr; }
            .suggest-card { padding: 25px; }
        }














             /* Petite animation pour le disque */
        .fa-spin-slow {
            animation: fa-spin 5s infinite linear;
        }






            body { background-color: #0a0a0a; color: #fff; }
        .dedi-container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
        .alert { padding: 15px; border-radius: 10px; margin-bottom: 20px; text-align: center; font-size: 0.9rem; font-weight: 600; }
        .alert.success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.2); }
        .alert.error { background: rgba(231, 76, 60, 0.1); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.2); }
        .dedi-form-box { background: #111; padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); height: fit-content; position: sticky; top: 100px; }
        .dedi-form-box h3 { font-family: 'Montserrat'; font-weight: 800; margin-bottom: 20px; color: #ff0055; font-size: 1.4rem; }
        .form-group { margin-bottom: 15px; }
        .form-group label { display: block; margin-bottom: 8px; font-size: 0.8rem; color: #888; text-transform: uppercase; font-weight: 700; }
        .form-control { width: 100%; background: #1a1a1a; border: 1px solid #333; padding: 12px; border-radius: 10px; color: white; outline: none; transition: 0.3s; }
        .form-control:focus { border-color: #ff0055; background: #222; }
        .btn-dedi { width: 100%; background: #ff0055; color: white; border: none; padding: 15px; border-radius: 10px; font-weight: 800; cursor: pointer; transition: 0.3s; margin-top: 10px; }
        .btn-dedi:hover { background: #d40047; transform: translateY(-2px); }
        .dedi-wall { display: flex; flex-direction: column; gap: 20px; }
        .dedi-wall h3 { font-family: 'Montserrat'; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .dedi-wall h3 span { color: #ff0055; }
        .dedi-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; position: relative; transition: 0.3s; }
        .dedi-card::before { content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 15px; right: 20px; color: rgba(255,0,85,0.1); font-size: 1.5rem; }
        .dedi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .dedi-pseudo { font-weight: 800; color: #ff0055; font-size: 1.1rem; }
        .dedi-date { font-size: 0.75rem; color: #555; font-weight: 600; }
        @media (max-width: 800px) { .dedi-container { grid-template-columns: 1fr; } .dedi-form-box { position: static; } }
    
         .contact-wrapper { max-width: 1100px; margin: 0 auto; padding: 40px 20px 80px 20px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
        .alert { padding: 20px; border-radius: 12px; margin-bottom: 30px; text-align: center; font-weight: 600; }
        .alert.success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.3); }
        .alert.error { background: rgba(231, 76, 60, 0.1); color: #e74c3c; border: 1px solid rgba(231, 76, 60, 0.3); }
        .contact-info h3 { font-family: 'Montserrat'; font-weight: 900; font-size: 2rem; margin-bottom: 20px; color: #ff0055; }
        .contact-info p { color: #aaa; line-height: 1.6; margin-bottom: 30px; }
        .info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        .info-item i { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ff0055; font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1); }
        .info-text span { display: block; font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
        .info-text strong { display: block; font-size: 1.1rem; color: #fff; }
        .contact-form-card { background: #111; padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #888; font-size: 0.9rem; }
        .form-control { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 12px; color: white; font-family: 'Inter'; outline: none; transition: 0.3s; }
        .form-control:focus { border-color: #ff0055; background: rgba(255,255,255,0.07); box-shadow: 0 0 15px rgba(255,0,85,0.1); }
        .btn-send-contact { width: 100%; background: linear-gradient(45deg, #ff0055, #ff5500); color: white; border: none; padding: 18px; border-radius: 12px; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
        .btn-send-contact:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3); }
        @media (max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; } .contact-info { text-align: center; } .info-item { justify-content: center; } }
    
        /* --- ESPACE LÉGAL --- */
.legal-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--pink); /* Assure-toi que --pink est défini */
    border-color: var(--pink);
    transform: translateY(-3px);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.legal-section {
    background: var(--card-bg); /* #13131a */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 60px;
    scroll-margin-top: 120px; /* Important pour les ancres */
}

.legal-section:hover {
    border-color: rgba(17, 205, 212, 0.3);
}

.legal-content h3 {
    color: var(--cyan); /* #11cdd4 */
    margin: 30px 0 15px 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.legal-content p {
    color: #aaa;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul li {
    color: #aaa;
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.legal-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pink);
}

.contact-box {
    background: rgba(17, 205, 212, 0.05);
    border: 1px dashed var(--cyan);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}





























/* Style du bouton Retour en haut */
#backToTop {
    position: fixed;
    bottom: 85px; /* Hauteur demandée */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0055, #d31794);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Caché par défaut */
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(211, 23, 148, 0.4);
    transition: all 0.3s ease;
    font-size: 20px;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(211, 23, 148, 0.6);
    background: linear-gradient(45deg, #d31794, #ff0055);
}

/* Animation d'apparition */
@keyframes fadeInBTT {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}


























.archive-hero { position: relative; overflow: hidden; min-height: 350px; display: flex; align-items: center; justify-content: center; }
.art-hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.header-styled { position: relative; z-index: 3; text-align: center; }
.hero-overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.8) 100%); z-index: 2; }


.support-hero { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; background: #000; }
.support-hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.support-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 100%); z-index: 2; }
.support-hero .header-styled { position: relative; z-index: 3; }

.phone-screen { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.sponsored-visual { position: relative; display: flex; justify-content: center; align-items: center; }
/* La classe art-hero-bg-img que nous avons créée précédemment servira ici aussi */

.history-hero { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center; background: #000; }
.time-img { width: 100%; height: auto; border-radius: 12px; margin: 15px 0; object-fit: cover; }
/* Utilise la classe art-hero-bg-img définie précédemment pour la bannière */

.contact-hero { position: relative; overflow: hidden; min-height: 350px; display: flex; align-items: center; justify-content: center; background: #000; }
.contact-hero-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.contact-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 100%); z-index: 2; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; max-width: 1100px; margin: -50px auto 60px; position: relative; z-index: 10; padding: 0 20px; }
@media (max-width: 850px) { .contact-wrapper { grid-template-columns: 1fr; margin-top: 20px; } }

.bg-image-optimized {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Equivalent au background-size: cover */
    object-position: center;
    z-index: 1;
}

.scan-grid, .vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}















































/* --- PROGRESSION PODCAST --- */
#podProgressWrapper {
    width: 100%;
    margin-top: 8px;
}

.pod-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pod-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--cyan);
    border-radius: 4px;
    transition: width 0.1s linear;
}

.pod-time-info {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #aaa;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

/* --- BOUTONS --- */
.vol-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: transform 0.2s ease;
}

.vol-icon:hover {
    transform: scale(1.1);
}















  /* Correction du Hero */
        .podcast-hero {
            position: relative;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
            padding: 40px;
            overflow: hidden;
        }
        
        .hero-cover {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.4) blur(10px);
            transform: scale(1.1);
        }

        .hero-info {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .hero-poster {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: block;
        }

        .hero-text { flex: 1; }
        .hero-show { color: var(--cyan); text-transform: uppercase; font-weight: bold; letter-spacing: 2px; }
        .hero-title { font-size: 3rem; margin: 10px 0; font-family: 'Montserrat', sans-serif; }

        /* Player Custom */
        .custom-player {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            backdrop-filter: blur(5px);
        }

        .play-btn-big {
            background: var(--pink);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: 0.3s;
        }

        .play-btn-big:hover { transform: scale(1.1); background: var(--cyan); }

        .progress-container { flex: 1; }
        .progress-bar {
            height: 6px;
            background: rgba(255,255,255,0.2);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        .progress-fill {
            height: 100%;
            background: var(--cyan);
            width: 0%;
            border-radius: 3px;
        }
        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-top: 8px;
            color: #ccc;
        }

        /* Layout */
        .main-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            padding: 0 20px;
        }

        .article-body h2 { color: var(--cyan); }
        .article-body p { line-height: 1.8; color: #ddd; font-size: 1.1rem; }

        .sidebar { background: #1a1a1a; padding: 25px; border-radius: 15px; height: fit-content; }
        .widget-title { border-left: 4px solid var(--pink); padding-left: 15px; margin-bottom: 25px; }

        @media (max-width: 900px) {
            .main-wrapper { grid-template-columns: 1fr; }
            .hero-info { flex-direction: column; text-align: center; }
            .hero-poster { width: 180px; height: 180px; }
            .hero-title { font-size: 2rem; }
        }




































        