
/****************************************************************************
 * SECTION : QUI SOMMES-NOUS ?
 * -------------------------------------------------------------------------
 * Description : Styles spécifiques à la page de présentation de SLY Radio.
 * Sommaire :
 * 1. Hero Section & Intro
 * 2. Valeurs & Concept
 * 3. Grille de la Team (Compléments)
 ***************************************************************************/

    /* --- SECTION HERO --- */
.about-hero {
    height: 550px; /* 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 */
}

.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%; 
                margin-top: 200;

    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 --- */
        /* --- Navigation Catégories Minimaliste --- */
.filter-bar { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; /* Espace réduit */
    justify-content: center; 
    padding: 10px;
    margin: 0 auto 20px;
    max-width: 900px;
}

.filter-btn a { 
    display: inline-block; 
    color: rgba(255, 255, 255, 0.3); /* Très estompé */
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.72rem; /* Taille très petite */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
    padding: 2px 5px;
}

/* Survol : Simple éclaircissement */
.filter-btn:not(.active) a:hover { 
    color: rgba(255, 255, 255, 0.8);
}

/* État Actif : Soulignement minimaliste couleur SLY */
.filter-btn.active a { 
    color: #fff;
    font-weight: 700;
    border-bottom: 1.5px solid #d31794; /* Barre très fine */
}

/* Responsive Mobile : Encore plus discret */
@media (max-width: 600px) {
    .filter-bar { gap: 8px; }
    .filter-btn a { font-size: 0.65rem; padding: 2px; }
}
        /* --- 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%; }
















/* =========================================
   PAGE EMISSION (SHOW DETAIL)
   ========================================= */

/* Bouton principal du Hero */
.btn-listen-replays {
    background: linear-gradient(45deg, #d31794, #91126a);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(211, 23, 148, 0.4);
}

.btn-listen-replays:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(211, 23, 148, 0.6);
}

/* Badge de date/heure */
.show-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
    backdrop-filter: blur(10px);
}

.show-schedule-badge i { color: var(--cyan); }

/* Description de l'émission */
.show-desc-body {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* WIDGET ANIMATEUR (Sidebar) */
.host-widget {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.host-avatar-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cyan);
    box-shadow: 0 0 20px rgba(17, 205, 212, 0.3);
    padding: 4px;
    background: rgba(0,0,0,0.5);
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.host-widget:hover .host-avatar-img {
    transform: scale(1.05);
}

.host-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.host-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.host-social-links a:hover {
    background: var(--cyan);
    color: #000;
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 205, 212, 0.4);
}

/* SECTION REPLAYS */
.show-replays-wrapper {
    background: #050505;
    padding: 60px 20px 100px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.show-replays-header {
    text-align: center;
    margin-bottom: 50px;
}

.show-replays-header h3 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
}

.replay-premium-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.replay-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.replay-premium-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 0 15px 30px rgba(17, 205, 212, 0.15);
}

.replay-thumb-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.replay-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.replay-premium-card:hover .replay-thumb-wrap img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

/* Bouton Play qui apparaît au centre de l'image */
.play-overlay-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.replay-premium-card:hover .play-overlay-glass {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.replay-info-wrap {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.replay-date {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--pink);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.replay-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.replay-meta {
    margin-top: auto; /* Pousse en bas de la carte */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.replay-duration {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.no-replays-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #666;
}

.no-replays-msg i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .replay-premium-grid { grid-template-columns: 1fr; }
    .show-replays-header h3 { font-size: 2rem; }
}































        
        /* --- 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; }
        }





        .pod-hero {
            position: relative; width: 100%; min-height: 600px; height: 75vh;
            display: flex; align-items: center; justify-content: center;
            background: #000; overflow: hidden; padding-top: 80px;
        }
        .pod-hero-bg {
            position: absolute; inset: -5%;
            background: url('<?php echo $podThumbLg; ?>') center/cover no-repeat;
            filter: blur(30px) brightness(0.3); z-index: 0;
        }
        .pod-hero-container { position: relative; z-index: 1; max-width: 1200px; width: 100%; padding: 0 20px; display: flex; gap: 40px; align-items: flex-end; }
        .pod-cover-wrapper { width: 300px; height: 300px; border-radius: 16px; flex-shrink: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
        .pod-cover-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
















        /* 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;
}




























































/* 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;
}







/* =========================================
   RÈGLES GLOBALES & SÉCURITÉ RESPONSIVE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe { max-width: 100%; height: auto; }

/* =========================================
   PAGE ARTICLE (SINGLE POST & PODCAST)
   ========================================= */
.art-hero {
    position: relative;
    min-height: 600px;
    height: 100vh; /* Ajusté pour éviter les débordements */
    padding-top: 100px;
    padding-bottom: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Fond flou */
.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(15px) brightness(0.4);
    transform: scale(1.1);
}

.art-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.9) 100%);
    z-index: 2;
}

/* Conteneur Hero */
.art-hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    animation: artFadeInUp 0.8s ease-out forwards;
}

.art-hero-poster {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.art-hero-text { flex: 1; }

.art-category {
    display: inline-block;
    background-color: var(--cyan, #11cdd4);
    color: #000;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.4);
}

.art-title {
    font-family: var(--font-head, 'Montserrat', sans-serif);
    font-size: clamp(26px, 5vw, 48px); /* S'adapte dynamiquement */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    word-wrap: break-word; /* Évite de casser la mise en page */
}

/* Meta Data */
.art-meta {
    display: flex;
    flex-wrap: wrap; /* Indispensable pour mobile */
    gap: 15px 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, #11cdd4);
}

/* --- LAYOUT PRINCIPAL --- */
.art-main-wrapper {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.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);
    width: 100%;
    overflow: hidden;
}

/* Formatage du corps de l'article */
.art-body {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    overflow-wrap: break-word;
}

.art-body p { margin-bottom: 25px; }

/* Rend les iframes et images injectées via l'éditeur responsives */
.art-body iframe {
    width: 100% !important;
    max-width: 100%;
    border-radius: 12px;
}
.art-body img {
    border-radius: 12px;
    height: auto !important;
}

.art-body h2 {
    font-family: var(--font-head);
    color: #fff;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    margin: 45px 0 25px;
    border-left: 4px solid var(--pink);
    padding-left: 20px;
}

.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);
}

/* Tags de l'article */
.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.art-tag {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

/* --- SIDEBAR & WIDGETS --- */
.art-sidebar { width: 100%; }

.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);
    width: 100%;
}

.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);
}

.art-action-buttons, .art-share-buttons {
    display: flex;
    flex-wrap: wrap; /* Sécurité mobile */
    gap: 10px;
}

.art-search-form {
    display: flex;
    width: 100%;
}
.art-search-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px 0 0 8px;
    width: 100%;
}
.art-search-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: var(--cyan);
    cursor: pointer;
}

.art-mini-post { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    cursor: pointer;
    transition: transform 0.3s;
}
.art-mini-thumb { 
    width: 70px; 
    height: 70px; 
    border-radius: 8px; 
    object-fit: cover; 
    flex-shrink: 0;
}
.art-mini-title { 
    font-size: 14px; 
    font-weight: 700; 
    color: #fff; 
    line-height: 1.3;
}

/* --- SECTION RELATIVE --- */
.art-related-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.art-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.art-section-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #fff;
    white-space: nowrap;
}

.art-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.art-related-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.art-related-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.art-related-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.art-related-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.art-related-title a { color: #fff; text-decoration: none; }
.art-related-link {
    color: #d31794;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: auto; /* Pousse le bouton en bas */
}

/* --- COMMENTAIRES --- */
.art-comments-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: calc(100% - 40px); /* Sécurité pour les petits écrans */
}

.art-comments-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #fff;
    margin-bottom: 40px;
}

.art-comment-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.art-comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    flex-shrink: 0; /* Évite l'écrasement de l'avatar */
}

.art-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.art-input-field, .art-textarea-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.art-textarea-field { min-height: 150px; resize: vertical; }
.art-submit-btn {
    background: linear-gradient(45deg, #d31794, #91126a);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    width: 100%; /* S'adapte mieux sur mobile */
    max-width: 300px;
}
/* =========================================
   MEDIA QUERIES (RESPONSIVE COMPLET)
   ========================================= */
@media (max-width: 1024px) {
    /* L'arme absolue pour tuer le grid sur mobile */
    .art-main-wrapper {
        display: flex !important;
        flex-direction: column !important;
        padding: 20px !important;
        width: 100% !important;
    }
    
    .art-content-area {
        width: 100% !important;
        padding: 30px 20px;
    }

    .art-sidebar {
        display: block !important;
        width: 100% !important;
        margin-top: 40px;
    }

    .art-sidebar-inner {
        position: relative !important;
        top: 0;
    }
}
@media (max-width: 768px) {
    .art-hero-content-container {
        gap: 20px;
    }
    .art-related-grid {
        grid-template-columns: 1fr;
    }
    .art-comments-section {
        padding: 20px;
        width: 100%;
        border-radius: 0; 
        border-inline: none;
    }
    .art-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .art-hero {
        height: auto;
        padding-top: 130px;
        padding-bottom: 40px;
    }
    .art-content-area {
        padding: 20px;
        border-radius: 0;
        border-inline: none;
    }
    .art-body {
        font-size: 16px; 
    }
    .art-body p:first-of-type::first-letter {
        font-size: 50px;
    }
    .art-comment-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .art-comment-avatar {
        width: 45px; 
        height: 45px;
    }
    .art-submit-btn {
        max-width: 100%; 
    }
}


/* =========================================
   PAGE PODCAST (LECTURE REPLAY)
   ========================================= */

body.podcast-page {
    background-color: #050505;
    color: #f8fafc;
}

/* --- 1. LECTEUR AUDIO DANS LE HERO --- */
.pod-player-ui {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    margin-top: 30px;
    max-width: 600px;
}

.pod-play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--pod-cyan, #06b6d4);
    color: #000;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.pod-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.pod-progress-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pod-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.pod-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.pod-progress-fill {
    height: 100%;
    background: var(--pod-cyan, #06b6d4);
    width: 0%;
    border-radius: 10px;
    position: relative;
    transition: width 0.1s linear;
}

/* --- 2. LAYOUT GRILLE PRINCIPALE --- */
.pod-main-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.pod-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pod-description {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.pod-description a { color: var(--pod-cyan, #06b6d4); text-decoration: none; font-weight: 700; }

/* --- 3. SIDEBAR (ÉPISODES RÉCENTS) --- */
.pod-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pod-related-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.pod-related-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(8px);
    border-color: var(--pod-cyan, #06b6d4);
}

.pod-related-card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.pod-related-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pod-related-title {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.pod-related-date {
    font-size: 0.8rem;
    color: #64748b;
}

/* --- 4. RESPONSIVE --- */
@media (max-width: 992px) {
    .pod-main-grid { grid-template-columns: 1fr; }
    .pod-hero { height: auto; padding-bottom: 60px; }
    .pod-hero-container { flex-direction: column; align-items: center; text-align: center; }
    .pod-cover-wrapper { width: 250px; height: 250px; }
    .pod-player-ui { width: 100%; }
}

/* --- INTEGRATION LECTEUR DANS STYLE ARTICLE --- */
.pod-player-ui {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 25px;
    max-width: 500px;
}

.pod-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cyan, #11cdd4);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(17, 205, 212, 0.3);
}

.pod-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.pod-progress-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pod-times {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
}

.pod-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.pod-progress-fill {
    height: 100%;
    background: var(--cyan, #11cdd4);
    width: 0%;
    border-radius: 2px;
}

/* On ré-aligne les mini-posts pour la sidebar */
.art-mini-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================
   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;
    }
}


































/* --- HERO REVISITÉ --- */
.archive-hero-v2 {
    height: 450px;
    display: flex;
                    margin-top: 300;

    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.4);
    transform: scale(1.1);
}

.hero-content { position: relative; z-index: 2; }

.badge-modern {
    display: inline-block;
    background: #d31794;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* --- FILTRE STICKY GLASS --- */
.history-filter-sticky {
    position: sticky;
    top: 70px;
    z-index: 100;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.filter-glass-form {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.input-wrap { display: flex; align-items: center; gap: 10px; color: #d31794; }
.input-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-family: inherit;
}

.btn-sly-glow {
    background: #d31794;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-sly-glow:hover { box-shadow: 0 0 20px rgba(211, 23, 148, 0.5); transform: scale(1.05); }

/* --- TIMELINE LIST --- */
.history-list {
    max-width: 800px;
    margin: 40px auto 100px;
    padding: 0 20px;
}

.history-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: slyFadeIn 0.6s forwards;
}

.card-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    width: 60px;
    flex-shrink: 0;
}

.card-glass-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
    transition: 0.3s ease;
}

.card-glass-body:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #d31794;
    transform: translateX(10px);
}

.cover-section { position: relative; width: 65px; height: 65px; flex-shrink: 0; }
.cover-section img { width: 100%; height: 100%; border-radius: 8px; object-fit: cover; }

.btn-play-glass {
    position: absolute;
    inset: 0;
    background: rgba(211, 23, 148, 0.6);
    border: none;
    border-radius: 8px;
    color: white;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s;
}
.cover-section:hover .btn-play-glass { opacity: 1; }

/* --- Limite l'artiste sur UNE seule ligne --- */
.track-artist {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #d31794;
    font-weight: 600;
    text-transform: uppercase;
    
    /* Tronquage sur 1 ligne */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Limite le titre sur DEUX lignes --- */
.track-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3; /* Ajustement de l'interligne pour le multiligne */
    
    /* Tronquage sur 2 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Optionnel : fixe une hauteur min si tu veux que toutes les cartes 
       gardent la même taille même si le titre fait 1 ligne */
    min-height: 2.6rem; 
}

/* --- Ajustement du conteneur d'infos --- */
.info-section {
    flex: 1;
    min-width: 0; /* TRÈS IMPORTANT : permet au texte de se couper dans un flexbox */
}

.action-section { display: flex; gap: 15px; font-size: 1.1rem; }
.action-section a { color: rgba(255,255,255,0.2); transition: 0.3s; }
.action-section a:hover { color: #fff; }

@keyframes slyFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .filter-glass-form { flex-direction: column; border-radius: 20px; width: 100%; }
    .history-card { flex-direction: column; align-items: flex-start; gap: 5px; }
    .card-time { width: auto; font-size: 0.9rem; background: #d31794; color: #fff; padding: 2px 10px; border-radius: 4px; }
    .card-glass-body { width: 100%; }
}






















/* 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);
}

































































/* Conteneur principal */
.search-container {
    max-width: 600px;
    margin: -30px auto 50px auto; /* On le fait remonter un peu sur le hero */
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* Wrapper pour positionner l'icône à l'intérieur */
.search-wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
}

/* L'icône loupe positionnée ABSOLUMENT à gauche */
.search-wrapper-inner i {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: 0.3s;
    pointer-events: none; /* L'icône ne gêne pas le clic */
}

/* Le champ de saisie */
.artist-search-input {
    width: 100%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px); /* Effet de verre dépoli */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px 18px 55px; /* Padding gauche plus large pour laisser la place à l'icône */
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* État Focus (quand on clique dedans) */
.artist-search-input:focus {
    background: rgba(20, 20, 20, 0.95);
    border-color: #d31794; /* Ton rose SLY Radio */
    box-shadow: 0 0 20px rgba(211, 23, 148, 0.3), 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px); /* Petit effet de levée */
}

/* Changement de couleur de l'icône au focus */
.search-wrapper-inner:focus-within i {
    color: #d31794;
    transform: scale(1.1);
}

/* Style du Placeholder */
.artist-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Conteneur de l'icône SVG */
.search-icon-svg {
    position: absolute;
    left: 20px;
    width: 20px; /* Taille de l'icône */
    height: 20px;
    color: rgba(255, 255, 255, 0.4); /* Couleur par défaut */
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none; /* L'icône ne bloque pas le clic sur l'input */
}

/* Le champ de saisie (inchangé mais vérifie le padding-left) */
.artist-search-input {
    width: 100%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px 18px 55px; /* 55px pour laisser la place au SVG */
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation au focus : le SVG change de couleur avec l'input */
.search-wrapper-inner:focus-within .search-icon-svg {
    color: #d31794; /* Rose SLY Radio */
    transform: scale(1.1);
}

/* État de l'input au focus */
.artist-search-input:focus {
    border-color: #d31794;
    box-shadow: 0 0 20px rgba(211, 23, 148, 0.2);
}

/* Animation pour mobile */
@media (max-width: 768px) {
    .search-container {
        margin-top: -20px;
    }
    .artist-search-input {
        font-size: 1rem;
        padding: 15px 20px 15px 50px;
    }
}
        .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; }
/* --- BOX PRINCIPALE --- */
.modal-box {
  background: #121212;
    width: 95%;
    max-width: 750px;
    
    /* --- HAUTEUR FIXE LIMITÉE --- */
    height: 600px;        /* Hauteur fixe sur grand écran */
    max-height: 85vh;     /* Ne dépasse jamais 85% de la hauteur de l'écran */
    
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Indispensable pour que le contenu s'organise verticalement */
    overflow: hidden;       /* Empêche la boîte elle-même de scroller */
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- LE FLEX-HEADER (PHOTO + INFOS) --- */
.modal-header-flex {
    display: flex;
    align-items: center; /* Aligne verticalement au centre */
    gap: 30px;
    padding: 40px;
    background: linear-gradient(to right, rgba(211, 23, 148, 0.1), transparent);
}

.profile-photo-wrapper {
    width: 180px; /* Taille réduite */
    height: 180px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-photo-img { width: 100%; height: 100%; object-fit: cover; }

.profile-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-name {
    font-size: 2.2rem; /* Taille plus raisonnable */
    font-weight: 900;
    margin: 8px 0 15px 0;
    line-height: 1;
}

/* --- STATS ET ACTIONS --- */
.modal-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-val { display: block; font-size: 1.2rem; font-weight: 800; color: #11cdd4; }
.stat-label { font-size: 0.7rem; color: #777; text-transform: uppercase; }

.modal-actions { display: flex; gap: 10px; }

.btn-like-action, .btn-share-artist {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn-like-action { background: #d31794; color: white; }
.btn-share-artist { background: #282828; color: white; }

/* --- CORPS DE LA BIO --- */
.modal-body-content {
    padding: 0 40px 40px 40px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bio-title { font-size: 0.9rem; text-transform: uppercase; color: #555; margin-bottom: 10px; }
/* 1. Conteneur du texte qui scrolle */
.bio-text-scroll {
    overflow-y: auto;
    max-height: 250px; /* Ajuste selon tes besoins */
    padding-right: 15px;
    scrollbar-width: thin; /* Pour Firefox */
    scrollbar-color: rgba(211, 23, 148, 0.5) transparent; /* Pour Firefox */
}

/* 2. Design de la barre (Chrome, Safari, Edge) */
.bio-text-scroll::-webkit-scrollbar {
    width: 5px; /* Très fin */
}

/* 3. Le fond de la barre (piste) */
.bio-text-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03); /* Presque invisible */
    border-radius: 10px;
}

/* 4. La partie mobile (le "pouce") */
.bio-text-scroll::-webkit-scrollbar-thumb {
    background: rgba(211, 23, 148, 0.3); /* Rose SLY très transparent par défaut */
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* 5. Effet au survol : devient plus visible */
.bio-text-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(211, 23, 148, 0.8); /* Rose SLY plus intense au survol */
}
/* --- MOBILE (Empilé uniquement sur petit écran) --- */
@media (max-width: 600px) {
    .modal-header-flex { flex-direction: column; text-align: center; padding: 30px 20px; }
    .profile-photo-wrapper { width: 140px; height: 140px; }
    .modal-stats-row { justify-content: center; }
    .modal-actions { justify-content: center; }
}
        /* --- 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);
}





/* --- VARIABLES & BASE --- */
:root {
    --sly-pink: #d31794;
    --sly-cyan: #11cdd4;
    --sly-bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}

body.sly-dark-theme {
    background-color: var(--sly-bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* --- HERO MINIMALISTE --- */
.sly-hero-minimal {
    padding: 120px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(211, 23, 148, 0.15), transparent 40%);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #888;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* --- RECHERCHE --- */
.sly-search-section {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.search-wrapper {
    position: relative;
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.search-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 20px 15px 50px;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sly-pink);
}

/* --- GRILLE D'ARTISTES --- */
.artists-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.sly-artist-card {
    background: transparent;
    transition: 0.4s;
}

.card-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.sly-artist-card:hover .card-overlay { opacity: 1; }
.sly-artist-card:hover img { transform: scale(1.1); }

.open-modal-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: 0.4s;
}

.sly-artist-card:hover .open-modal-btn { transform: translateY(0); }

.genre-tag {
    color: var(--sly-pink);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-name {
    font-family: 'Montserrat';
    font-size: 1.4rem;
    margin-top: 5px;
}

/* --- MODALE --- */
.sly-modal {
    background: #111;
    width: 95%;
    max-width: 900px;
    height: 80vh;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.modal-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: 100%;
}

.modal-sidebar {
    padding: 40px;
    background: #181818;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-square {
    width: 220px; height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.profile-square img { width: 100%; height: 100%; object-fit: cover; }

.modal-stats-group {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat { text-align: center; }
.stat .val { display: block; font-size: 1.5rem; font-weight: 900; }
.stat .lab { font-size: 0.7rem; color: #666; text-transform: uppercase; }

.modal-main {
    padding: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tag-genre { color: var(--sly-pink); font-weight: 800; letter-spacing: 3px; font-size: 0.8rem; }
.modal-artist-title { font-size: 3.5rem; font-family: 'Montserrat'; font-weight: 900; margin: 10px 0; }
.separator { width: 50px; height: 4px; background: var(--sly-cyan); margin-bottom: 30px; }

#m-bio-text {
    flex: 1;
    overflow-y: auto;
    line-height: 1.8;
    color: #aaa;
    padding-right: 20px;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--sly-pink); border-radius: 10px; }

/* --- BOUTON TOP --- */
.sly-top-btn {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--sly-pink);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}
















        /* --- 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;
            margin-top: 200;
            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;
        }
/* =========================================
   PAGE SLY TV (TWITCH & CHAT)
   ========================================= */

.twitch-main-wrapper {
    max-width: 1400px; /* Plus large pour accueillir stream + chat */
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px; /* Vidéo large, Chat étroit */
    gap: 30px;
}

/* Conteneur Vidéo */
.video-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Ratio parfait sans hack */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(145, 71, 255, 0.3); /* Bordure violette Twitch */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(145, 71, 255, 0.1);
}

.video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Barre d'infos sous le player */
.twitch-live-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.t-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-icon-circle {
    width: 50px;
    height: 50px;
    background: #9147ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(145, 71, 255, 0.5);
}

.t-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}

.t-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff0000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.7rem;
    text-transform: uppercase;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker { 50% { opacity: 0; } }

/* Colonne Chat */
.chat-column {
    height: 100%;
    min-height: 500px;
}

.chat-container-glass {
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Placeholder si chat éteint (Style Premium) */
.chat-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.chat-placeholder i {
    font-size: 3rem;
    color: #9147ff;
    margin-bottom: 15px;
    opacity: 0.4;
}

/* Responsivité */
@media (max-width: 1100px) {
    .twitch-main-wrapper {
        grid-template-columns: 1fr; /* On empile sur tablette/mobile */
    }
    .chat-column {
        height: 500px; /* Hauteur fixe pour le chat en dessous */
    }
}





        
        .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;
        }
/* Conteneur pour sortir de la contrainte du grid si nécessaire */
.no-results-container {
    grid-column: 1 / -1; /* Force le bloc à prendre toutes les colonnes du grid */
    width: 100%;
    display: flex;
    justify-content: center;
}

.no-results-box.full-card {
    width: 100%;
    max-width: 800px; /* Optionnel : pour ne pas que ce soit trop large sur écran géant */
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px dashed rgba(211, 23, 148, 0.2); /* Bordure rose pointillée */
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.no-results-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.no-results-box p {
    color: #aaa;
    font-size: 1.1rem;
}

.suggest-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.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;
}


.news-thumbnails .thumb img {
    width: 76px !important;
    height: 76px !important;
    object-fit: cover;
    border-radius: 8px; /* Optionnel, pour le style */
}














































/* --- 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; }
        }
































.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: #1a1a1a;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 15px;
    position: relative;
    overflow-y: auto;
    border: 1px solid #333;
}

.modal-header {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.modal-cover-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title-block {
    position: absolute;
    bottom: 0; left: 0;
    padding: 20px;
    background: linear-gradient(transparent, #1a1a1a);
    width: 100%;
}

.modal-close-btn {
    position: absolute;
    top: 15px; right: 15px;
    background: #d31794;
    color: white;
    border: none;
    width: 35px; height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.modal-body { padding: 30px; }
.bio-full-text { line-height: 1.6; color: #ccc; margin-bottom: 30px; }

.modal-stats { border-top: 1px solid #333; padding-top: 20px; }
.stat-row { display: flex; gap: 40px; margin-bottom: 20px; }
.stat-item { display: flex; flex-direction: column; }
.stat-val { font-weight: bold; font-size: 1.2rem; color: #11cdd4; }
.stat-label { font-size: 0.8rem; color: #777; }

.modal-actions { display: flex; gap: 10px; }
.btn-like-action, .btn-share-artist {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn-like-action { background: #d31794; color: white; }
.btn-share-artist { background: #333; color: white; }



        





/* Style du texte à l'intérieur de la bio */
#m-bio-text b, #m-bio-text strong {
    color: #11cdd4; /* Tes mots importants en Cyan SLY */
    font-weight: 900;
}

#m-bio-text a {
    color: #d31794; /* Tes liens en Rose SLY */
    text-decoration: underline;
    transition: 0.3s;
}

#m-bio-text a:hover {
    color: white;
}

#m-bio-text i, #m-bio-text em {
    font-style: italic;
    opacity: 0.9;
}







/* Conteneur principal qui gère le sticky proprement */
.history-controls-wrapper {
    position: sticky;
    top: 70px; /* Doit correspondre à la hauteur de ton header global */
    z-index: 1000;
    padding: 20px 10px;
    background: rgba(5, 5, 5, 0.9); /* Fond sombre pour ne pas voir la liste derrière */
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sélecteur de flux */
.stream-selector {
    display: flex;
    gap: 10px;
}

.stream-btn {
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.stream-btn.active {
    background: #d31794;
    border-color: #d31794;
    box-shadow: 0 0 15px rgba(211, 23, 148, 0.4);
}

/* Barre de filtrage par date */
.filter-glass-form {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d31794;
}

.input-wrap input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

/* Responsive : On empile tout sur mobile pour éviter les débordements */
@media (max-width: 768px) {
    .history-controls-wrapper {
        position: relative; /* On enlève le sticky sur mobile si c'est trop gros */
        top: 0;
    }
    .filter-glass-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        width: 100%;
    }
    .stream-selector {
        width: 100%;
        justify-content: center;
    }
}




/* --- FIX : Liste déroulante (Select) --- */
select.form-control {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    appearance: none; /* Supprime le style natif OS */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Fix spécifique pour les options à l'intérieur du select */
select.form-control option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* --- STYLE DE LA MODALE --- */
.sly-modal-overlay {
    position: fixed;
    inset: 0;
    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.3s ease;
}

.sly-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sly-modal-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.sly-modal-overlay.active .sly-modal-card {
    transform: translateY(0);
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.btn-modal-close {
    margin-top: 25px;
    background: #d31794;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-modal-close:hover {
    background: #bc47c1;
    transform: scale(1.05);
}





/* Style Rapide pour la Modale de Statut */
        .sly-modal-overlay {
            position: fixed; inset: 0; 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: 0.3s;
        }
        .sly-modal-overlay.active { opacity: 1; visibility: visible; }
        .sly-modal-card {
            background: #151515; border: 1px solid rgba(255,255,255,0.1);
            padding: 40px; border-radius: 20px; text-align: center;
            max-width: 400px; width: 90%; transform: translateY(20px); transition: 0.3s;
        }
        .sly-modal-overlay.active .sly-modal-card { transform: translateY(0); }
        .modal-icon { font-size: 50px; margin-bottom: 20px; }
        .btn-modal-close {
            margin-top: 25px; background: #d31794; color: white; border: none;
            padding: 12px 30px; border-radius: 50px; font-weight: 800; cursor: pointer;
        }


        .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex; /* Affiché quand actif */
}

.modal-card {
    background: #151515;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
}







/* Grille de résultats */
.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.song-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #d31794;
    transform: translateY(-3px);
}

.song-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.song-cover img { width: 100%; height: 100%; object-fit: cover; }

.song-details { flex: 1; min-width: 0; }
.song-title { display: block; font-weight: 800; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-artist { display: block; font-size: 0.85rem; color: #d31794; font-weight: 600; }

.btn-request {
    background: #d31794;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-request:hover { background: #fff; color: #d31794; }
/* Style de la modale de demande */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex; /* Affiché quand on ajoute la classe active */
}

.modal-card {
    background: #151515;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}





/* Layout Global */
.request-wrapper {
    display: flex;
    max-width: 1200px;
    margin: -50px auto 50px; /* Remonte un peu sur le hero */
    padding: 0 20px;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.request-main { flex: 1; min-width: 0; }

/* Sidebar Design */
.request-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.sidebar-card.highlight {
    background: linear-gradient(145deg, rgba(211, 23, 148, 0.1), rgba(0, 0, 0, 0));
    border-color: rgba(211, 23, 148, 0.3);
}

.sidebar-card h3, .sidebar-card h4 {
    margin-top: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.sidebar-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 0;
}

.icon-info {
    color: #d31794;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Placeholder quand vide */
.search-placeholder {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.1);
}
.search-placeholder i { font-size: 4rem; margin-bottom: 20px; }
.search-placeholder p { color: #666; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 992px) {
    .request-wrapper { flex-direction: column; margin-top: 20px; }
    .request-sidebar { width: 100%; order: 2; }
    .request-main { order: 1; }
}








/* Animation fluide de l'apparition des articles */
#articles-wrapper {
    transition: opacity 0.2s ease-in-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.article-row {
    animation: slideIn 0.3s ease-out forwards;
}











/* =========================================
   BOUTON CALL-TO-ACTION (Régie Pub)
   ========================================= */

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d31794, #91126a); /* Rose SLY Premium */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 50px; /* Style Pilule */
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(211, 23, 148, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Effet de rebond élastique */
    margin-top: 15px;
}

/* Effet au survol */
.btn-submit:hover {
    transform: translateY(-5px) scale(1.03); /* Lévitation et léger zoom */
    box-shadow: 0 15px 35px rgba(211, 23, 148, 0.6);
    color: #ffffff;
}

/* =========================================
   SECTION STATISTIQUES (Bannière)
   ========================================= */

.stats-banner {
    position: relative;
    background: rgba(255, 255, 255, 0.02); /* Fond très légèrement éclairci */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 20px;
    margin: 60px 0;
    backdrop-filter: blur(10px); /* Effet Glassmorphism */
    z-index: 5;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

/* Animation au survol de chaque boîte */
.stat-box:hover {
    transform: translateY(-10px);
    border-color: rgba(17, 205, 212, 0.4); /* La bordure devient Cyan au survol */
    background: rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem; /* Très gros pour l'impact visuel */
    line-height: 1;
    margin-bottom: 15px;
    
    /* Dégradé de texte Cyan -> Rose SLY */
    background: linear-gradient(90deg, #11cdd4, #bc47c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Lueur autour des chiffres */
    filter: drop-shadow(0 0 15px rgba(17, 205, 212, 0.3));
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0; /* Gris très clair/bleuté */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   RESPONSIVE STATS BANNER
   ========================================= */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr; /* On passe sur une seule colonne sur mobile */
        gap: 20px;
    }
    
    .stats-banner {
        padding: 50px 20px;
        margin: 40px 0;
    }

    .stat-number {
        font-size: 3.2rem; /* Légèrement réduit pour les petits écrans */
    }
    
    .stat-box {
        padding: 20px;
    }
}


















/* Force l'affichage du ticker au-dessus de tout sur la Régie Pub */
.radio-ticker-wrapper {
    display: flex !important;
    visibility: visible !important;
    z-index: 99999 !important; /* On passe au niveau supérieur */
}

/* Ajustement du header pour qu'il ne chevauche jamais */
.global-header {
    top: var(--ticker-height, 44px) !important;
}