<style>
/* ─────────────────────────────────────────
   TOKENS & RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* fond neumorphique : gris-bleu très désaturé, presque nacré */
  --bg:        #ECF0F4;
  --bg-dark:   #D8E2EA;

  /* ombres */
  --sh-l:      rgba(255, 255, 255, 0.88);
  --sh-d:      rgba(185, 200, 215, 0.75);

  /* identité RNB */
  --rnb:       #5BB8E8;
  --rnb-dk:    #2A8FC0;
  --rnb-sat:   #1A6E9E;
  --rnb-glow:  rgba(91, 184, 232, 0.35);

  /* texte */
  --ink:   #0F1C28;
  --mid:   #2A4255;
  --soft:  #4A6E85;

  /* typo */
  --serif:     'DM Serif Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;

  /* géométrie */
  --r:         14px;
  --r-sm:      10px;
  --r-lg:      20px;
  --r-pill:    100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  padding-bottom: 92px; /* espace pour player fixe */
}

/* ─────────────────────────────────────────
   HELPERS NEUMORPHIQUES
───────────────────────────────────────── */
.neu {
  background: var(--bg);
  box-shadow:
    9px 9px 22px rgba(140,170,195,0.95),
    -9px -9px 22px rgba(255,255,255,0.98);
  border-radius: var(--r);
}
.neu-sm {
  background: var(--bg);
  box-shadow:
    6px 6px 14px rgba(140,170,195,0.9),
    -6px -6px 14px rgba(255,255,255,0.95);
  border-radius: var(--r-sm);
}
.neu-in {
  background: var(--bg-dark);
  box-shadow:
    inset 4px 4px 10px var(--sh-d),
    inset -4px -4px 10px var(--sh-l);
  border-radius: var(--r-sm);
}
.neu-circle {
  background: var(--bg);
  box-shadow:
    5px 5px 12px var(--sh-d),
    -5px -5px 12px var(--sh-l);
  border-radius: 50%;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 4px 20px var(--sh-d), 0 -2px 6px var(--sh-l);
  height: 60px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-badge {
  background: var(--rnb);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  box-shadow:
    3px 3px 8px rgba(91, 184, 232, 0.4),
    -2px -2px 6px rgba(255, 255, 255, 0.5);
}

.nav-name {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--mid);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  padding: 80px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rnb-dk);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--rnb);
}

.hero-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--rnb-dk);
}

.hero-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 420px;
}

/* ─── Player hero ─── */
.hero-player {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-player-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-player-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  text-align: center;
}

.hp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}

.hp-live {
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #E05050;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(224, 80, 80, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(224, 80, 80, 0.5); }
  50% { box-shadow: 0 0 12px rgba(224, 80, 80, 0.9); }
}

.hp-live-txt {
  font-size: 10px;
  font-weight: 500;
  color: #C94040;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hp-fm {
  font-size: 11px;
  color: var(--soft);
  font-weight: 300;
}

.hp-now-label {
  font-size: 10px;
  color: var(--soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hp-song {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hp-artist {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 24px;
}

/* progress bar inset */
.hp-progress-wrap {
  padding: 12px 16px;
  margin-bottom: 22px;
}

.hp-progress-track {
  height: 4px;
  border-radius: 2px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.hp-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--rnb);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--rnb-glow);
  transition: width 1s linear;
}

.hp-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-play-hero {
  width: 52px;
  height: 52px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  box-shadow:
    5px 5px 14px var(--sh-d),
    -5px -5px 14px var(--sh-l);
  border-radius: 50%;
  transition: box-shadow 0.15s;
}

.btn-play-hero:active {
  box-shadow:
    inset 4px 4px 10px var(--sh-d),
    inset -4px -4px 10px var(--sh-l);
}

.btn-play-hero svg {
  width: 20px;
  height: 20px;
  fill: var(--rnb-dk);
  transition: fill 0.2s;
}

.btn-play-hero:hover svg { fill: var(--rnb); }

.hp-meta-show {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.hp-meta-time {
  font-size: 11px;
  color: var(--soft);
  font-weight: 300;
}

.hp-hint {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(185, 200, 215, 0.4);
  font-size: 11px;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
}

/* ── MÉTÉO ── */
.meteo-band {
  padding: 32px 48px;
  display: flex;
  justify-content: center;
}

.meteo-inner {
  width: 100%;
  max-width: 1200px;
}

.meteo-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  min-height: 90px;
  transition: opacity 0.5s ease;
}

.meteo-card * {
  font-family: var(--sans);
}

.meteo-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meteo-icon svg {
  width: 40px;
  height: 40px;
}

.meteo-info {
  flex: 1;
}

.meteo-ville {
  font-size: 11px;
  font-weight: 500;
  color: var(--soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.meteo-temp {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -2px;
  font-size: 28px;
}

.meteo-desc {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
}

.meteo-dots {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.meteo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sh-d);
  transition: background 0.3s, transform 0.3s;
}

.meteo-dot.active {
  background: var(--rnb);
  transform: scale(1.3);
}

.meteo-icon, .meteo-ville, .meteo-temp, .meteo-desc {
    transition: opacity 0.4s ease;
}

/* ─────────────────────────────────────────
   SECTIONS COMMUNES
───────────────────────────────────────── */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
}

.sec-alt {
  background: var(--bg);
  border-top: 1px solid rgba(140, 165, 185, 0.3);
  border-bottom: 1px solid rgba(140, 165, 185, 0.3);
}

.sec-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.sec-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.sec-action {
  font-size: 12px;
  color: var(--rnb-dk);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  transition: color 0.2s;
}

.sec-action:hover { color: var(--rnb-sat); }

/* ─────────────────────────────────────────
   ACTUALITÉS
───────────────────────────────────────── */
.actu-list { display: flex; flex-direction: column; gap: 4px; }

.actu-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.actu-item:hover {
  box-shadow:
    4px 4px 12px var(--sh-d),
    -4px -4px 12px var(--sh-l);
}

.actu-num {
  font-size: 11px;
  color: var(--soft);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.actu-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 4px;
}

.actu-meta {
  font-size: 13px;
  color: var(--soft);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.actu-meta span + span::before {
  content: '·';
  margin-right: 8px;
}

.actu-fb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--soft);
  white-space: nowrap;
  transition: color 0.2s;
}

.actu-fb svg { width: 14px; height: 14px; fill: #1877F2; }
.actu-item:hover .actu-fb { color: var(--rnb-dk); }

/* ─────────────────────────────────────────
   AGENDA
───────────────────────────────────────── */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ag-card {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.ag-card:hover {
  box-shadow:
    5px 5px 14px var(--sh-d),
    -5px -5px 14px var(--sh-l);
}

.ag-date {
  min-width: 46px;
  text-align: center;
}

.ag-day {
  font-family: var(--serif); → font-family: var(--sans);
  font-weight: 300;
}

.ag-month {
  font-size: 9px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.ag-sep {
  width: 1px;
  height: 34px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--sh-d) 30%,
    var(--sh-d) 70%,
    transparent
  );
  flex-shrink: 0;
}

.ag-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  margin-bottom: 4px;
  line-height: 1.4;
}

.ag-loc {
  font-size: 13px;
  color: var(--soft);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ag-loc svg { width: 11px; height: 11px; stroke: var(--soft); fill: none; flex-shrink: 0; }

/* ─────────────────────────────────────────
   ÉQUIPE
───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 20px;
  justify-content: center;
}

.team-card {
  padding: 26px 18px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.team-card:hover {
  box-shadow:
    6px 6px 18px var(--sh-d),
    -6px -6px 18px var(--sh-l);
}

.team-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  box-shadow:
    4px 4px 10px var(--sh-d),
    -4px -4px 10px var(--sh-l);
}

.av-blue { color: var(--rnb-dk); }
.av-violet { color: #7B4FBF; }

.team-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.team-role {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 5px;
}

.team-show {
  font-size: 13px;
  color: var(--rnb-dk);
  font-weight: 400;
}

/* ─────────────────────────────────────────
   PARTENAIRES
───────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partner-card {
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.partner-card:hover {
  box-shadow:
    5px 5px 14px var(--sh-d),
    -5px -5px 14px var(--sh-l);
}

.partner-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.partner-cat {
  font-size: 11px;
  color: var(--soft);
  font-weight: 300;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  padding: 24px 26px;
}

.contact-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 5px;
}

.contact-sub {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   PLAYER FIXE
───────────────────────────────────────── */
.player-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 90px;
  background: var(--bg);
  box-shadow:
    0 -6px 24px var(--sh-d),
    0 -1px 0 rgba(255, 255, 255, 0.7);
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

css.vol-label {
  font-size: 12px;
  color: var(--soft);
  font-weight: 300;
}

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 140px;
  height: 5px;
  border-radius: 2px;
  background: rgba(185,200,215,0.5);
  outline: none;
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rnb-dk);
  box-shadow: 2px 2px 5px var(--sh-d), -2px -2px 5px var(--sh-l);
  cursor: pointer;
}

.pf-left {
  display: flex;
  align-items: center;
  gap: 13px;
  overflow: hidden;
}

.pf-live-dot {
  width: 7px;
  height: 7px;
  background: #E05050;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(224, 80, 80, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.pf-track { overflow: hidden; }

.pf-song {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-show {
  font-size: 13px;
  color: var(--soft);
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-play-fixed {
  width: 54px;
  height: 54px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  box-shadow:
    4px 4px 11px var(--sh-d),
    -4px -4px 11px var(--sh-l);
  border-radius: 50%;
  transition: box-shadow 0.15s;
}

.btn-play-fixed:active {
  box-shadow:
    inset 3px 3px 8px var(--sh-d),
    inset -3px -3px 8px var(--sh-l);
}

.btn-play-fixed svg {
  width: 21x;
  height: 21px;
  fill: var(--rnb-dk);
}

.pf-bar-wrap { width: 110px; }

.pf-bar {
  height: 3px;
  background: rgba(185, 200, 215, 0.5);
  border-radius: 2px;
}

.pf-fill {
  height: 100%;
  width: 0%;
  background: var(--rnb);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--rnb-glow);
  transition: width 1s linear;
}

.pf-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.pf-fm {
  font-size: 11px;
  color: var(--soft);
  font-weight: 300;
}

.btn-vol {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.btn-vol svg {
  width: 17px;
  height: 17px;
  stroke: var(--mid);
  fill: none;
  transition: stroke 0.2s;
}

.btn-vol:hover svg { stroke: var(--ink); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #0D1E2C;
  padding: 52px 48px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 100%;
}

.f-brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--rnb);
  margin-bottom: 12px;
  font-style: italic;
}

.f-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  font-weight: 300;
}

.f-heading {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.f-link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  margin-bottom: 9px;
  font-weight: 300;
  transition: color 0.2s;
}

.f-link:hover { color: rgba(255, 255, 255, 0.75); }

.footer-sub {
  background: #06111A;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-sub span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

/* ─────────────────────────────────────────
   DIVIDER
───────────────────────────────────────── */
.divider {
  height: 1px;
  margin: 0;
  background: rgba(140, 165, 185, 0.35);
}

/* ─────────────────────────────────────────
   ICONS SVG INLINE
───────────────────────────────────────── */
.icon-play {
  display: block;
  width: 18px; height: 18px;
  fill: var(--rnb-dk);
}
.icon-pause {
  display: block;
  width: 18px; height: 18px;
  fill: var(--rnb-dk);
}

/* ── HERO CARDS ── */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-player {
  padding: 24px;
}

.hero-meteo {
  padding: 20px 24px;
  transition: opacity 0.4s ease;
}

.hp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn-ecouter {
  display: block;
  width: 100%;
  background: var(--rnb);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 24px;
  cursor: pointer;
  text-align: center;
  box-shadow: 3px 3px 10px rgba(91,184,232,0.4);
  margin-bottom: 8px;
}

.btn-ecouter:hover { background: var(--rnb-dk); }

.btn-ecouter-sub {
  font-size: 12px;
  color: var(--soft);
  text-align: center;
  font-weight: 300;
}

/* ── MÉTÉO ── */
.meteo-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.meteo-icon { flex-shrink: 0; width: 44px; height: 44px; }
.meteo-icon svg { width: 44px; height: 44px; }

.meteo-right { flex: 1; }

.meteo-ville {
  font-size: 10px;
  font-weight: 500;
  color: var(--soft);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.meteo-temp {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 2px;
}

.meteo-desc {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
}

.meteo-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.meteo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sh-d);
  transition: background 0.3s, transform 0.3s;
}

.meteo-dot.active {
  background: var(--rnb);
  transform: scale(1.3);
}
</style>
