/* =========================================
   VARIABLES GLOBALES ET RESET (Version améliorée)
========================================= */
:root {
    --color-primary: #ffde59; /* Jaune Néon Éclatant */
    --color-secondary: #ff0040; /* Rouge Vif Énergique */
    --color-accent: #8b5cf6;  /* Violet Spirituel */
    --color-bg: #000000;
    --color-dark: #0d0d0d; /* Remplacé par --color-dark-1 pour éviter conflit */
    --color-dark-1: #0d0d0d;
    --color-dark-2: #1a1a1a;
    --color-text-light: #f0f0f0;
    --color-text-mid: #a0a0a0;
    
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --glow-primary: 0 0 25px rgba(255, 222, 89, 0.4);
    --glow-secondary: 0 0 25px rgba(255, 0, 64, 0.5);
    --glow-accent: 0 0 30px rgba(139, 92, 246, 0.4);

    --player-height: 96px;
    --ply-h: 96px; /* Ajout pour compatibilité avec le CSS original */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition-main: 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
    padding-bottom: var(--ply-h);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.section-title h2 span {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}
.section-title p {
    font-size: 1.1rem;
    color: var(--color-text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   FOND ANIMÉ "AURORA" (Version améliorée)
========================================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255,0,64,0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255,222,89,0.15) 0%, transparent 70%);
    z-index: -2;
    animation: aurora 20s ease-in-out infinite alternate;
}

@keyframes aurora {
    from { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
    to { transform: scale(1.2) rotate(5deg); filter: hue-rotate(25deg); }
}

/* =========================================
   HEADER & NAVIGATION (CODE ORIGINAL RESTAURÉ)
========================================= */
/* =========================================
   HEADER
========================================= */
header {
  position: relative;
  height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 30% 40%, #c40000 0%, #3d0000 70%, #050000 100%);
  overflow: hidden;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('shine.svg') no-repeat center / cover;
  opacity: .07;
  mix-blend-mode: soft-light;
  animation: bgshine 30s linear infinite alternate;
}
@keyframes bgshine {
  from { transform: scale(1.1) rotate(0deg); }
  to { transform: scale(1.2) rotate(5deg); }
}

/* NAVBAR (Inchangé) */
.nav-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: .3s;
}
.nav-container.nav-scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  padding: 10px 60px;
}
.logo { 
    width: 110px; 
    margin-top: 12px;
    transition: width 0.3s ease;
}
.nav-container.nav-scrolled .logo {
    width: 70px; /* Logo plus petit au scroll */
}


nav { display: flex; gap: 40px; }
nav a { text-transform: uppercase; color: white !important; letter-spacing: 2px; font-size: 13px; transition: .3s; }
.socials { display: flex; gap: 15px; }
.socials a {
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: .3s;
}
.socials a:hover {
  background: var(--color-primary);
  color: #a00000;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--color-primary);
}

/* HEADER CONTENT - CORRIGÉ ET CENTRÉ */
.header-content {
  position: absolute; /* Changé à absolute pour un centrage précis */
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centrage horizontal et vertical */
  z-index: 2;
  max-width: 600px;
  width: 90%;
  text-align: center; /* Centrer le contenu H1/H2/Timer */
}
.header-content h1 {
    font-family: var(--font-title);
    font-size: 5.5rem;
    text-transform: uppercase;
    /* CORRECTION ICI : Augmentation de la hauteur de ligne */
    line-height: 1.1; /* Augmenté de 1 à 1.1 (ou 1.2 si nécessaire) */
    letter-spacing: 3px;
    color: var(--color-text); 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 30px var(--color-secondary);
    animation: glowtext 3s ease-in-out infinite alternate;
}
@keyframes glowtext {
  from { filter: drop-shadow(0 0 5px var(--color-secondary)); }
  to { filter: drop-shadow(0 0 25px var(--color-primary)); }
}
.header-content h2 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--color-primary);
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: .9;
}

/* BANDE DRAPEAU HAÏTIEN (Inchangé) */
.haitian-flag-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 250px;
    margin: 20px auto 0;
    border: 1px dotted rgba(255, 255, 255, 0.3);
    padding: 5px;
    border-radius: 4px;
}
.flag-segment {
    height: 10px;
    width: 100px;
    border: 1px dotted var(--color-primary);
    border-radius: 2px;
}
.flag-segment.blue { background-color: #002D72; }
.flag-segment.red { background-color: #D20000; }


/* Compte à rebours Styles (Inchangé) */
.countdown-container {
    margin: 40px auto 0;
    padding: 20px 0;
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.countdown-container h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.timer-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 60px;
}
.timer-value {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 222, 89, 0.8);
}
.timer-label {
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.timer-separator {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1;
    animation: blink 1s infinite alternate;
}
@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.5; }
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: var(--color-dark);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 30px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255,0,64,0.4);
  transition: transform .3s, box-shadow .3s;
}
.cta-main:hover { transform: translateY(-2px) scale(1.03); box-shadow:0 15px 40px rgba(255,0,64,0.6); }
.cta-main.is-playing { animation: pulse 1.5s infinite alternate; }
@keyframes pulse { from{box-shadow:0 0 15px rgba(255,222,89,.4);} to{box-shadow:0 0 40px rgba(255,222,89,.8);} }

/* Décor visuel (Positionnement ajusté et réduit) */
.mic { 
    position: absolute; 
    bottom: 0%; 
    right: 25px; /* CORRIGÉ : Positionné à 400px du bord droit */

    width: 450px; /* Corrigé : Taille réduite et non 00px */
    animation: riseIn 2s ease; 
    z-index: 1; 
        mask-image: linear-gradient(to top, transparent 0%, #000 15%, #000 100%); 

}
.portrait { 
    position: absolute; 
    bottom: 0; 
    right: 625px; /* CORRIGÉ : Positionné à 400px du bord droit */
    height: 80vh; 
    animation: slideInRight 2s ease; 
    z-index: 1;
    /* Estompement du bas de l'image */
    mask-image: linear-gradient(to top, transparent 0%, #000 15%, #000 100%); 
}
/* Animations pour le micro et le portrait (inchangées) */
@keyframes riseIn { from{opacity:0; transform:translateY(150px);} to{opacity:1; transform:none;} }
@keyframes slideInRight { from{transform:translateX(200px); opacity:0;} to{transform:none; opacity:1;} }

.curve { position: absolute; bottom: 0; width: 100%; height: 140px; background: linear-gradient(to bottom, transparent, var(--color-dark) 80%); }
/* =========================================
   SCROLL ANIMATION GENERIC
========================================= */
.fade-up { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }




/* ===== MENU DÉROULANT MODERNE (au clic) ===== */
/* Harmonisation de base de tous les liens du menu */
nav > a,
.nav-item > .dropbtn {
  color: #fff !important; /* ✅ il fallait AJOUTER ça ici */
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease;
  line-height: 1;
}

nav > a:hover,
.nav-item > .dropbtn:hover {
  background: rgba(235, 232, 232, 0); /* même hover pour tous */
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item .dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;

  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-item .dropbtn:hover {
  background: rgba(255, 255, 255, 0.08); /* + subtil, + premium */
}

.nav-item .arrow {
  font-size: 18px;
  transition: transform .3s ease;
}

/* Contenu du dropdown */
.dropdown-content {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--color-bg, #ffffff);
  color: #111;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  transform-origin: top;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

/* État visible (classe active via JS) */
.dropdown-content.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0px);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, color .25s ease;
}

/* Icône (Material Icons) */
.dropdown-content a i {
  font-size: 18px;
  opacity: 0.8;
  transition: opacity .25s ease, color .25s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.07);
  color: var(--color-primary, #d32f2f);
}

.dropdown-content a:hover i {
  opacity: 1;
  color: var(--color-primary, #d32f2f);
}

/* Animation flèche  */
.dropdown-content.active ~ .dropbtn .arrow {
  transform: rotate(180deg);
}

/* =========================================
   ZONE ACTUS + LIVE
========================================= */
.broadcast-zone { 
    /* L'ancien fond est remplacé par le nouveau dégradé */
    background: radial-gradient(ellipse at 50% 100%, #58002d 0%, #0d0d0d 70%);
    padding: 100px 0; /* Garder le padding */
}

.broadcast-layout { 
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    align-items: start;
}

.live-box {
    position: sticky;
    top: 120px;
    background: linear-gradient(145deg, #1f003b, #120022);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.15);
    transition: all 0.3s;
}
.live-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px rgba(139, 92, 246, 0.25);
}
.live-icon {
    margin: -20px auto 20px;
    width: 80px; height: 80px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 0 0 8px rgba(255,0,64,0.2);
    animation: pulseIcon 2s infinite alternate;
}
.live-icon i { font-size: 3.5rem; }
@keyframes pulseIcon { 
    from { transform: scale(1); box-shadow: 0 0 0 8px rgba(255,0,64,0.2); } 
    to { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255,0,64,0.1); } 
}
.live-box h3 { 
    font-family: var(--font-title); 
    font-size: 2.2rem; 
    letter-spacing: 1px;
    margin-bottom: 15px; 
}
.live-box p { 
    color: var(--color-text-mid); 
    margin-bottom: 30px; 
    line-height: 1.6;
}
.live-stats { 
    display: flex; 
    justify-content: space-around; 
    border-top: 1px dashed rgba(255,255,255,0.15); 
    padding-top: 25px; 
    margin-top: 25px; 
}
.stat-value { 
    font-size: 2.2rem; 
    color: var(--color-primary); 
    font-family: var(--font-title); 
}
.stat-label { 
    font-size: .8rem; 
    color: var(--color-accent); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}
.btn-live-now {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    padding: 15px 35px; border-radius: var(--border-radius-sm);
    box-shadow: var(--glow-secondary);
    font-weight: 700; 
    transition: all 0.3s;
}
.btn-live-now:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(255,0,64,0.5); 
}

.news-feed-column { 
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news-header {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.news-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 2px;
}
.btn-view-all {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-view-all i { transition: transform 0.3s; }
.btn-view-all:hover i { transform: translateX(5px); }

.post-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--color-dark-2); 
    border-radius: var(--border-radius-md); 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
    transition: transform var(--transition-main), box-shadow var(--transition-main);
    border: 1px solid transparent;
}
.post-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 15px 40px rgba(255,222,89,0.1);
    border-color: rgba(255,222,89,0.3);
}
.post-thumb { 
    height: 100%;
}
.post-thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s;
}
.post-card:hover .post-thumb img {
    transform: scale(1.05);
}
.post-body { padding: 25px; display: flex; flex-direction: column; }
.post-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
}
.post-tag { 
    background: var(--color-secondary); 
    color: #fff; 
    padding: 4px 12px; 
    border-radius: 50px; 
    font-size: .75rem; 
    font-weight: 700;
    text-transform: uppercase;
}
.post-date {
    font-size: 0.8rem;
    color: var(--color-text-mid);
    display: flex;
    align-items: center;
    gap: 5px;
}
.post-body h4 { 
    color: var(--color-primary); 
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.post-body p { 
    color: var(--color-text-mid); 
    font-size: .95rem; 
    line-height: 1.6;
    flex-grow: 1;
}
.btn-more { 
    background: var(--color-primary); 
    color: #000; 
    padding: 8px 18px; 
    border-radius: var(--border-radius-sm); 
    font-weight: 700; 
    display: inline-block; 
    margin-top: 15px;
    align-self: flex-start;
    transition: background 0.3s, color 0.3s;
}
.btn-more:hover {
    background: var(--color-secondary);
    color: #fff;
}


/* =========================================
   NOUVELLE SECTION PODCASTS
========================================= */
.podcasts-section {
    background: radial-gradient(circle at 90% 10%, #3e0070, #0d0d0d 60%);
    padding: 100px 0;

    position: relative;
    overflow: hidden;
}
.podcasts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/wavecut.png');
    opacity: 0.03;
    z-index: 0;
}
.podcast-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-podcast {
    position: relative;
}
.featured-cover {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-bottom: 25px;
    border: 2px solid rgba(139, 92, 246, 0.4);
}
.featured-podcast .info-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.featured-podcast h3 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.featured-podcast .episode-meta {
    color: var(--color-text-mid);
    margin-bottom: 15px;
    font-weight: 600;
}
.featured-podcast .episode-meta span {
    margin: 0 8px;
}
.featured-podcast p {
    line-height: 1.7;
    margin-bottom: 25px;
}
.btn-play-featured {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-accent);
    padding: 15px 35px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    box-shadow: var(--glow-accent);
    transition: all 0.3s;
}
.btn-play-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}
.episodes-list::-webkit-scrollbar { width: 6px; }
.episodes-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px;}
.episodes-list::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 10px; }
.episodes-list::-webkit-scrollbar-thumb:hover { background: #a475ff; }

.episode-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}
.episode-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--color-accent);
}
.episode-cover {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.episode-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}
.episode-info {
    flex-grow: 1;
}
.episode-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.episode-info p {
    font-size: 0.85rem;
    color: var(--color-text-mid);
}
.episode-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.episode-card:hover .episode-play-btn {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.1);
}

/* =========================================
   SECTION VIDÉOS (Améliorée)
========================================= */

/* DANS VOTRE BLOC <style> ou votre fichier css/style.css */

.video-grid { 
    /* Modifié pour 4 colonnes : */
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* Force 4 colonnes de taille égale */
    gap: 30px; 
    margin-top: 50px; 
}

@media (max-width: 1200px) {
    /* Maintenir 3 colonnes si l'écran est plus petit */
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    /* Maintenir 2 colonnes sur tablettes */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* 1 colonne sur mobiles */
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-item { 
    background:var(--color-dark-2); 
    border-radius: var(--border-radius-md); 
    overflow:hidden; 
    transition: all var(--transition-main);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.video-item:hover { 
    transform:translateY(-8px); 
    box-shadow:0 15px 35px rgba(255,222,89,0.15); 
}

.video-thumbnail { 
    position:relative; 
    padding-top:56.25%; 
}
.video-thumbnail img { 
    position:absolute; 
    inset:0; 
    width:100%; height:100%; 
    object-fit:cover; 
    transition: filter 0.3s;
}
.video-item:hover .video-thumbnail img {
    filter: brightness(0.8);
}
.play-icon { 
    position:absolute; 
    inset:0; 
    display:grid; 
    place-items:center; 
    opacity:0; 
    background:rgba(0,0,0,0.5); 
    transition: opacity .3s; 
}
.video-item:hover .play-icon { opacity:1; }
.play-icon .material-icons { 
    font-size:4rem; 
    color:var(--color-primary); 
    text-shadow: 0 0 20px var(--color-primary);
    transform: scale(0.8);
    transition: transform 0.3s;
}
.video-item:hover .play-icon .material-icons {
    transform: scale(1);
}
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.video-meta { 
    padding: 15px;
    text-align: left; 
}
.video-title-card { 
    color: var(--color-text-light); 
    font-size: 1rem; 
    font-weight: 600; 
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-views {
    font-size: 0.85rem;
    color: var(--color-text-mid);
}

/* --- Lightbox Vidéo --- */
.lightbox { 
    display:none; 
    position:fixed; 
    inset:0; 
    background:rgba(0,0,0,0.9); 
    backdrop-filter:blur(8px); 
    z-index:2000; 
    animation: fadeInLightbox 0.5s forwards;
}
.lightbox.is-open { display:grid; place-items:center; }
@keyframes fadeInLightbox { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { 
    position:relative;
    width:90%; 
    max-width:1100px; 
    aspect-ratio: 16 / 9;
}
.lightbox-content iframe {
    border: none;
    width: 100%;
    height: 100%;
}
.close-btn { 
    position:absolute; 
    top: -40px; 
    right:0; 
    color:#fff; 
    font-size:2.5rem; 
    cursor:pointer;
    transition: transform 0.3s, color 0.3s;
}
.close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-secondary);
}


/* =========================================
   PLAYER FIXE (Version améliorée)
========================================= */
.rmh-player { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: var(--player-height);
    backdrop-filter: blur(16px); 
    background: rgba(15, 15, 20, 0.85);
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    padding:0 35px;
    box-shadow:0 -5px 30px rgba(0,0,0,.5); 
    border-top:1px solid rgba(255,255,255,.1);
    z-index: 9999;
}
.rmh-player::before {
    content: ""; 
    position: absolute; 
    top: -1px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    filter: drop-shadow(0 0 8px var(--color-secondary));
    z-index: 1;
}

.ply-left { display:flex; align-items:center; gap:16px; }
.ply-cover { 
    width:68px; height:68px; 
    border-radius:var(--border-radius-md); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.5); 
    border: 2px solid rgba(255,255,255,0.1);
}
.ply-info .ply-title { font-weight:700; font-size: 1.1rem; }
.ply-info .ply-sub { 
    font-size:0.8rem; 
    color: var(--color-text-mid); 
    display:flex; 
    align-items:center; 
    gap:8px; 
    margin-top: 4px;
}
.mini-eq {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 12px;
}
.mini-eq i { 
    display:block; 
    width:3px; 
    height:100%; 
    background:linear-gradient(var(--color-primary), var(--color-secondary)); 
    border-radius:2px; 
    animation: eq-inactive 1.2s infinite ease-in-out alternate;
}
.rmh-player.is-playing .mini-eq i { animation-name: eq-active; }
.mini-eq i:nth-child(2){animation-delay:.15s;} 
.mini-eq i:nth-child(3){animation-delay:.3s;}

@keyframes eq-inactive { 
    from{ transform: scaleY(0.2); } 
    to{ transform: scaleY(0.6); } 
}
@keyframes eq-active { 
    from{ transform: scaleY(0.2); } 
    to{ transform: scaleY(1); } 
}

.ply-center { 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.ply-btn--play { 
    width:60px; height:60px; 
    border:none; 
    border-radius:50%; 
    background:linear-gradient(45deg, var(--color-secondary), var(--color-primary)); 
    font-size:2rem; 
    color:#000; cursor:pointer; 
    display:grid; place-items:center; 
    box-shadow: 0 0 25px rgba(255,0,64,.4); 
    transition: all 0.3s; 
}
.ply-btn--play:hover { 
    transform:scale(1.1); 
    box-shadow:0 0 35px rgba(255,0,64,.6); 
}

.ply-right { display:flex; align-items:center; gap:20px; }
.ply-vol { display:flex; align-items:center; gap:10px; }
.ply-vol i { color: var(--color-text-mid); }
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,222,89,0.5);
}
.ply-time { 
    font-size:0.9rem; 
    color:var(--color-text-mid); 
    font-weight: 600;
    letter-spacing: 1px;
}
.ply-time span {
    color: var(--color-secondary);
    text-shadow: 0 0 10px var(--color-secondary);
    margin-right: 5px;
}


/* =========================================
   FOOTER
========================================= */
.footer {
    padding: 50px 0;
    text-align: center;
    background: var(--color-dark-1);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text-mid);
}

/* =========================================
   ANIMATIONS & RESPONSIVE
========================================= */
.fade-up { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px){
    .broadcast-layout { grid-template-columns: 400px 1fr; }
    .podcast-layout { grid-template-columns: 1fr; }
    .featured-podcast { text-align: center; }
    .btn-play-featured { margin: 0 auto; }
    .episodes-list { max-height: 350px; margin-top: 40px; }
}

@media (max-width: 992px){
    .container { padding: 0 20px; }
    .broadcast-layout{ 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .live-box { 
        position: static; 
        width: 100%; 
        max-width: 500px; 
        margin: 0 auto;
    }
    .post-card { grid-template-columns: 150px 1fr; }
    
    /* Responsive Header Original */
    .mic, .portrait{display:none;}
    .nav-container { padding: 15px 20px; }
    nav{display:none;}
    .header-content h1{font-size:3.8rem;}

    /* Player Mobile */
    .rmh-player { padding: 0 15px; }
    .ply-right { display: none; }
    .ply-center { position: static; transform: none; margin: 0 15px; }
}

@media (max-width: 600px) {
    body { padding-bottom: calc(var(--player-height) - 10px); }
    .section-title h2 { font-size: 2rem; }
    .post-card { 
        grid-template-columns: 1fr; 
    }
    .post-thumb { height: 200px; }
    .lightbox-content {
        width: 100%;
        height: auto;
    }
    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
    }

    /* Player Mobile */
    .rmh-player { height: 86px; }
    .ply-cover { width: 56px; height: 56px; }
    .ply-info .ply-title { font-size: 0.9rem; }
    .ply-info .ply-sub { font-size: 0.7rem; }
    .ply-btn--play { width: 50px; height: 50px; font-size: 1.5rem; }
}










/* =========================================
   SECTION BLOG / ANALYSES (DESIGN REFAIT)
========================================= */
.blog-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 50% 100%, #8d1791ff 0%, #0d0d0d 70%);
    position: relative;
    overflow: hidden;
}

/* --- Navigation par onglets (Tabs) --- */
.blog-tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.blog-tab-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-mid);
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.blog-tab-trigger:hover {
    color: var(--color-text-light);
    background: rgba(255, 255, 255, 0.05);
}
.blog-tab-trigger.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(255, 222, 89, 0.1);
}

/* --- Zone de contenu --- */
.blog-content-area {
    position: relative;
}

.blog-content {
    background: linear-gradient(145deg, #1e1e1e, #111);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    display: none; /* Caché par défaut */
    animation: fadeInContent 0.6s ease-out forwards;
}
.blog-content.active {
    display: block;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Article à la une --- */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.featured-post-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.featured-post-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post-category {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.featured-post-body h3 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 15px;
}

.post-excerpt {
    color: var(--color-text-mid);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-read-more i {
    transition: transform 0.3s;
}
.btn-read-more:hover i {
    transform: translateX(5px);
}

/* --- Grille "À lire aussi" --- */
.other-posts h4 {
    color: var(--color-text-light);
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-post-item {
    background: #111;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.grid-post-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.grid-post-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.grid-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s;
}
.grid-post-item:hover .grid-post-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.grid-post-body {
    padding: 20px;
}

.grid-post-title {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* --- Responsive pour la section Blog --- */
@media (max-width: 1200px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-content { padding: 25px; }
    .blog-tabs-container {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: flex-start;
        overflow-x: auto;
    }
    .blog-tab-trigger { flex-shrink: 0; }
    .post-grid {
        grid-template-columns: 1fr;
    }
}











/* =========================================
   SECTION BANNIÈRE PUBLICITAIRE
========================================= */
.ad-banner-section {
    padding: 60px 0; /* Espace vertical pour faire respirer la bannière */
    background: #0a0a0a; /* Un fond très sombre pour faire ressortir la bannière */
    text-align: center; /* Centre le contenu de la bannière */
}

.ad-banner-wrapper {
    position: relative;
    display: inline-block; /* S'adapte à la largeur de l'image */
    padding: 10px; /* Espace entre la bordure et l'image */
    
    /* La bordure en pointillé demandée, avec une couleur de base subtile */
    border: 1px dotted rgba(255, 255, 255, 0.3);
    border-radius: 12px; /* Bords arrondis pour un look moderne */

    /* L'animation qui va attirer l'oeil ! */
    animation: pulse-border 5s ease-in-out infinite;
}

/* Animation de la bordure et de l'ombre pour attirer le regard */
@keyframes pulse-border {
    0% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }
    50% {
        /* La bordure devient jaune vif et une lueur apparaît */
        border-color: var(--color-primary);
        box-shadow: 0 0 25px rgba(255, 222, 89, 0.3), 
                    inset 0 0 15px rgba(255, 222, 89, 0.1);
    }
    100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: none;
    }
}

.ad-banner-wrapper a {
    display: block; /* S'assure que le lien prend toute la place */
}

.ad-banner-wrapper img {
    display: block; /* Retire tout espace indésirable sous l'image */
    max-width: 100%; /* Assure la responsivité */
    border-radius: 6px; /* Bords légèrement arrondis pour l'image elle-même */
}

/* Style du petit label "Publicité" */
.ad-label {
    position: absolute;
    top: -12px; /* Positionne le label juste au-dessus de la bordure */
    left: 25px;
    background: #0a0a0a; /* Le même fond que la section pour "couper" la bordure */
    padding: 0 10px;
    color: var(--color-text-mid);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}



/* =========================================
   SECTION 3 ÉMISSIONS (Image format naturel)
========================================= */
.shows-section {
    padding: 60px 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* --- Styles du titre RMHAITI / ON AIR / 3 EMISSIONS --- */
.rmhaiti-logo-onair {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.rmhaiti-logo-actus {
    display: flex;
    height: 100px;
    width: 100px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px; /* Espace avant les cartes */
    position: relative;
}

.rmhaiti-main-logo {
    width: auto; /* Supprime toute contrainte de largeur */
    height: auto; /* Supprime toute contrainte de hauteur */
    max-width: none; /* Annule toute max-width qui pourrait être héritée */
    margin-bottom: 10px;
    display: block; /* Assure qu'elle se comporte comme un bloc pour les marges */
}

.on-air {
    background-color: #ff2d55;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.emissions-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fce302;
    margin-bottom: 20px;
}

.audio-wave {
    display: flex;
    gap: 4px;
    height: 20px;
    align-items: flex-end;
    margin-top: 10px;
}

.audio-wave span {
    display: block;
    width: 4px;
    background: #fce302;
    border-radius: 2px;
    animation: wave-animation 1.5s ease-in-out infinite alternate;
}

/* Keyframes et délais pour l'animation des ondes (inchangés) */
.audio-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 18px; animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { height: 14px; animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { height: 10px; animation-delay: 0.6s; }
@keyframes wave-animation {
    0% { transform: scaleY(0.5); opacity: 0.7; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* --- Grille et structure des items --- */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; /* Augmenter l'écart pour compenser visuellement l'absence de hauteur fixe */
    align-items: start; /* Aligner les items en haut */
}

.show-item {
    display: flex;
    flex-direction: column;
    /* Pas besoin d'align-items center ici */
}

/* --- Wrapper de l'image (pour l'ombre et le positionnement) --- */
.show-image-outer-wrapper {
    width: 100%;
    max-width: 320px; /* Limite la largeur max de l'image */
    margin: 0 auto; /* Centre l'image si la colonne est plus large */
    /* Pas de hauteur fixe ici ! */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.show-image-detached {
    width: 100%;
    height: auto; /* Hauteur naturelle de l'image */
    object-fit: contain; /* Assure que l'image entière est visible */
    display: block;
    border-radius: 8px; /* Appliquer l'arrondi directement à l'image */
}

/* --- Carte de description --- */
.show-description-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 60px 25px 25px; /* Padding haut important pour le chevauchement */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: left;
    width: 100%;
    min-height: 250px; /* Hauteur minimale pour l'alignement visuel */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.show-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.show-subtitle {
    font-size: 0.85rem;
    color: #fce302;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.show-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    flex-grow: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px; /* Ajuster l'écart */
    }
    .rmhaiti-main-logo { width: 160px; }
    .emissions-title { font-size: 1.5rem; }

    .show-image-outer-wrapper {
        margin-bottom: -30px; /* Réduire le chevauchement */
    }
    .show-description-card {
        padding-top: 50px; /* Réduire le padding */
        min-height: 280px; /* Ajuster la hauteur min */
    }
    .show-title { font-size: 1.3rem; }
}

@media (max-width: 768px) {
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 60px; /* Augmenter l'écart vertical sur mobile */
    }
    .rmhaiti-main-logo { width: 140px; }
    .emissions-title { font-size: 1.3rem; }

    .show-image-outer-wrapper {
        max-width: 90%; /* Limiter un peu plus l'image */
        margin-bottom: -40px; /* Rétablir un bon chevauchement */
    }
    .show-description-card {
        padding-top: 60px;
        min-height: auto; /* Laisser la hauteur s'adapter au contenu */
    }
    .show-title { font-size: 1.4rem; }
    .show-text { font-size: 0.85rem; }
}

.news-section-banner {
    width: 100%; /* Prend toute la largeur de la colonne */
    max-width: 500px; /* Limite la largeur si vous le souhaitez */
    margin: 0 auto 30px auto; /* Centre l'image et ajoute une marge en dessous */
    display: block; /* S'assure qu'elle est sur sa propre ligne */
    border-radius: 8px; /* Optionnel : bords arrondis */
}










/* ===== Bouton vertical SOUTENIR (Foxalia glow) ===== */
/* ===== Bouton SOUTENIR horizontal discret (bord gauche) ===== */
.support-cta{
  position: fixed;
  left: 0;                   /* collé bord écran */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  padding: 12px 18px;
  border: 0;
  border-radius: 0 12px 12px 0;  /* arrondi côté intérieur */
  background: linear-gradient(90deg,#ff2d7a,#ff9f43);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 6px 10px 30px rgba(0,0,0,0.25);
  opacity: 0.9;
  transition: transform .2s ease, opacity .2s ease;
}

.support-cta:hover{
  opacity: 1;
  transform: translateY(-50%) translateX(4px); /* petit slide élégant */
}

.support-cta:active{
  transform: translateY(-50%) translateX(2px) scale(0.97);
}

/* Mobile — bouton compact, moins intrusif */
@media (max-width: 768px){
  .support-cta{
    font-size: 13px;
    padding: 10px 14px;
    opacity: 0.8;
  }
}


/* ===== Modal claire / premium ===== */
.support-modal{ position: fixed; inset: 0; display: none; z-index: 2000; }
.support-modal[aria-hidden="false"]{ display: block; }
.support-modal__backdrop{
  position: absolute; inset: 0; background: rgba(255,255,255,.65); backdrop-filter: blur(6px);
}
.support-modal__dialog{
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -52%);
  width: min(560px, 92vw);
  background: #fff;
  color: #1a1a1a;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.06) inset;
  padding: 22px 22px 18px;
}
.support-modal__dialog:before{
  /* liseré haut doré */
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 5px;
  background: linear-gradient(90deg,#ff2d7a, #ff9f43, #ffd166);
  border-radius: 18px 18px 0 0;
}
.support-modal__close{
  position: absolute; right: 10px; top: 8px;
  background: transparent; border: 0; font-size: 28px; line-height: 1; cursor: pointer; color: #444;
}
#supportTitle{
  margin: 6px 0 8px; font-weight: 800; font-size: 1.4rem;
  background: linear-gradient(90deg,#ff2d7a, #ff9f43, #ffd166);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.support-modal__text{ margin: 0 0 14px; color: #444; }

.support-modal__actions{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 6px 0 8px;
}
@media (max-width: 520px){ .support-modal__actions{ grid-template-columns: 1fr; } }

.don-btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; border-radius: 12px; text-decoration: none; font-weight: 700;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.don-btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.09); border-color: rgba(0,0,0,.12); }
.don-btn img{ height: 20px; }
.don-btn i{ font-size: 20px; }

.don-btn--paypal{ background: #fff; color: #052157; }
.don-btn--card{
  background: linear-gradient(90deg,#111,#222);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}

.support-modal__hint{ margin-top: 6px; font-size: .9rem; color: #666; }

/* ===== Bouton “Haut de page” ===== */
.to-top{
  position: fixed; right: 16px; bottom: 16px; width: 46px; height: 46px;
  border-radius: 50%; border: 0; cursor: pointer; z-index: 1100;
  background: #161a23; color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover{ transform: translateY(-2px); }

/* Accessibilité motion */
@media (prefers-reduced-motion: reduce){
  .support-cta, .to-top{ transition: none; }
  .support-cta__glow{ animation: none; }
}











#backToTop {
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3d00, #ff9100);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 20000000000000;
}
#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}
#backToTop:hover {
    transform: scale(1.1);
}









.about-hero {
  position: relative;
  overflow: hidden;
  height: 400px;            /* <-- tu forces directement la hauteur */
  display: flex;            /* pour centrer proprement */
  align-items: center;
  justify-content: center;
  margin-top: 2000;            /* au cas où */
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 400px at 10% -10%, rgba(255,64,129,.25), transparent 60%),
    linear-gradient(135deg, #ff4081 0%, #2b0a1c 35%, #121212 65%, #000 100%);
  filter: saturate(105%);
  opacity: .95;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.about-hero__icon {
  font-size: 28px;    /* réduit pour ne pas casser la hauteur */
  margin-bottom: 2px;
}

.about-hero h1 {
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 1.4rem;  /* lisible mais contenu dans 100px */
  margin: 0;
}

.about-hero__tagline {
  font-size: .8rem;
  margin-top: 2px;
  opacity: 0.75;
}







/* ======== BANDEAU DÉDICACES (SWIPE) ======== */
.dedicace-bar {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 25px;
  display: flex;
  align-items: center;
  position: relative;
}

.dedicace-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.dedicace-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.dedicace-slide i {
  font-size: 18px;
  color: #ff4081;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .dedicace-bar {
    height: 50px;
    font-size: 0.85rem;
  }
}




/* ==== BANDEAU DÉDICACES AU-DESSUS DU PLAYER ==== */
.player-dedicace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

/* Halo doux mouvant */
.player-dedicace-bar::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 77, 141, 0.15) 50%, transparent 60%);
  animation: halo-slide 15s linear infinite;
}
@keyframes halo-slide {
  0% { transform: translateX(-30%); opacity: 0.4; }
  50% { transform: translateX(40%); opacity: 0.8; }
  100% { transform: translateX(100%); opacity: 0.4; }
}

/* Alignement contenu */
.player-dedicace-bar > * {
  position: relative;
  z-index: 2;
}

/* Section gauche */
.player-dedicace-bar .dedicace-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  font-weight: 600;
  color: #ff7cae;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.player-dedicace-bar .dedicace-left i {
  font-size: 18px;
}

/* Zone centrale */
.player-dedicace-bar .dedicace-slider {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-size: 0.9rem;
  text-align: center;
  color: #eee;
  transition: transform 0.6s ease;
}
.dedicace-slide {
  min-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dedicace-slide strong {
  color: #fff;
  font-weight: 600;
}

/* Bouton droit */
.dedicace-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d8d, #7c1f3e);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 77, 141, 0.3);
  transition: all 0.25s ease;
}
.dedicace-btn:hover {
  transform: translateY(-1px) scale(1.1);
  box-shadow: 0 0 16px rgba(255, 77, 141, 0.45);
}

/* Mobile */
@media (max-width: 700px) {
  .player-dedicace-bar {
    flex-direction: column;
    height: auto;
    padding: 10px 12px;
    gap: 6px;
  }
  .dedicace-btn { position: static; }
}





























/* --- Newsletter bar --- */
.newsletter-bar {
  background: #232a3a;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #fff;
}

.newsletter-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  background: #1d2332;
  border-radius: 999px;
  overflow: hidden;
  width: 380px;
  max-width: 100%;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: #bbb;
}

.newsletter-form button {
  background: linear-gradient(135deg, #ff4d8d, #7c1f3e);
  border: none;
  color: #fff;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #ff5ca3, #8e2b55);
  transform: translateY(-2px);
}

/* --- Footer principal --- */
.site-footer {
  background: #2b3348;
  color: #d8ddea;
  padding: 50px 0 20px;
  font-family: "Inter", sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-col {
  flex: 1 1 240px;
  min-width: 200px;
}

.footer-logo {
  width: 75px;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* --- Liens & texte --- */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col a {
  color: #b9c0d3;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  color: #b9c0d3;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Réseaux sociaux --- */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.social-links a {
  background: rgba(255,255,255,0.08);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #ff4d8d;
  transform: translateY(-3px);
}

/* --- Section Nous écouter --- */
.listen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.store-badge {
  width: 150px;
  transition: transform 0.3s ease;
}
.store-badge:hover {
  transform: scale(1.05);
}
.qr-wrapper {
  text-align: center;
}
.qr-code {
  width: 100px;
  margin-bottom: 5px;
  border-radius: 8px;
}

/* --- Footer bottom --- */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #aeb4c5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
  margin-top: 30px;
}

.footer-bottom a {
  color: #ff4d8d;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .listen-content {
    align-items: center;
  }
}























































/* === FOXALIA+ COOKIE BANNER === */
.cookie-banner.foxalia {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(25, 28, 41, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  width: min(90%, 900px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: cookieSlideUp 0.6s ease forwards;
  z-index: 9999;
}

/* Icône biscuit */
.cookie-illustration {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-icon {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 30%, #ffb74d, #ff9800 60%);
  border-radius: 50%;
  position: relative;
  animation: bounceCookie 3s ease-in-out infinite;
}
.cookie-icon .crumb {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3e2723;
  border-radius: 50%;
  animation: crumbPulse 2s ease-in-out infinite;
}
.cookie-icon .crumb:nth-child(1) { top: 10px; left: 14px; animation-delay: .2s; }
.cookie-icon .crumb:nth-child(2) { top: 22px; left: 26px; animation-delay: .6s; }
.cookie-icon .crumb:nth-child(3) { top: 30px; left: 10px; animation-delay: 1s; }

/* Texte */
.cookie-info {
  flex: 1;
}
.cookie-info h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.cookie-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #cdd1e0;
}
.cookie-info a {
  color: #ff4d8d;
  font-weight: 600;
  text-decoration: none;
}
.cookie-info a:hover {
  text-decoration: underline;
}

/* Boutons */
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

#acceptCookies {
  background: linear-gradient(135deg, #ff4d8d, #7c1f3e);
  color: #fff;
}
#acceptCookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.3);
}

#refuseCookies {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bbb;
}
#refuseCookies:hover {
  color: #fff;
  border-color: #ff4d8d;
}

#customCookies {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
#customCookies:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes cookieSlideUp {
  from { transform: translate(-50%, 100%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes cookieSlideDown {
  from { transform: translate(-50%, 0); opacity: 1; }
  to { transform: translate(-50%, 100%); opacity: 0; }
}
.cookie-hide {
  animation: cookieSlideDown 0.5s ease forwards;
}

@keyframes bounceCookie {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes crumbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.6; }
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner.foxalia {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 14px;
  }
  .cookie-actions {
    justify-content: center;
  }
}

















/* --- Bannière Live Studio sobre --- */
.live-banner.transparent {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-align: center;
  padding: 40px 25px; /* ← augmente ici pour rendre la bannière plus HAUTE */
  color: #fff;
  backdrop-filter: blur(8px);
  max-width: 840px;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.live-banner.transparent:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Contenu interne */
.live-banner.transparent * {
  position: relative;
  z-index: 1;
}

/* Titre principal */
.live-banner.transparent h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* Description */
.live-banner.transparent p {
  margin: 14px 0 22px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Ligne “LIVE EN COURS” */
.live-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Petit point rouge clignotant (plus doux) */
.live-dot {
  width: 12px;
  height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  animation: pulseDotSoft 1.6s infinite ease-in-out;
  box-shadow: 0 0 10px #ff3b3b;
}

@keyframes pulseDotSoft {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

/* Bouton LIVE plus fin et élégant */
.btn-live {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-live:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-live i {
  font-size: 1.4rem;
}

/* Overlay vidéo (lightbox) */
.live-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.live-frame {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 85%;
  max-width: 900px;
  aspect-ratio: 16/9;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Ajuste la taille du lecteur ici si tu veux plus de HAUTEUR */
.live-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-live {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  transition: all .3s ease;
}

.close-live:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}






















/* --- Barre newsletter --- */
.newsletter-bar {
  background: linear-gradient(90deg, #a01d36, #e84362);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.newsletter-container h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 1rem;
  width: 260px;
}

.newsletter-form button {
  background: #fff;
  color: #a01d36;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-form button:hover {
  background: #ffebef;
  transform: translateY(-1px);
}

/* --- Popups --- */
.popup-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.popup-message.show {
  opacity: 1;
  transform: translateY(0);
}

.popup-message.success { background: #28a745; box-shadow: 0 0 15px rgba(40,167,69,0.6); }
.popup-message.error   { background: #dc3545; box-shadow: 0 0 15px rgba(220,53,69,0.6); }
.popup-message.info    { background: #17a2b8; box-shadow: 0 0 15px rgba(23,162,184,0.6); }
























/* ================================
   CITATION / MESSAGE DISCRET
================================ */
.quote-bridge {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0a0a;
  padding: 30px 0;
  margin: 40px 0;
}

/* Carte élégante et sobre */
.quote-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 50px; /* ← c’est ici que tu peux AUGMENTER la hauteur (augmente le padding vertical) */
  text-align: center;
  max-width: 780px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Effet subtil au survol */
.quote-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Pas de halo doré animé — juste un fin contour lumineux discret */
.quote-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255,215,0,0.2), rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Texte */
.quote-wrapper blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.quote-wrapper cite {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .quote-wrapper {
    padding: 28px 22px; /* ajuste ici aussi si tu veux plus de hauteur sur mobile */
    font-size: 1.1rem;
    margin: 20px 12px;
  }
}




















.other-posts {
  margin-top: 60px;
}

.other-posts h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-left: 4px solid #ff4d8d;
  padding-left: 12px;
}

/* ✅ Grille 3 colonnes fixes, espaces conservés */
.post-grid.fixed-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
}

.grid-post-item {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 360px; /* garde la taille stable */
  margin: 0 auto;
}

.grid-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Image toujours dans le cadre complet */
.grid-post-image {
  width: 100%;
  aspect-ratio: 16 / 9; /* garde le ratio parfait */
  overflow: hidden;
}

.grid-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-post-item:hover .grid-post-image img {
  transform: scale(1.1);
}

/* Corps de la carte */
.grid-post-body {
  padding: 15px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grid-post-title a {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.grid-post-title a:hover {
  color: #ff4d8d;
}

/* Excerpt coupé proprement à 2 lignes */
.grid-post-excerpt {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 8px 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer de la carte (vues + lien) */
.grid-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: auto;
}

.grid-post-meta .views {
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}

.grid-post-meta .views i {
  color: #ff4d8d;
}

.read-more {
  color: #ff4d8d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.read-more:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .post-grid.fixed-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .post-grid.fixed-3 {
    grid-template-columns: 1fr;
  }
}









.ad-banner-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform .4s ease;
}
.ad-banner-wrapper:hover {
  transform: scale(1.02);
}
.ad-banner-wrapper img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
.ad-label {
  position: absolute;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}















/* Bouton dédicace */
.btn-dedicace {
  background: #121212;
  color: #fff;
  border: 1px solid #e63946;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  animation: pulse 2s infinite;
}
.btn-dedicace:hover {
  background: #e63946;
  box-shadow: 0 0 10px #e63946;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 5px #e63946; }
  50% { box-shadow: 0 0 20px #ff6b6b; }
}

/* Modale */
.dedicace-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
}
.dedicace-modal-content {
  background: #1e1e1e;
  color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}
.dedicace-modal-content h2 {
  color: #e63946;
  margin-bottom: 10px;
}
.subtitle {
  color: #ccc;
  margin-bottom: 20px;
}
.dedicace-modal-content input,
.dedicace-modal-content textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}
.dedicace-modal-content textarea {
  resize: none;
  height: 100px;
}
.btn-send {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-send:hover {
  background: #ff6b6b;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.char-counter {
  text-align: right;
  font-size: 13px;
  color: #aaa;
}
.dedicace-response {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
}
.dedicace-modal.fadeOut {
  animation: fadeOut 0.6s forwards;
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

/* Rend les emojis visibles sur tous systèmes */
.emoji-bar, .emoji-bar span {
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Twemoji Mozilla", sans-serif;
  font-size: 22px;
  text-align: center;
  user-select: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.emoji-bar span:hover {
  transform: scale(1.3);
  filter: brightness(1.3);
}














/* === Bouton Historique intégré au player === */
.ply-history-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 20px;
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ply-history-btn:hover {
  color: #ff4081;
  transform: rotate(-25deg);
}

/* === Panneau historique === */
.history-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: #111;
  color: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.6);
  overflow-y: auto;
  z-index: 999000000009;
  transition: right 0.4s ease-in-out;
}

.history-panel.open {
  right: 0;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e1e1e;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

.history-header h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #ff4081;
}

.close-history {
  background: none;
  border: none;
  color: #888;
  font-size: 22px;
  cursor: pointer;
}

.close-history:hover {
  color: #fff;
}

.history-content {
  padding: 15px;
}

.history-item {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.history-item:hover {
  background: #242424;
  transform: translateX(-5px);
}

.history-item img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  margin-right: 12px;
  object-fit: cover;
}

.track-info {
  flex: 1;
}

.track-title {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.track-artist {
  font-size: 0.8rem;
  color: #aaa;
}

.track-time {
  font-size: 0.75rem;
  color: #777;
  text-align: right;
}
.ply-like-btn, .ply-history-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  transition: transform 0.2s, color 0.3s;
}
.ply-like-btn:hover { transform: scale(1.2); }
.ply-like-btn.liked { color: #ff3b3b; }























/* --- RESPONSIVE HEADER (mobile) --- */
@media (max-width: 768px) {

  header {
    text-align: center;
    padding-top: 100px; /* optionnel si tu veux l'éloigner du haut */
  }

  .portrait {
    display: none !important; /* on masque l’image portrait */
  }

  .header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .header-content h1,
  .header-content h2,
  .header-content h3 {
    text-align: center !important;
  }

  #navbar {
    padding: 0 20px; /* évite que le header soit trop collé à gauche/droite */
  }

  .haitian-flag-bar,
  .countdown-container,
  .cta-main {
    margin-left: auto;
    margin-right: auto;
  }
}






.about-hero {
  position:relative;
  overflow:hidden;
  padding:32px 0 38px !important; 
  margin-top:0;     
}
.about-hero__icon {
  font-size:36px;   
  margin-bottom:4px;
}
.about-hero h1 {
  font-size:clamp(22px, 3vw, 32px); 
}
.about-hero__tagline {
  font-size:0.95rem;
  opacity:0.75;
}

@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

.about-content{padding:40px }
.about-block{margin:36px 0 56px}
.block-head h2{display:flex;align-items:center;gap:10px;font-size:clamp(22px,3vw,30px)}
.icon-circle{display:inline-grid;place-items:center;width:36px;height:36px;border-radius:50%;
background:linear-gradient(135deg,#ff4081,#7c1f3e)}
.block-sub{color:#aaa;margin:.35rem 0 1.25rem}

.story-body{line-height:1.85;color:#ddd;font-size:1.02rem}
.story-body p{margin:0 0 1rem}
.story-figure{max-width:420px;margin:0 0 1rem}
.story-figure img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.story-figure figcaption{font-size:.85rem;color:#aaa;margin-top:.35rem}
.float-right{float:right;margin-left:1.25rem}
.float-left{float:left;margin-right:1.25rem}
@media (max-width:900px){.float-right,.float-left{float:none;margin:0 0 1rem}}

.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.value-card{background:#0f0f0f;border:1px solid #1c1c1c;border-radius:16px;padding:18px;transition:transform .25s ease, box-shadow .25s ease}
.value-card:hover{transform:translateY(-4px);box-shadow:0 14px 35px rgba(0,0,0,.35)}
.value-card h3{display:flex;align-items:center;gap:8px;margin:0 0 .5rem}
.values-badges{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0 0;padding:0;list-style:none}
.badge{display:inline-block;background:#111;border:1px solid #272727;border-radius:999px;padding:6px 12px;font-size:.9rem}
@media (max-width:900px){.values-grid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.values-grid{grid-template-columns:1fr}}

.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media (max-width:1100px){.team-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:800px){.team-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.team-grid{grid-template-columns:1fr}}
.team-card{background:#0b0b0b;border:1px solid #1b1b1b;border-radius:18px;overflow:hidden}
.team-photo-wrap{position:relative;overflow:hidden;aspect-ratio:4/3;background:#080808}
.team-photo{width:100%;height:280px;object-fit:cover;transform:scale(1.04);transition:transform .6s ease}
.team-card:hover .team-photo{transform:scale(1.1) translateY(-2px)} /* effet mouvant */
.team-open{position:absolute;top:10px;right:10px;border:none;background:rgba(0,0,0,.55);
backdrop-filter:blur(4px);color:#fff;border-radius:12px;width:38px;height:38px;display:grid;place-items:center;cursor:pointer;transition:opacity .2s}
.team-open:hover{opacity:.85}
.team-meta{padding:14px}
.team-name{margin:.1rem 0 .25rem;font-size:1.05rem}
.role-badge{display:inline-block;background:linear-gradient(135deg,#ff4081,#7c1f3e);color:#fff;border-radius:999px;padding:4px 10px;font-size:.78rem}
.team-excerpt{color:#b9b9b9;margin:.5rem 0 0}

.team-modal{position:fixed;inset:0;display:none}
.team-modal[aria-hidden="false"]{display:block}
.team-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6)}
.team-modal__dialog{position:relative;z-index:2;max-width:920px;margin:5vh auto;background:#0e0e0e;border:1px solid #1e1e1e;border-radius:18px;overflow:hidden}
.team-modal__close{position:absolute;top:10px;right:14px;background:transparent;border:none;color:#fff;font-size:28px;cursor:pointer}
.team-modal__content{display:grid;grid-template-columns:380px 1fr;gap:0}
.team-modal__media{background:#090909}
.team-modal__media img{width:100%;height:100%;object-fit:cover;display:block}
.team-modal__body{padding:18px 20px}
.tm-excerpt{color:#cfcfcf}
.tm-full{color:#aaa;margin-top:.75rem}
@media (max-width:880px){.team-modal__content{grid-template-columns:1fr}}
.fade-up{opacity:0;transform:translateY(12px);transition:opacity .6s ease, transform .6s ease}
.fade-up.is-in{opacity:1;transform:none}

#equipe { scroll-margin-top: 550px; }
html { scroll-behavior: smooth; }  

































.contact-hero {
  position: relative;
  overflow: hidden;
  height: 400px;            /* <-- tu forces directement la hauteur */
  display: flex;            /* pour centrer proprement */
  align-items: center;
  justify-content: center;
  margin-top: 2000;            /* au cas où */
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 400px at 10% -10%, rgba(255,64,129,.25), transparent 60%),
    linear-gradient(135deg, #ff4081 0%, #2b0a1c 35%, #121212 65%, #000 100%);
  filter: saturate(105%);
  opacity: .95;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.contact-hero__icon {
  font-size: 28px;    /* réduit pour ne pas casser la hauteur */
  margin-bottom: 2px;
}
.contact-hero h1 {
  font-size:clamp(22px, 3vw, 32px); /* mini mais pro */
}


.contact-hero__tagline {
  font-size: .8rem;
  margin-top: 2px;
  opacity: 0.75;
}

/* =============================
   CONTACT CONTENU
   ============================= */

.contact-content {
  padding: 40px;
}

.contact-block {
  background: #0f0f0f;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #222;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ccc;
}

.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  color: #eee;
  font-size: 1rem;
  transition: border .2s, background .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff4081;
  background: #181818;
}

.contact-btn {
  align-self: start;
  background: linear-gradient(135deg, #ff4081, #7c1f3e);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,64,129,.3);
}

.form-response {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8bc34a;
}

/* =============================
   CONTACT INFOS
   ============================= */

.contact-infos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 2.5rem;
}

.info-card {
  background: #0b0b0b;
  border: 1px solid #1c1c1c;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #ddd;
  transition: transform .2s, box-shadow .2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.info-card i {
  font-size: 32px;
  color: #ff4081;
  margin-bottom: 6px;
}

.info-card h3 {
  margin: .25rem 0;
  font-size: 1rem;
  color: #fff;
}

.info-card a {
  color: #ff4081;
  text-decoration: none;
}

/* =============================
   MEDIA QUERIES
   ============================= */

@media (max-width: 900px) {
  .contact-infos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-infos {
    grid-template-columns: 1fr;
  }
  .contact-content {
    padding: 24px;
  }
}


#notif-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.notification {
  background: rgba(20, 20, 20, 0.95);
  border-left: 4px solid #ff4d8d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  pointer-events: auto;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.success { border-left-color: #4caf50; }
.notification.error { border-left-color: #e74c3c; }
.notification.info { border-left-color: #ff4d8d; }

.notification i {
  font-size: 1.3rem;
  color: #ff4d8d;
}

.g-recaptcha {
  transform: scale(0.92);
  transform-origin: left;
}


.contact-infos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}

.contact-infos .info-card i {
  font-size: 2rem;
  color: #ff4081;
  margin-bottom: 8px;
}




















/* === Version mobile : suppression du bandeau de dédicaces === */
@media (max-width: 768px) {
  .dedicace-bar {
    display: none !important;
  }
}
/* --- Correction mobile scroll bloqué --- */
html, body {
  height: auto !important;
  overflow-x: hidden;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

/* Evite que des conteneurs flex bloquent le défilement */
#app-content,
main {
  min-height: 100vh;
  overflow: visible !important;
}

/* Player fixe en bas : ne bloque pas le reste */
.rmh-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: auto;
}
