/* ================================================================
   RADIO ODYSSEY — style.css
   Global stylesheet — inclus dans toutes les pages
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ro-purple:     #7B2FBE;
  --ro-pink:       #FF3CAC;
  --ro-orange:     #FF9A3C;
  --ro-gold:       #FFD700;
  --ro-sky:        #00C6FF;
  --ro-navy:       #0b1c2d;
  --ro-blue:       #1e7fcb;
  --ro-light:      #FAFAFA;
  --ro-dark:       #2D2D3A;
  --ro-muted:      #6c6c80;
  --ro-grad-main:  linear-gradient(135deg, #7B2FBE 0%, #FF3CAC 55%, #FF9A3C 100%);
  --ro-grad-sky:   linear-gradient(135deg, #00C6FF 0%, #7B2FBE 100%);
  --ro-grad-bar:   linear-gradient(90deg, #0b1c2d 0%, #1e7fcb 50%, #0b1c2d 100%);
  --ro-grad-card:  linear-gradient(145deg, #fff 0%, #f8f0ff 100%);
  --ro-shadow-sm:  0 4px 16px rgba(123,47,190,.12);
  --ro-shadow:     0 8px 30px rgba(123,47,190,.18);
  --ro-shadow-lg:  0 20px 60px rgba(123,47,190,.28);
  --bar-h:         105px;
  --bar-h-mob:     75px;
}

/* ── RESET / BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--bar-h);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ro-dark);
  background: var(--ro-light);
  margin: 0;
  padding-top: calc(var(--bar-h) + 20px); /* +20px buffer sous le player */
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

/* Icônes SVG inline (composant Icon.astro) — reproduit le comportement
   de l'ancienne police d'icônes : taille = 1em du contexte parent. */
svg.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
p { line-height: 1.75; }
a { transition: color .2s; }
img { max-width: 100%; }

/* ── PLAYER BAR — solution finale ─────────────────────────────
   Le player RadioKing impose margin-top:35px sur l'iframe.
   On utilise position:relative sur la barre et on place
   l'iframe en absolu pour qu'elle soit exactement comme
   dans le code original de RadioKing, avec le logo en plus.
   ─────────────────────────────────────────────────────────── */
#topRadioBar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--bar-h);   /* 105px desktop */
  background: linear-gradient(90deg, #0b1c2d, #1e7fcb, #0b1c2d);
  z-index: 999999;
  box-shadow: 0 4px 25px rgba(30,127,203,.25);
  display: flex;
  align-items: center;
}
/* ligne décorative supprimée */

/* ── Logo rond — calé à gauche, centré verticalement ── */
.bar-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-left: 16px;
}
.bar-logo-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.35);
  box-shadow: 0 0 0 3px rgba(30,127,203,.4), 0 0 20px rgba(30,127,203,.5);
  display: block;
  background: #0b1c2d;
}

/* ── Live badge ── */
.live-badge {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: .4px;
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0; white-space: nowrap;
  user-select: none;
  margin-left: 14px;
  margin-right: 14px; /* espace avant le player */
}
.live-dot {
  width: 9px; height: 9px;
  background: #ff2b2b; border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255,43,43,.75); }
  70%  { box-shadow: 0 0 0 10px rgba(255,43,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,43,43,0); }
}

/* ── iFrame RadioKing — CODE ORIGINAL EXACT ──
   L'iframe prend tout l'espace restant.
   margin-top:35px est le décalage natif de RadioKing
   qui positionne son UI dans une barre de 105px.
   ── */
/* Règle appliquée UNIQUEMENT à l'iframe desktop */
#topRadioBar iframe.rk-desktop {
  flex: 1;
  min-width: 0;
  height: 90px;
  border: 0;
  margin-top: 35px;     /* CODE ORIGINAL RADIOKING — ne pas modifier */
  align-self: flex-start;
  display: block;
}
.rk-mobile-btn { display: none; }

/* Wave visualiser */
.bar-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 38px;
  flex-shrink: 0;
}
.bar-wave span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ro-sky) 0%, var(--ro-blue) 100%);
  animation: wave-bounce 1.2s ease-in-out infinite;
  transform-origin: bottom;
}
.bar-wave span:nth-child(1){height:8px;  animation-delay:.00s}
.bar-wave span:nth-child(2){height:20px; animation-delay:.10s}
.bar-wave span:nth-child(3){height:32px; animation-delay:.18s}
.bar-wave span:nth-child(4){height:22px; animation-delay:.28s}
.bar-wave span:nth-child(5){height:12px; animation-delay:.36s}
.bar-wave span:nth-child(6){height:26px; animation-delay:.44s}
.bar-wave span:nth-child(7){height:16px; animation-delay:.52s}
@keyframes wave-bounce {
  0%,100%{ transform: scaleY(1);    opacity: 1;   }
  50%    { transform: scaleY(.22);  opacity: .45; }
}

/* Burger */
.bar-burger {
  background: rgba(255,255,255,.13);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 9px;
  color: #fff;
  font-size: 1.4rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
  line-height: 1;
}
.bar-burger:hover { background: rgba(255,255,255,.22); }

/* ── OFFCANVAS NAV ───────────────────────────────────────────── */
#site-nav .offcanvas-header {
  background: linear-gradient(135deg, #0b1c2d 0%, #1e3a5f 100%);
  padding: 1rem 1.2rem;
}
#site-nav .offcanvas-title {
  display: flex; align-items: center; gap: .65rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1.1rem; color: #fff;
}
#site-nav .offcanvas-title img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
}
#site-nav .btn-close { filter: invert(1) brightness(1.5); }

.nav-cat {
  font-size: .67rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ro-muted);
  padding: 1rem 1rem .3rem;
  margin: 0; display: block;
}
#site-nav a.nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .95rem;
  color: var(--ro-dark);
  padding: .5rem 1rem;
  border-radius: 10px;
  display: flex; align-items: center; gap: .6rem;
  transition: background .18s, color .18s;
}
#site-nav a.nav-link:hover,
#site-nav a.nav-link.active {
  background: linear-gradient(90deg,rgba(123,47,190,.1),rgba(255,60,172,.06));
  color: var(--ro-purple);
}
#site-nav a.nav-link .ni { width: 1.5rem; text-align: center; }
.offcanvas-cta { padding: 1rem; margin-top: .5rem; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.ro-section     { padding: 5rem 0; }
.ro-section-alt { background: #f4eeff; }
.ro-section-dark{
  background: linear-gradient(135deg,#0b1c2d,#1a3450);
  color: #fff;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ro-purple);
  background: rgba(123,47,190,.1);
  padding: .3rem .9rem; border-radius: 999px;
  margin-bottom: .75rem;
}
.ro-section-dark .section-eyebrow {
  color: var(--ro-sky);
  background: rgba(0,198,255,.12);
}

.ro-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.12;
}
.highlight {
  background: var(--ro-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-sky {
  background: var(--ro-grad-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-ro {
  background: var(--ro-grad-main);
  color: #fff !important;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  border: none; padding: .78rem 1.9rem;
  border-radius: 999px; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: 0 6px 22px rgba(123,47,190,.32);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-ro:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(123,47,190,.42); }

.btn-ro-outline {
  background: transparent;
  color: var(--ro-purple) !important;
  border: 2px solid var(--ro-purple);
  font-family: 'Nunito', sans-serif; font-weight: 800;
  padding: .7rem 1.7rem; border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: all .2s;
}
.btn-ro-outline:hover { background: var(--ro-purple); color: #fff !important; }

.btn-hero {
  background: #fff; color: var(--ro-purple) !important;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem;
  padding: .88rem 2.1rem; border-radius: 999px; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: .55rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(0,0,0,.28); }

.btn-hero-ghost {
  background: transparent; color: #fff !important;
  border: 2px solid rgba(255,255,255,.65);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  padding: .78rem 1.9rem; border-radius: 999px;
  text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
  transition: all .2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.18); border-color:#fff; }

/* ── CARDS ───────────────────────────────────────────────────── */
.feature-card {
  background: var(--ro-grad-card);
  border-radius: 22px; padding: 2.2rem 1.6rem;
  box-shadow: var(--ro-shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  border: 1.5px solid rgba(123,47,190,.09);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--ro-shadow-lg); }
.feature-card .card-icon { margin-bottom: 1.1rem; display: block; }
.feature-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; color: #2D2D3A !important; }
.feature-card p  { font-size: .88rem; color: var(--ro-muted); margin: 0; }

.page-card {
  background: #fff; border-radius: 18px; padding: 1.4rem;
  box-shadow: var(--ro-shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border: 1.5px solid transparent; text-decoration: none;
  color: var(--ro-dark); display: flex; align-items: flex-start;
  gap: 1rem; height: 100%;
}
.page-card:hover {
  transform: translateY(-6px); box-shadow: var(--ro-shadow-lg);
  border-color: rgba(123,47,190,.22); color: var(--ro-dark);
}
.page-card .pg-icon {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg,rgba(123,47,190,.1),rgba(255,60,172,.1));
  display: flex; align-items: center; justify-content: center;
}
.page-card h4 { font-size: .92rem; font-weight: 800; margin: 0 0 .25rem; line-height: 1.25; }
.page-card p  { font-size: .78rem; color: var(--ro-muted); margin: 0; }
.page-card .pg-arrow { margin-left: auto; align-self: center; color: var(--ro-purple); flex-shrink: 0; }

/* ── SCHEDULE ────────────────────────────────────────────────── */
.schedule-table { background: #fff; border-radius: 22px; box-shadow: var(--ro-shadow-sm); overflow: hidden; }
.schedule-row {
  display: flex; align-items: center;
  padding: 1.1rem 1.5rem; gap: 1.1rem;
  border-bottom: 1px solid rgba(123,47,190,.06);
  transition: background .2s;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: #f9f0ff; }
.schedule-time {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.1rem; color: var(--ro-purple); min-width: 80px;
}
.schedule-icon { flex-shrink: 0; }
.schedule-info h5 { font-size: .9rem; font-weight: 800; margin: 0 0 .1rem; }
.schedule-info p  { font-size: .77rem; color: var(--ro-muted); margin: 0; }

/* ── COHERENCE BANNER ────────────────────────────────────────── */
.coherence-banner {
  background: linear-gradient(135deg, #00C6FF, #7B2FBE);
  border-radius: 24px; padding: 2.5rem 2rem;
  color: #fff; position: relative; overflow: hidden;
}
.coherence-banner::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.07); border-radius: 50%;
  pointer-events: none;
}
.coherence-banner h3 { font-size: 1.5rem; font-weight: 900; }
.breath-times { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.breath-badge {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px; padding: .28rem .8rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .82rem;
}

/* ── PLATFORMS ───────────────────────────────────────────────── */
.platform-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1.5px solid rgba(123,47,190,.15);
  border-radius: 999px; padding: .55rem 1.15rem;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .88rem;
  text-decoration: none; color: var(--ro-dark);
  transition: all .2s; box-shadow: 0 3px 12px rgba(123,47,190,.07);
}
.platform-pill:hover { background: var(--ro-purple); color: #fff; border-color: var(--ro-purple); transform: translateY(-3px); }

/* ── APP STEPS ───────────────────────────────────────────────── */
.app-section { background: var(--ro-grad-main); border-radius: 26px; padding: 3rem 2rem; color: #fff; }
.app-section h3 { font-size: 1.7rem; font-weight: 900; }
.app-step {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 16px; padding: 1.3rem;
}
.app-step h5 { font-size: .92rem; font-weight: 800; margin-bottom: .5rem; }
.app-step ol { font-size: .82rem; padding-left: 1.2rem; margin: 0; opacity: .92; }
.app-step li { margin-bottom: .25rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ro-accordion .accordion-button {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--ro-dark); background: #fff;
}
.ro-accordion .accordion-button:not(.collapsed) {
  color: var(--ro-purple); background: rgba(123,47,190,.04); box-shadow: none;
}
.ro-accordion .accordion-item {
  border: 1.5px solid rgba(123,47,190,.12);
  border-radius: 14px !important; margin-bottom: .7rem; overflow: hidden;
}
.ro-accordion .accordion-body { font-size: .88rem; color: var(--ro-muted); line-height: 1.7; }

/* ── SOCIAL BTNS ─────────────────────────────────────────────── */
.social-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border-radius: 14px; padding: .85rem 1.4rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .92rem;
  text-decoration: none; color: var(--ro-dark);
  box-shadow: var(--ro-shadow-sm); transition: all .25s;
}
.social-btn:hover { transform: translateY(-4px); box-shadow: var(--ro-shadow); color: var(--ro-dark); }
.social-btn .si { font-size: 1.4rem; }
.social-fb .si { color:#1877F2; } .social-ig .si { color:#E1306C; }
.social-tw .si { color:#1DA1F2; } .social-yt .si { color:#FF0000; }

/* ── PARTNER CARD ────────────────────────────────────────────── */
.partner-card {
  background: linear-gradient(135deg,#fff7f0,#fff0f8);
  border-radius: 22px; padding: 2.2rem;
  box-shadow: var(--ro-shadow-sm);
  border: 1.5px solid rgba(255,60,172,.12);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer { background: #0b1c2d; color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
#site-footer h5 { font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; font-size: .95rem; margin-bottom: 1rem; }
#site-footer a  { color: rgba(255,255,255,.6); text-decoration: none; font-size: .86rem; display: block; margin-bottom: .42rem; transition: color .2s; }
#site-footer a:hover { color: var(--ro-sky); }
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: .8rem; }
.footer-logo-wrap img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(30,127,203,.4); }
.footer-brand { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.2rem; color: #fff; line-height: 1.2; }
.footer-brand small { display: block; font-size: .68rem; font-weight: 600; color: var(--ro-sky); letter-spacing: .06em; }
#site-footer hr { border-color: rgba(255,255,255,.08); margin: 2rem 0 1rem; }
.footer-bottom { font-size: .79rem; color: rgba(255,255,255,.5); }
.footer-social a { display: inline-block !important; font-size: 1.2rem; color: rgba(255,255,255,.4) !important; transition: color .2s !important; }
.footer-social a:hover { color: var(--ro-sky) !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--ro-grad-main); color: #fff;
  padding: 5.5rem 0 7rem; position: relative; overflow: hidden;
}
.hero-bubble {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-bubble-1 { width:520px; height:520px; top:-110px; right:-130px; background:rgba(255,215,0,.1); }
.hero-bubble-2 { width:380px; height:380px; bottom:-120px; left:-80px; background:rgba(0,198,255,.1); }
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(6px); border-radius: 999px;
  padding: .38rem 1.1rem; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: .07em;
  margin-bottom: 1.6rem; color: #fff;
}
.hero-live-dot {
  width: 8px; height: 8px; background: #ff2b2b;
  border-radius: 50%; animation: pulse-dot 1.4s infinite;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.07; margin-bottom: .6rem;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--ro-gold); }

.hero .tagline {
  font-family: 'Nunito', sans-serif; font-size: 1.12rem;
  font-weight: 600; opacity: .92; margin-bottom: 2rem; color: #fff;
}

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat  { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.9rem; color: var(--ro-gold); line-height: 1; }
.hero-stat span { display: block; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.8); margin-top: .1rem; letter-spacing: .05em; }

.hero-logo-img {
  width: min(300px, 86%);
  height: auto;
  filter: drop-shadow(0 24px 52px rgba(0,0,0,.38));
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }


/* ════════════════════════════════════════════════════════════════
   CORRECTIONS VISUELLES — Lisibilité mobile & desktop
   ════════════════════════════════════════════════════════════════ */

/* 2. "Pourquoi nous écouter ?" → eyebrow en noir sur fond blanc */
.ro-section .section-eyebrow {
  color: #1a0a2e;
  background: rgba(123,47,190,.1);
}

/* 2. "100% positive" → ombre portée sur le span highlight */
/* 3. "thématiques" → idem */
/* 4. "adorent" → idem */
/* 5. "voulez savoir" → idem */
.ro-section h2 .highlight {
  background: var(--ro-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Ombre portée sur texte dégradé : filtre drop-shadow */
  filter: drop-shadow(0 2px 8px rgba(123,47,190,.45));
}

/* Sur fond sombre (section dark) : ombre plus lumineuse */
.ro-section-dark h2 .highlight {
  filter: drop-shadow(0 2px 12px rgba(255,60,172,.6));
}


/* ── Cohérence cardiaque section : textes sombres sur fond lavande ── */
.ro-section-alt p,
.ro-section-alt ul,
.ro-section-alt li {
  color: #2a1a3e;
}
.ro-section-alt p em,
.ro-section-alt p span {
  color: #3a2a4e;
}
/* Highlight-box dans section alt */
.ro-section-alt .highlight-box p,
.ro-section-alt .alert p,
.ro-section-alt .alert strong,
.ro-section-alt .alert em {
  color: #1a0a2e !important;
  text-shadow: 0 1px 4px rgba(255,255,255,.4);
}
/* Ombre portée sur les p blancs de cohérence */
.coherence-banner p { text-shadow: 0 1px 6px rgba(0,0,0,.3); }

/* ── Partenaire : ombres portées sur titres ── */
.partner-card h4 {
  text-shadow: 0 2px 8px rgba(123,47,190,.25);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* ── MOBILE : barre compacte SANS player (lien direct RadioKing) ── */
  :root { --bar-h: 60px; }
  html  { scroll-padding-top: 60px; }
  body  { padding-top: 60px; }

  #topRadioBar {
    height: 60px !important;
    padding: 0 10px !important;
    gap: 10px !important;
    overflow: hidden;
    align-items: center !important;
  }

  /* Logo visible et compact */
  .bar-logo { display: flex !important; margin-left: 0 !important; }
  .bar-logo-img { width: 44px !important; height: 44px !important; }

  /* Cacher badge, wave et l'iframe desktop */
  .live-badge { display: none !important; }
  .bar-wave   { display: none !important; }
  #topRadioBar iframe.rk-desktop { display: none !important; }

  /* Bouton écoute mobile : grand, facile à taper */
  .rk-mobile-btn {
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #FF3CAC, #7B2FBE);
    border-radius: 10px;
    padding: 6px 12px;
    text-decoration: none;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(123,47,190,.4);
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }
  /* Cacher l'icône play ronde */
  .rk-mobile-play { display: none !important; }
  /* Afficher le label avec "Radio Odyssey" en police Nunito */
  .rk-mobile-label {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .rk-mobile-title {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    color: #fff !important;
    letter-spacing: .02em;
    white-space: nowrap;
    line-height: 1.15;
  }
  .rk-mobile-sub {
    font-family: 'Nunito', sans-serif !important;
    font-size: .62rem !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,.75) !important;
    white-space: nowrap;
  }

  /* Burger compact */
  .bar-burger {
    width: 38px !important; height: 38px !important;
    font-size: 1.3rem !important;
    margin-right: 0 !important;
    flex-shrink: 0;
  }

  /* Bouton écoute mobile */
  .rk-mobile-btn {
    display: flex !important;
    flex: 1;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;
    padding: 6px 10px;
    text-decoration: none;
    color: #fff;
    min-width: 0;
    overflow: hidden;
  }
  .rk-mobile-play {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: linear-gradient(135deg,#FF3CAC,#7B2FBE);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
  }
  .rk-mobile-label {
    display: flex; flex-direction: column;
    min-width: 0; flex: 1;
  }
  .rk-mobile-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: .78rem;
    color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.2;
  }
  .rk-mobile-sub {
    font-family: 'Nunito', sans-serif;
    font-size: .62rem; font-weight: 600;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
  }
  .bar-logo { margin-left: 8px; }
  .bar-logo-img { width: 50px; height: 50px; }
  .live-badge   { display: none; }
  .bar-wave     { display: none; }
  .bar-burger   { margin-right: 8px !important; }

  .hero { padding: 3.5rem 0 3rem; }
  .ro-section { padding: 3.5rem 0; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat  { font-size: 1.5rem; }

  /* ── Feature cards "100% positive" : textes lisibles ── */
  .feature-card {
    background: #fff !important;
    color: #2D2D3A !important;
  }
  .feature-card h3 { color: #2D2D3A !important; }
  .feature-card p  { color: #4a4a5a !important; }

  /* ── Cohérence cardiaque : section alt (#f4eeff) ── */
  .ro-section-alt { background: #f0e8ff !important; }
  .ro-section-alt h2 { color: #1a0a2e !important; }
  .ro-section-alt p  { color: #2a1a3e !important; }
  .ro-section-alt ul, .ro-section-alt li { color: #2a1a3e !important; }
  .content-card h2, .content-card h3 { color: #1a0a2e !important; }
  .content-card p { color: #3a2a4e !important; }
  .content-card ul li { color: #3a2a4e !important; }
  .highlight-box p { color: #2a1a3e !important; }

  /* Ajustements généraux mobile */
  .hero { padding: 3rem 0 5rem; }
  .ro-section { padding: 3rem 0; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat  { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .btn-hero, .btn-ro { font-size: .95rem; padding: .72rem 1.4rem; }
}
