@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700;1,800&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&family=Caveat:wght@400;600;700&display=swap");

/* ============================================================
   CHERIE FM GUYANE — Charte
   Rouge signature CHERIE FM, blanc, noir + accents Guyane subtils
   ============================================================ */

:root {
  /* Couleurs marque */
  --cfm-red: #E40521;          /* rouge cartouche officiel */
  --cfm-red-deep: #B8001A;
  --cfm-red-soft: #FFE5EA;
  --cfm-pink: #FF3D5C;          /* accent féminin */
  --cfm-black: #0A0A0A;
  --cfm-ink: #1A1A1A;
  --cfm-graphite: #2B2B2E;
  --cfm-gray-900: #14141A;
  --cfm-gray-700: #4A4A52;
  --cfm-gray-500: #8A8A93;
  --cfm-gray-300: #D9D9DE;
  --cfm-gray-200: #ECECEF;
  --cfm-gray-100: #F5F5F7;
  --cfm-white: #FFFFFF;

  /* Accents Guyane (très dosés, ~25%) */
  --gy-sun: #FFB627;            /* jaune chaud */
  --gy-leaf: #1F8A4C;           /* vert tropical */
  --gy-river: #0A6E8A;          /* bleu fleuve */

  /* Type
     - DRUK SUPER  → Oswald 700 condensed (display titres)
     - DRUK BOLD   → Barlow Condensed 700 (textes courants)
     - GRAPHIK BOLD ITALIC → Inter italic (accents)
  */
  --font-display: "Oswald", "Barlow Condensed", "Impact", sans-serif;
  --font-body: "Barlow Condensed", "Inter", system-ui, sans-serif;
  --font-script: "Inter", system-ui, sans-serif;

  /* Espacements / radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10,10,10,.06);
  --shadow-md: 0 12px 32px rgba(10,10,10,.10);
  --shadow-lg: 0 24px 60px rgba(10,10,10,.18);
  --shadow-red: 0 12px 32px rgba(228, 5, 33, .25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--cfm-white);
  color: var(--cfm-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--cfm-white);
  color: var(--cfm-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Reserve space for sticky bottom player (124px desktop / 72px mobile + safety) */
  padding-bottom: 144px;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Container */
.container {
  width: min(1320px, 100% - 48px);
  margin-inline: auto;
}
@media (max-width: 720px) { .container { width: min(100%, 100% - 32px); } }

/* Generic section header */
.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.sec-head__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cfm-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sec-head__eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--cfm-red);
  display: inline-block;
}
.sec-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 8px 0 0;
  color: var(--cfm-ink);
  text-wrap: balance;
  text-transform: uppercase;
}
.sec-head__title em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--cfm-red);
  font-weight: 800;
  font-size: 0.95em;
  letter-spacing: 0;
  text-transform: uppercase;
}
.sec-head__sub {
  color: var(--cfm-gray-700);
  margin-top: 8px;
  max-width: 56ch;
  font-size: 16px;
}
.sec-head__cta {
  flex-shrink: 0;
}

section.bloc { padding: 84px 0; }
section.bloc--alt { background: var(--cfm-gray-100); }
section.bloc--dark { background: var(--cfm-black); color: var(--cfm-white); }
section.bloc--dark .sec-head__title { color: var(--cfm-white); }
section.bloc--dark .sec-head__sub { color: rgba(255,255,255,.7); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cfm-red);
  color: var(--cfm-white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--cfm-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(228, 5, 33, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--cfm-ink);
  border: 1.5px solid var(--cfm-ink);
}
.btn--ghost:hover { background: var(--cfm-ink); color: var(--cfm-white); }
.btn--white {
  background: var(--cfm-white);
  color: var(--cfm-red);
}
.btn--white:hover { transform: translateY(-1px); }
.btn--dark {
  background: var(--cfm-ink);
  color: var(--cfm-white);
  padding: 14px 28px;
}
.btn--dark:hover { background: #000; transform: translateY(-1px); }

.btn--sm { padding: 8px 14px; font-size: 13px; }

/* Pills / badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--cfm-gray-100);
  color: var(--cfm-gray-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill--red { background: var(--cfm-red-soft); color: var(--cfm-red); }
.pill--live {
  background: var(--cfm-red);
  color: #fff;
  padding: 5px 11px;
}
.pill--live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.7); }
}

/* ============================================================
   HEADER
   ============================================================ */
.cfm-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--cfm-gray-200);
}
.cfm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 28px;
}
.cfm-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cfm-header__logo {
  height: 44px;
  width: auto;
  display: block;
}
.cfm-header__locale {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cfm-ink);
  padding-left: 14px;
  border-left: 1.5px solid var(--cfm-gray-300);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cfm-header__locale .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gy-leaf);
}
.cfm-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cfm-header__nav a {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--cfm-ink);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.cfm-header__nav a:hover { color: var(--cfm-red); }
.cfm-header__nav a.active { color: var(--cfm-red); }
.cfm-header__nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--cfm-red);
  border-radius: 2px;
}
.cfm-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cfm-gray-100);
  color: var(--cfm-ink);
  transition: background .15s;
}
.icon-btn:hover { background: var(--cfm-gray-200); }

@media (max-width: 1080px) {
  .cfm-header__nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--cfm-red);
  color: var(--cfm-white);
  overflow: hidden;
  padding: 64px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(600px 400px at -10% 110%, rgba(0,0,0,.25), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: 0;
  margin: 18px 0 16px;
  text-wrap: balance;
  text-transform: uppercase;
}
.hero__title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: 0.78em;
  display: inline-block;
  margin: 0 4px;
  text-transform: uppercase;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  max-width: 48ch;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 36px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero__meta-item .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .7;
  display: block;
  margin-bottom: 2px;
}
.hero__meta-item .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0a0a0a;
  background-image:
    radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 60%),
    repeating-radial-gradient(circle at center, transparent 0 4px, rgba(255,255,255,.03) 4px 5px);
  box-shadow: 0 40px 80px rgba(0,0,0,.4), inset 0 0 0 14px #050505;
  animation: spin 18s linear infinite;
}
.hero__disc::after {
  content: "";
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  background: var(--cfm-white);
  background-image:
    radial-gradient(circle at center, var(--cfm-red) 0%, var(--cfm-red) 50%, var(--cfm-red-deep) 100%);
  box-shadow: inset 0 0 0 6px rgba(0,0,0,.1);
}
.hero__disc::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  background: var(--cfm-black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__cover {
  position: absolute;
  width: 64%;
  aspect-ratio: 1 / 1;
  top: -6%;
  left: -10%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--cfm-white);
  transform: rotate(-6deg);
}
.hero__cover img { width: 100%; height: 100%; object-fit: cover; }

.hero__prada {
  position: absolute;
  right: -6%;
  bottom: -4%;
  width: 56%;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 4px 0 rgba(0,0,0,.25);
  transform: rotate(4deg);
  border: 4px solid #fff;
  background: #000;
  transition: transform .25s ease;
}
.hero__prada:hover { transform: rotate(2deg) translateY(-4px); }
.hero__prada img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__prada-tag {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--cfm-red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
}
.hero__prada-tag span:first-child {
  background: var(--cfm-red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .hero__prada { right: -2%; width: 50%; }
}

/* ============================================================
   JEUX CHERIE FM
   ============================================================ */
.jeux {
  position: relative;
  background: var(--cfm-red);
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}
.jeux__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 280px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.07);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
}
.jeux__inner { position: relative; z-index: 1; }
.jeux__head {
  text-align: center;
  margin-bottom: 50px;
}
.jeux__eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--cfm-red);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.jeux__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.jeux__title em {
  font-family: var(--font-italic, 'Inter');
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
}
.jeux__sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.jeux__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.jeu-card {
  background: #fff;
  color: var(--cfm-black);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.jeu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(0,0,0,.35);
}
.jeu-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cfm-red);
}
.jeu-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.jeu-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cfm-black);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}
.jeu-card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jeu-card__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.jeu-card__body p {
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  margin: 0;
}
.jeu-card__kw {
  margin-top: 6px;
  font-size: 12px;
  color: #777;
  border-top: 1px dashed #e5e5e5;
  padding-top: 12px;
}
.jeu-card__kw strong {
  color: var(--cfm-red);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.jeux__cta { text-align: center; }
.jeux .btn--white {
  background: #fff;
  color: var(--cfm-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.jeux .btn--white:hover { background: var(--cfm-black); color: #fff; }

@media (max-width: 900px) {
  .jeux__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PLAYER STICKY (BOTTOM)
   ============================================================ */
.cfm-player {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(180deg, #0E0E12 0%, #050507 100%);
  color: var(--cfm-white);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -20px 50px rgba(0,0,0,.35);
}
.cfm-player__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 124px;
  padding: 0 32px;
  max-width: 1500px;
  margin: 0 auto;
}

.cfm-player__side {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.cfm-player__side--left { justify-content: flex-start; }
.cfm-player__side--right { justify-content: flex-end; flex-direction: row-reverse; }
.cfm-player__side--right .cfm-player__track-meta { text-align: right; }

.cfm-player__cover-sm {
  width: 52px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #2a2a2e;
  position: relative;
}
.cfm-player__cover-sm img { width: 100%; height: 100%; object-fit: cover; }

.cfm-player__track-meta {
  min-width: 0;
}
.cfm-player__track-meta .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.cfm-player__track-meta .ttl {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cfm-player__track-meta .art {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Centerpiece - now playing */
.cfm-player__center {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cfm-player__cover-lg {
  width: 78px; height: 78px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 28px rgba(228,5,33,.35);
}
.cfm-player__cover-lg img { width: 100%; height: 100%; object-fit: cover; }
.cfm-player__cover-lg::after {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid var(--cfm-red);
  border-radius: 12px;
  pointer-events: none;
}

.cfm-player__now {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 360px;
}
.cfm-player__now-meta {
  text-align: center;
}
.cfm-player__now-meta .ttl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.cfm-player__now-meta .art {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

.cfm-player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: nowrap;
}
.cfm-player__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .15s, transform .15s, color .15s;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.cfm-player__btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.cfm-player__btn.is-liked { color: var(--cfm-red); background: rgba(228,5,33,.18); }
.cfm-player__btn--icon {
  width: 30px; height: 30px;
  background: transparent;
}
.cfm-player__btn--icon:hover { background: rgba(255,255,255,.1); }
.cfm-player__btn--play {
  width: 52px; height: 52px;
  background: var(--cfm-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(228,5,33,.5);
}
.cfm-player__btn--play:hover {
  background: var(--cfm-red-deep);
  transform: scale(1.04);
}

/* Wave / volume area */
.cfm-player__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
  width: 56px;
  flex-shrink: 0;
}
.cfm-player__wave .bar {
  width: 3px;
  background: var(--cfm-red);
  border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}
.cfm-player__wave .bar:nth-child(1) { height: 30%; animation-delay: -.1s; }
.cfm-player__wave .bar:nth-child(2) { height: 70%; animation-delay: -.3s; }
.cfm-player__wave .bar:nth-child(3) { height: 100%; animation-delay: -.5s; }
.cfm-player__wave .bar:nth-child(4) { height: 60%; animation-delay: -.2s; }
.cfm-player__wave .bar:nth-child(5) { height: 80%; animation-delay: -.4s; }
.cfm-player__wave .bar:nth-child(6) { height: 40%; animation-delay: -.6s; }
.cfm-player__wave .bar:nth-child(7) { height: 65%; animation-delay: -.15s; }
.cfm-player__wave .bar:nth-child(8) { height: 90%; animation-delay: -.35s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.cfm-player.is-paused .cfm-player__wave .bar { animation-play-state: paused; opacity: .35; }

.cfm-player__volume {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.cfm-player__vol-track {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.cfm-player__vol-track:focus-visible {
  box-shadow: 0 0 0 2px var(--cfm-red);
}
.cfm-player__vol-fill {
  position: absolute;
  inset: 0 35% 0 0;
  background: var(--cfm-red);
  border-radius: 2px;
  pointer-events: none;
}
.cfm-player__vol-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - var(--knob-x, 35%));
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
}
.cfm-player__volume:hover .cfm-player__vol-track::after { opacity: 1; }

@media (max-width: 980px) {
  .cfm-player__inner {
    grid-template-columns: auto 1fr auto;
    height: 72px;
    padding: 0 12px;
    gap: 12px;
  }
  .cfm-player__side { display: none; }
  .cfm-player__cover-lg { width: 48px; height: 48px; }
  .cfm-player__now {
    min-width: 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
  }
  .cfm-player__live-pill { display: none; }
  .cfm-player__now-meta { text-align: left; flex: 1; min-width: 0; }
  .cfm-player__now-meta .ttl,
  .cfm-player__now-meta .art {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cfm-player__controls { margin-top: 0; flex-shrink: 0; }
  .cfm-player__btn--play { width: 44px; height: 44px; }
  .cfm-player__btn:not(.cfm-player__btn--play) { display: none; }
  .cfm-player__wave, .cfm-player__volume { display: none; }
  .cfm-player__center { flex: 1; min-width: 0; }
}

/* ============================================================
   TITRES DIFFUSÉS
   ============================================================ */
.timeline-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--cfm-white);
  border-radius: var(--r-md);
  border: 1px solid var(--cfm-gray-200);
  box-shadow: var(--shadow-sm);
}
.tc-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cfm-gray-500);
  font-weight: 600;
}
.tc-input, .tc-select {
  padding: 8px 12px;
  border: 1px solid var(--cfm-gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--cfm-white);
  color: var(--cfm-ink);
}
.tc-input:focus, .tc-select:focus { outline: 2px solid var(--cfm-red); border-color: var(--cfm-red); }

.tc-tabs {
  display: flex;
  gap: 4px;
  background: var(--cfm-gray-100);
  padding: 3px;
  border-radius: var(--r-pill);
  margin-left: auto;
}
.tc-tab {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--cfm-gray-700);
  transition: all .15s;
}
.tc-tab.active {
  background: var(--cfm-ink);
  color: #fff;
}

.timeline-hour {
  margin-bottom: 32px;
}
.timeline-hour__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.timeline-hour__label .h {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cfm-ink);
}
.timeline-hour__label .h em {
  color: var(--cfm-red);
  font-style: normal;
  font-size: 22px;
  margin-left: 2px;
}
.timeline-hour__label .line {
  flex: 1;
  height: 1px;
  background: var(--cfm-gray-300);
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 70px 56px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  transition: background .15s;
}
.timeline-row:hover { background: var(--cfm-white); box-shadow: var(--shadow-sm); }
.timeline-row__time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cfm-gray-700);
  font-variant-numeric: tabular-nums;
}
.timeline-row__cover {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cfm-gray-200);
}
.timeline-row__cover img { width:100%; height:100%; object-fit:cover; }
.timeline-row__title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.timeline-row__artist {
  font-size: 13px;
  color: var(--cfm-gray-500);
}
.timeline-row__dur {
  font-size: 12px;
  color: var(--cfm-gray-500);
  font-variant-numeric: tabular-nums;
}
.timeline-row__act {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cfm-gray-100);
  display: grid; place-items: center;
  color: var(--cfm-ink);
}
.timeline-row__act:hover { background: var(--cfm-red); color: #fff; }

@media (max-width: 720px) {
  .timeline-row { grid-template-columns: 56px 1fr auto; }
  .timeline-row__time { display: none; }
  .timeline-row__dur { display: none; }
}

/* ============================================================
   HORIZONTAL TRACK SLIDER (Titres diffusés)
   ============================================================ */
.hslider {
  position: relative;
  margin: 0 -8px;
}
.hslider__viewport {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 8px 16px;
}
.hslider__viewport::-webkit-scrollbar { display: none; }
.hslider__track {
  display: flex;
  gap: 18px;
}
.htrack {
  flex: 0 0 168px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: transform .2s;
}
.htrack:hover { transform: translateY(-3px); }
.htrack__cover {
  width: 168px;
  height: 168px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cfm-gray-200);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.htrack__cover img { width: 100%; height: 100%; object-fit: cover; }
.htrack__live {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--cfm-red);
  color: #fff;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.htrack--live .htrack__cover {
  outline: 2px solid var(--cfm-red);
  outline-offset: 2px;
}
.htrack__time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--cfm-red);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.htrack__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.htrack__artist {
  font-size: 12.5px;
  color: var(--cfm-gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hslider__nav {
  position: absolute;
  top: 76px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cfm-white);
  color: var(--cfm-ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all .15s;
}
.hslider__nav:hover {
  background: var(--cfm-red);
  color: #fff;
  transform: scale(1.05);
}
.hslider__nav--prev { left: -8px; }
.hslider__nav--next { right: -8px; }

@media (max-width: 720px) {
  .htrack, .htrack__cover { flex-basis: 140px; width: 140px; height: 140px; }
  .hslider__nav { display: none; }
}

/* ============================================================
   PLAYLIST AUDITEURS — Vote tiles (1 row + lead)
   ============================================================ */
.vote-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 22px;
  align-items: end;
}
@media (max-width: 1100px) { .vote-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; } .vote-row > :nth-child(5) { display:none; } }
@media (max-width: 820px)  { .vote-row { grid-template-columns: 1fr 1fr 1fr; } .vote-row > :nth-child(4) { display:none; } }
@media (max-width: 560px)  { .vote-row { grid-template-columns: 1fr 1fr; } .vote-row > :nth-child(3) { display:none; } }

.vote-tile {
  position: relative;
  display: flex;
  flex-direction: column;
}
.vote-tile__cover {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--cfm-gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.vote-tile__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vote-tile:hover .vote-tile__cover img { transform: scale(1.05); }
.vote-tile__rank {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
  letter-spacing: 0;
}
.vote-tile--lead .vote-tile__rank {
  background: var(--cfm-red);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-shadow: none;
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(228,5,33,.4);
}
.vote-tile__play {
  position: absolute;
  bottom: 12px; left: 12px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s;
  border: 0;
  cursor: pointer;
}
.vote-tile:hover .vote-tile__play, .vote-tile__play.playing { opacity: 1; transform: translateY(0); }

/* LIKE button — la grosse mise en avant */
.vote-tile__like {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: var(--cfm-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: all .18s ease;
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.vote-tile__like:hover {
  background: #fff;
  color: var(--cfm-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.vote-tile__like svg { transition: transform .2s; }
.vote-tile__like:hover svg { transform: scale(1.15); }
.vote-tile__like.is-liked {
  background: var(--cfm-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(228,5,33,.5);
}
.vote-tile__like.is-liked svg { animation: heart-pop .35s ease; }
@keyframes heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  100% { transform: scale(1.15); }
}

.vote-tile--lead .vote-tile__like {
  padding: 10px 16px 10px 13px;
  font-size: 14px;
}

.vote-tile__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: var(--cfm-ink);
  text-transform: none;
  letter-spacing: 0;
}
.vote-tile__artist {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--cfm-gray-500);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   PAGE PLAYLIST AUDITEURS — Hero + Top 10 + Liste 40
   ============================================================ */
.vote-hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    linear-gradient(rgba(228,5,33,.78), rgba(180,0,20,.85)),
    url("/cherie/assets/cfm-bg-red-3d.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.vote-hero__bgtxt {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(110px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  word-spacing: 28px;
  white-space: normal;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  padding: 30px 0;
  opacity: .9;
}
.vote-hero__inner { position: relative; z-index: 1; }
.vote-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  transition: background .15s;
}
.vote-back:hover { background: rgba(255,255,255,.22); color: #fff; }

.vote-hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.vote-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.98;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
}
.vote-hero__title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: 0.78em;
  text-transform: uppercase;
}
.vote-hero__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  margin: 0 0 32px;
  text-transform: none;
  letter-spacing: 0;
}
.vote-hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.vote-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
}
.vote-stat__lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
}

/* Section heads on vote page */
.vote-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.vote-section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  color: var(--cfm-ink);
}
.vote-section-head__hint {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cfm-gray-500);
}

/* Search input */
.vote-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cfm-gray-100);
  border: 1px solid var(--cfm-gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--cfm-gray-500);
  min-width: 280px;
}
.vote-search input {
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--cfm-ink);
  flex: 1;
  text-transform: none;
  letter-spacing: 0;
}
.vote-search input::placeholder { color: var(--cfm-gray-500); }

/* TOP 10 — grandes vignettes */
.vote-top10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 22px;
}
@media (max-width: 1100px) { .vote-top10 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px)  { .vote-top10 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .vote-top10 { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }

.v10-tile { display: flex; flex-direction: column; }
.v10-tile__cover {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cfm-gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.v10-tile__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.v10-tile:hover .v10-tile__cover img { transform: scale(1.06); }
.v10-tile__rank {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.v10-tile--first .v10-tile__rank {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cfm-red);
  display: grid; place-items: center;
  text-shadow: none;
  font-size: 24px;
  box-shadow: 0 8px 22px rgba(228,5,33,.5);
}
.v10-tile__play {
  position: absolute;
  bottom: 12px; left: 12px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s;
  border: 0;
  cursor: pointer;
}
.v10-tile:hover .v10-tile__play, .v10-tile__play.playing { opacity: 1; transform: translateY(0); }

.v10-tile__body { display: flex; flex-direction: column; gap: 12px; }
.v10-tile__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--cfm-ink);
  text-transform: none;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v10-tile__artist {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--cfm-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* LIKE button — gros, central, mis en avant */
.v10-tile__like {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--cfm-gray-100);
  color: var(--cfm-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1.5px solid var(--cfm-gray-200);
  cursor: pointer;
  transition: all .18s ease;
  margin-top: 4px;
}
.v10-tile__like:hover {
  background: #fff;
  color: var(--cfm-red);
  border-color: var(--cfm-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(228,5,33,.18);
}
.v10-tile__like svg { transition: transform .2s; flex-shrink: 0; }
.v10-tile__like:hover svg { transform: scale(1.18); }
.v10-tile__like.is-liked {
  background: var(--cfm-red);
  color: #fff;
  border-color: var(--cfm-red);
  box-shadow: 0 8px 22px rgba(228,5,33,.5);
}
.v10-tile__like.is-liked svg { animation: heart-pop .35s ease; }
.v10-tile__like-cta {
  margin-left: auto;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* LISTE 11 → 50 */
.vote-list {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vrow {
  display: grid;
  grid-template-columns: 56px 60px 1fr 200px auto;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--cfm-gray-100);
  transition: background .15s;
}
.vrow:last-child { border-bottom: 0; }
.vrow:hover { background: var(--cfm-gray-100); }

.vrow__rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cfm-gray-500);
  text-align: center;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.vrow__cover {
  position: relative;
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cfm-gray-200);
  flex-shrink: 0;
}
.vrow__cover img { width: 100%; height: 100%; object-fit: cover; }
.vrow__play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .15s;
  border: 0;
  cursor: pointer;
}
.vrow:hover .vrow__play, .vrow__play.playing { opacity: 1; }

.vrow__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--cfm-ink);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.25;
}
.vrow__artist {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--cfm-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.vrow__bar {
  height: 5px;
  background: var(--cfm-gray-200);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.vrow__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--cfm-red), #ff3550);
  border-radius: 3px;
  transition: width .3s ease;
}

/* LIKE button — version compacte mais bien visible */
.vrow__like {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--cfm-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--cfm-gray-200);
  cursor: pointer;
  transition: all .18s ease;
  min-width: 92px;
  justify-content: center;
}
.vrow__like:hover {
  border-color: var(--cfm-red);
  color: var(--cfm-red);
  transform: translateY(-1px);
}
.vrow__like svg { transition: transform .2s; flex-shrink: 0; }
.vrow__like:hover svg { transform: scale(1.18); }
.vrow__like.is-liked {
  background: var(--cfm-red);
  color: #fff;
  border-color: var(--cfm-red);
  box-shadow: 0 4px 14px rgba(228,5,33,.35);
}
.vrow__like.is-liked svg { animation: heart-pop .35s ease; }

@media (max-width: 720px) {
  .vrow { grid-template-columns: 36px 48px 1fr auto; padding: 12px 14px; gap: 12px; }
  .vrow__bar { display: none; }
  .vrow__cover { width: 48px; height: 48px; }
  .vrow__like { min-width: 0; padding: 8px 12px; }
}

/* Legacy stub preserved (no-op rules under here for old vote-grid) */
.vote-grid--legacy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .vote-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .vote-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.vote-card {
  background: var(--cfm-white);
  border-radius: var(--r-lg);
  padding: 14px;
  position: relative;
  border: 1px solid var(--cfm-gray-200);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.vote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vote-card__rank {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.vote-card--top .vote-card__rank { background: var(--cfm-red); }
.vote-card__cover {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cfm-gray-200);
  margin-bottom: 12px;
}
.vote-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vote-card:hover .vote-card__cover img { transform: scale(1.05); }
.vote-card__play {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cfm-red);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(228,5,33,.4);
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s;
}
.vote-card:hover .vote-card__play,
.vote-card__play.playing { opacity: 1; transform: translateY(0); }
.vote-card__body { display: flex; flex-direction: column; flex: 1; }
.vote-card__title { font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.vote-card__artist { font-size: 12.5px; color: var(--cfm-gray-500); margin-top: 2px; flex: 1; }
.vote-card__actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.like-btn, .ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: all .15s;
}
.like-btn {
  background: var(--cfm-gray-100);
  color: var(--cfm-gray-700);
  flex: 1;
  justify-content: center;
}
.like-btn:hover { background: var(--cfm-red-soft); color: var(--cfm-red); }
.like-btn.is-liked {
  background: var(--cfm-red);
  color: #fff;
}
.ext-btn {
  background: var(--cfm-ink);
  color: #fff;
}
.ext-btn:hover { background: var(--cfm-red); }

/* WhatsApp CTAs */
.whatsapp__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
   ============================================================ */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .cards-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .cards-row { grid-template-columns: 1fr; } }

.news-card {
  position: relative;
  background: var(--cfm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.news-card__media .tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: var(--cfm-red);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-card__media .tag--gain {
  background: var(--gy-sun); color: var(--cfm-black);
}
.news-card__body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__date {
  font-size: 12px;
  color: var(--cfm-gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.news-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-wrap: balance;
}
.news-card__excerpt {
  font-size: 14px;
  color: var(--cfm-gray-700);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.news-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cfm-red);
}
.news-card__cta::after {
  content: "→";
  transition: transform .15s;
}
.news-card:hover .news-card__cta::after { transform: translateX(3px); }

/* ============================================================
   CLASSEMENT (top diffusés)
   ============================================================ */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--cfm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cfm-gray-200);
}
@media (max-width: 720px) { .rank-grid { grid-template-columns: 1fr; } }

.rank-row {
  display: grid;
  grid-template-columns: 56px 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--cfm-gray-200);
  position: relative;
  transition: background .15s;
}
.rank-row:hover { background: var(--cfm-gray-100); }
.rank-row__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cfm-gray-300);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.rank-row--top .rank-row__num { color: var(--cfm-red); }
.rank-row__cover { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: var(--cfm-gray-200); }
.rank-row__cover img { width: 100%; height: 100%; object-fit: cover; }
.rank-row__t { font-weight: 600; font-size: 15px; }
.rank-row__a { font-size: 13px; color: var(--cfm-gray-500); margin-top: 2px; }
.rank-row__plays {
  text-align: right;
}
.rank-row__plays .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.rank-row__plays .lbl {
  font-size: 11px;
  color: var(--cfm-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   ACTU GUYANE (partenaires)
   ============================================================ */
.gy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.gy-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cfm-ink);
  color: #fff;
  min-height: 280px;
  isolation: isolate;
  cursor: pointer;
  transition: transform .25s ease;
}
.gy-card:hover { transform: translateY(-4px); }
.gy-card__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.gy-card__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
}
.gy-card__bg img,
.gy-card__bg svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gy-card__body {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gy-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 11px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gy-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  text-wrap: balance;
}
.gy-card__loc {
  font-size: 13px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gy-card--xl { grid-column: span 6; min-height: 380px; }
.gy-card--xl .gy-card__title { font-size: 32px; }
.gy-card--md { grid-column: span 3; }
.gy-card--lg { grid-column: span 4; }
.gy-card--sm { grid-column: span 3; min-height: 240px; }

@media (max-width: 980px) {
  .gy-card--xl, .gy-card--lg { grid-column: span 6; }
  .gy-card--md, .gy-card--sm { grid-column: span 6; }
}
@media (max-width: 600px) {
  .gy-card--xl, .gy-card--lg, .gy-card--md, .gy-card--sm { grid-column: span 12; }
}

/* ============================================================
   PLAYLIST 2000
   ============================================================ */
.pl-hero {
  background: linear-gradient(135deg, var(--cfm-red) 0%, var(--cfm-red-deep) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.pl-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 90% 50%, rgba(255,255,255,.15), transparent 60%);
}
.pl-hero__cover {
  width: 160px; height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pl-hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.pl-hero__copy { position: relative; z-index: 1; }
.pl-hero__copy .eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .85;
}
.pl-hero__copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0;
  margin: 8px 0 6px;
  line-height: 1.0;
  text-transform: uppercase;
}
.pl-hero__copy p {
  font-size: 15px;
  opacity: .9;
  max-width: 50ch;
  margin: 0 0 16px;
}

.pl-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--cfm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cfm-gray-200);
}
@media (max-width: 820px) { .pl-list { grid-template-columns: 1fr; } }

.pl-row {
  display: grid;
  grid-template-columns: 36px 56px 1fr 36px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--cfm-gray-200);
  transition: background .15s;
}
.pl-row:hover { background: var(--cfm-gray-100); }
.pl-row__rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cfm-gray-500);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.pl-row--top .pl-row__rank { color: var(--cfm-red); font-size: 22px; }
.pl-row__cover { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: var(--cfm-gray-200); }
.pl-row__cover img { width: 100%; height: 100%; object-fit: cover; }
.pl-row__t { font-weight: 600; font-size: 14.5px; }
.pl-row__a { font-size: 12.5px; color: var(--cfm-gray-500); margin-top: 2px; }
.pl-row__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cfm-gray-100);
  display: grid; place-items: center;
  color: var(--cfm-ink);
  transition: all .15s;
}
.pl-row__play:hover { background: var(--cfm-red); color: #fff; transform: scale(1.05); }
.pl-row__play.playing {
  background: var(--cfm-red); color: #fff;
}
.pl-row__play.playing svg { animation: spin 2s linear infinite; }

/* ============================================================
   WHATSAPP CHERIE INSIDE
   ============================================================ */
.whatsapp {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.whatsapp::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,.18), transparent 70%);
  pointer-events: none;
}
.whatsapp__copy { position: relative; z-index: 1; }
.whatsapp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(37,211,102,.18);
  color: #25D366;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.whatsapp__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-wrap: balance;
  text-transform: uppercase;
}
.whatsapp__title em { font-family: var(--font-body); font-style: italic; color: #25D366; font-weight: 800; font-size: 0.95em; text-transform: uppercase; }
.whatsapp__sub {
  font-size: 17px;
  opacity: .8;
  margin-bottom: 28px;
  max-width: 50ch;
}
.whatsapp__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.06);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.1);
  max-width: 480px;
}
.whatsapp__form .prefix {
  display: flex; align-items: center;
  padding: 0 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border-right: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
.whatsapp__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 14px 12px;
  font-size: 15px;
  font-family: inherit;
  min-width: 140px;
  outline: none;
}
.whatsapp__form input::placeholder { color: rgba(255,255,255,.4); }
.whatsapp__form button {
  background: #25D366;
  color: #0a0a0a;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  transition: background .15s;
}
.whatsapp__form button:hover { background: #1fb958; }

.whatsapp__perks {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.whatsapp__perks .perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  opacity: .85;
}
.whatsapp__perks .perk svg { color: #25D366; flex-shrink: 0; }

.whatsapp__phone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.phone-mock {
  width: 280px;
  background: #0F1A14;
  border-radius: 38px;
  padding: 14px;
  border: 8px solid #1a1a1a;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 2;
}
.phone-mock__head {
  background: #075E54;
  padding: 30px 14px 14px;
  border-radius: 26px 26px 6px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.phone-mock__avatar {
  width: 36px; height: 36px;
  background: var(--cfm-red);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}
.phone-mock__head > div { min-width: 0; flex: 1; }
.phone-mock__head .nm { font-family: var(--font-body); font-weight: 700; font-size: 13px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0; text-transform: none; }
.phone-mock__head .st { font-family: var(--font-body); font-size: 10px; opacity: .8; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0; text-transform: none; }
.phone-mock__body {
  background: #ECE5DD;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 0 6px 6px;
  min-height: 320px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.02) 0 2px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.02) 0 2px, transparent 2px);
}
.phone-mock__msg {
  background: #fff;
  padding: 8px 11px;
  border-radius: 8px 8px 8px 2px;
  max-width: 85%;
  font-size: 12px;
  line-height: 1.35;
  color: #1a1a1a;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.phone-mock__msg .lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--cfm-red);
  margin-bottom: 2px;
  display: block;
}
.phone-mock__msg .tm {
  font-size: 9px;
  text-align: right;
  color: rgba(0,0,0,.4);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .whatsapp { grid-template-columns: 1fr; padding: 36px 28px; }
  .whatsapp__phone { display: none; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--cfm-red);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 0% 0%, rgba(255,255,255,.15), transparent),
    radial-gradient(500px 300px at 100% 100%, rgba(0,0,0,.2), transparent);
}
.newsletter__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 auto 12px;
  max-width: 18ch;
  text-wrap: balance;
  text-transform: uppercase;
}
.newsletter__title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: 0.95em;
  text-transform: uppercase;
}
.newsletter__sub {
  position: relative;
  font-size: 16px;
  opacity: .9;
  max-width: 52ch;
  margin: 0 auto 28px;
}
.newsletter__form {
  position: relative;
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 6px;
  border-radius: var(--r-pill);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter__form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
  color: var(--cfm-ink);
  font-family: inherit;
}
.newsletter__form button {
  background: var(--cfm-ink);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s;
}
.newsletter__form button:hover { background: #000; }

/* ============================================================
   FRÉQUENCES + APP MOBILE
   ============================================================ */
.freq-app {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 980px) { .freq-app { grid-template-columns: 1fr; } }

.freq-card {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.freq-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.freq-card__sub {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 28px;
}

.freq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.freq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.freq-item:last-child { border-bottom: none; }
.freq-item__city {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.freq-item__city .meta {
  font-size: 12px;
  opacity: .55;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.freq-item__hz {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--cfm-red);
  font-variant-numeric: tabular-nums;
}
.freq-item__hz .u {
  font-size: 14px;
  opacity: .8;
  margin-left: 4px;
  font-weight: 600;
}

/* Map Guyane stylisée */
.freq-map {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  opacity: .12;
  pointer-events: none;
}

/* App card */
.app-card {
  background: var(--cfm-gray-100);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.app-card__copy { flex: 1; }
.app-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.app-card__sub {
  color: var(--cfm-gray-700);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.app-card__stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--cfm-ink);
  color: #fff;
  border-radius: 10px;
  transition: transform .15s;
}
.store-btn:hover { transform: translateY(-1px); }
.store-btn .lbl {
  display: flex; flex-direction: column;
  line-height: 1.05;
}
.store-btn .lbl .top { font-size: 9.5px; opacity: .75; letter-spacing: 0.05em; text-transform: uppercase; }
.store-btn .lbl .bot { font-size: 14px; font-weight: 700; }

.app-card__phone {
  width: 160px;
  flex-shrink: 0;
  position: relative;
}
.app-card__phone .frame {
  background: #0a0a0a;
  border-radius: 28px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.app-card__phone .frame::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 14px;
  background: #0a0a0a;
  border-radius: 8px;
  z-index: 2;
}
.app-card__phone .scr {
  background: var(--cfm-red);
  border-radius: 22px;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.app-card__phone .scr .logo {
  font-family: var(--font-script);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
}
.app-card__phone .scr .label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 14px;
}
.app-card__phone .scr .play {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  color: var(--cfm-red);
}

@media (max-width: 600px) {
  .app-card { flex-direction: column; text-align: center; padding: 28px; }
  .app-card__stores { justify-content: center; }
}

/* ============================================================
   ACTUS — featured + side list
   ============================================================ */
.bloc--actus { padding: 84px 0; background: #fff; }
.bloc--actus.bloc--dark { background: var(--cfm-black, #0a0a0a); color: #fff; }
.bloc--actus.bloc--dark .actus-head__title { color: #fff; }
.bloc--actus.bloc--dark .actus-head__sub { color: rgba(255,255,255,.78); }
.bloc--actus.bloc--dark .actu-feat,
.bloc--actus.bloc--dark .actu-row { background: #161616; border-color: rgba(255,255,255,.08); }
.bloc--actus.bloc--dark .actu-feat__title,
.bloc--actus.bloc--dark .actu-row__title { color: #fff; }
.bloc--actus.bloc--dark .actu-feat__excerpt { color: rgba(255,255,255,.75); }
.bloc--actus.bloc--dark .actu-feat__date,
.bloc--actus.bloc--dark .actu-row__date { color: rgba(255,255,255,.55); }
.bloc--actus.bloc--dark .actu-row:hover { background: #1f1f1f; }
.bloc--actus.bloc--dark .btn--ghost { border-color: #fff; color: #fff; }
.bloc--actus.bloc--dark .btn--ghost:hover { background: #fff; color: var(--cfm-black, #0a0a0a); }
.actus-head { text-align: center; margin: 0 0 36px; }
.actus-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  color: var(--cfm-ink);
}
.actus-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .actus-grid { grid-template-columns: 1fr; gap: 32px; } }

.actu-feature { display: flex; flex-direction: column; gap: 18px; }
.actu-feature__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cfm-gray-200);
}
.actu-feature__icon {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 120px; opacity: .35;
}
.actu-feature__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  color: var(--cfm-ink);
}
.actu-feature__excerpt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cfm-gray-700);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.actu-feature__date,
.actu-row__date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--cfm-gray-500);
  text-transform: none;
  letter-spacing: 0.02em;
}

.actu-list { display: flex; flex-direction: column; gap: 24px; }
.actu-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  align-items: start;
}
.actu-row__media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
}
.actu-row__playdot {
  position: absolute;
  bottom: 8px; left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  color: #fff;
  display: grid; place-items: center;
}
.actu-row__icon {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 38px; opacity: .35;
}
.actu-row__body { padding-top: 2px; }
.actu-row__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--cfm-ink);
  letter-spacing: 0;
  text-transform: none;
  transition: color .15s;
}
.actu-row:hover .actu-row__title { color: var(--cfm-red); }

.actus-foot { text-align: center; margin-top: 48px; }

/* ============================================================
   PLAYLIST AUDITEURS (HOME) — fond FEEL GOOD MUSIC fourni
   ============================================================ */
.bloc--feelgood {
  position: relative;
  padding: 80px 0 90px;
  background: url("/cherie/assets/cfm-bg-feelgood.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.bloc--feelgood > .container { position: relative; z-index: 1; }
.bloc--feelgood .sec-head__title,
.bloc--feelgood .sec-head__title em { color: #fff; }
.bloc--feelgood .sec-head__sub { color: rgba(255,255,255,.9); }
.bloc--feelgood .sec-head__eyebrow { color: rgba(255,255,255,.9); }
.bloc--feelgood .sec-head__eyebrow::before { background: #fff; }
.bloc--feelgood .pa-tile__title { color: #fff; }
.bloc--feelgood .pa-tile__artist { color: rgba(255,255,255,.78); }
.bloc--feelgood .btn--ghost {
  border-color: #fff; color: #fff; background: transparent;
}
.bloc--feelgood .btn--ghost:hover { background: #fff; color: var(--cfm-red); }

/* ============================================================
   PLAYLIST 2000 (HOME) — fond noir solide
   ============================================================ */
.bloc--pl2000 {
  position: relative;
  padding: 80px 0 90px;
  background: var(--cfm-black, #0a0a0a);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.bloc--pl2000::before { content: none; }
.bloc--pl2000 > .container { position: relative; z-index: 1; }
.bloc--pl2000 .sec-head__title { color: #fff; }
.bloc--pl2000 .sec-head__title em { color: #fff; opacity: .92; }
.bloc--pl2000 .sec-head__sub { color: rgba(255,255,255,.85); }
.bloc--pl2000 .sec-head__eyebrow { color: rgba(255,255,255,.85); }
.bloc--pl2000 .sec-head__eyebrow::before { background: #fff; }
.bloc--pl2000 .pl-tile__title { color: #fff; }
.bloc--pl2000 .pl-tile__artist { color: rgba(255,255,255,.75); }
.bloc--pl2000 .btn--ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.bloc--pl2000 .btn--ghost:hover { background: #fff; color: var(--cfm-red); }

/* Playlist 2000 — strip horizontale (home preview) */
.pl-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .pl-strip { grid-template-columns: repeat(2, 1fr); } }
.pl-tile { text-align: left; }
.pl-tile__cover {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cfm-gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.pl-tile__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pl-tile:hover .pl-tile__cover img { transform: scale(1.05); }
.pl-tile__rank {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.pl-tile__play {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cfm-red);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(228,5,33,.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all .2s;
}
.pl-tile:hover .pl-tile__play, .pl-tile__play.playing { opacity: 1; transform: translateY(0); }
.pl-tile__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.pl-tile__artist {
  font-size: 12px;
  color: var(--cfm-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cfm-footer {
  background: var(--cfm-black);
  color: #fff;
  padding: 80px 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cfm-footer::before {
  content: "";
  position: absolute;
  inset: -50% 0 0 0;
  background: radial-gradient(800px 400px at 50% 0%, rgba(228,5,33,.15), transparent 60%);
  pointer-events: none;
}
.cfm-footer__inner { position: relative; }
.cfm-footer__logo {
  width: 160px;
  margin: 0 auto 24px;
}
.cfm-footer__claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0;
  line-height: 1.0;
  margin: 0 0 8px;
  text-wrap: balance;
  text-transform: uppercase;
}
.cfm-footer__claim em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: 0.95em;
  color: var(--cfm-red);
  text-transform: uppercase;
}
.cfm-footer__sub {
  opacity: .6;
  font-size: 15px;
  max-width: 50ch;
  margin: 0 auto 36px;
}
.cfm-footer__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cfm-footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.cfm-footer__nav a:hover { color: #fff; }

.cfm-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.cfm-footer__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: #fff;
  transition: all .15s;
}
.cfm-footer__social a:hover {
  background: var(--cfm-red);
  border-color: var(--cfm-red);
  transform: translateY(-2px);
}

.cfm-footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.cfm-footer__legal a:hover { color: #fff; }
.cfm-footer__legal .sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* ============================================================
   PAGE JEUX (jeux.html)
   ============================================================ */
.jpage-hero {
  position: relative;
  background: var(--cfm-red);
  color: #fff;
  padding: 80px 0 90px;
  overflow: hidden;
}
.jpage-hero__bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 280px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.07);
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  line-height: 1;
}
.jpage-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.jpage-back {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.jpage-back:hover { color: #fff; }
.jpage-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.jpage-hero__title em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
}
.jpage-hero__sub {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
}
.jpage-hero__stats {
  display: flex;
  gap: 36px;
}
.jpage-hero__stats > div {
  display: flex;
  flex-direction: column;
}
.jpage-hero__stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.jpage-hero__stats span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.jpage-feat {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  transform: rotate(-2deg);
  border: 5px solid #fff;
  text-decoration: none;
  background: var(--cfm-black);
  transition: transform .3s ease;
}
.jpage-feat:hover { transform: rotate(0deg) translateY(-4px); }
.jpage-feat img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jpage-feat__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: #fff;
}
.jpage-feat__badge {
  display: inline-block;
  background: var(--gy-sun, #FFD23F);
  color: var(--cfm-black);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.jpage-feat__overlay h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 4px;
  line-height: 1.1;
}
.jpage-feat__overlay p { font-size: 13px; margin: 0; color: rgba(255,255,255,.85); }

/* Filtres */
.jpage-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 24px;
}
.jpage-filter {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
}
.jpage-filter:hover { border-color: #999; }
.jpage-filter.is-active {
  background: var(--cfm-black);
  color: #fff;
  border-color: var(--cfm-black);
}

/* Grille jeux */
.jpage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.jpage-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.jpage-card:hover {
  border-color: #ccc;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.jpage-card.is-ended { opacity: 0.65; }
.jpage-card__media {
  position: relative;
  background: var(--cfm-red);
  overflow: hidden;
}
.jpage-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.jpage-card__cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cfm-black);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
}
.jpage-status {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.jpage-card__body {
  padding: 22px 22px 22px 0;
  display: flex;
  flex-direction: column;
}
.jpage-card__end {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cfm-red);
  margin-bottom: 8px;
}
.jpage-card__body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.jpage-card__lead {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin: 0 0 8px;
}
.jpage-card__rules {
  font-size: 12px;
  line-height: 1.5;
  color: #777;
  margin: 0 0 14px;
}
.jpage-card__keyword {
  background: #fff5f5;
  border: 1px dashed var(--cfm-red);
  color: #333;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.jpage-card__keyword strong {
  color: var(--cfm-red);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.jpage-card__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.jpage-card__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.jpage-card__actions .btn--red {
  background: var(--cfm-red);
  color: #fff;
}
.jpage-card__actions .btn--red:hover { background: var(--cfm-black); }
.jpage-card__actions .btn--ghost {
  background: #f0f0f0;
  color: #888;
  cursor: not-allowed;
}
.jpage-card__rule-link {
  font-size: 12px;
  color: #888;
  text-decoration: none;
}
.jpage-card__rule-link:hover { color: var(--cfm-red); }

/* Comment jouer */
.jpage-how {
  background: var(--cfm-black);
  color: #fff;
  padding: 70px 0 80px;
}
.jpage-how__head {
  text-align: center;
  margin-bottom: 40px;
}
.jpage-how__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}
.jpage-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.jpage-how__steps > div {
  background: #161616;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 24px;
}
.jpage-how__steps > div span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--cfm-red);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.jpage-how__steps > div h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.jpage-how__steps > div p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  margin: 0;
}

@media (max-width: 900px) {
  .jpage-hero__inner { grid-template-columns: 1fr; }
  .jpage-feat { max-width: 360px; margin: 0 auto; }
  .jpage-grid { grid-template-columns: 1fr; }
  .jpage-card { grid-template-columns: 130px 1fr; gap: 14px; }
  .jpage-card__body { padding: 16px 16px 16px 0; }
  .jpage-how__steps { grid-template-columns: 1fr; }
}

/* ===================== PAGE ARTICLE ===================== */
.article-detail { max-width: 760px; margin: 0 auto; }
.article-cat { display:inline-block; background: var(--cfm-red); color:#fff; font-weight:700; text-transform:uppercase; letter-spacing:.04em; font-size:12px; padding:4px 10px; border-radius:6px; margin-bottom:12px; }
.article-titre { font-family: var(--font-display); font-weight:700; text-transform:uppercase; line-height:1.02; font-size:40px; color: var(--cfm-ink); margin-bottom:8px; }
.article-date { display:block; color: var(--cfm-gray-500); font-size:13px; margin-bottom:18px; }
.article-image { width:100%; border-radius:16px; margin:6px 0 20px; }
.article-chapo { font-size:18px; color: var(--cfm-gray-700); font-weight:600; margin-bottom:18px; }
.article-corps { color: var(--cfm-ink); font-size:16px; line-height:1.7; }
.article-corps h2 { font-family: var(--font-display); text-transform:uppercase; font-size:26px; margin:1.2em 0 .4em; }
.article-corps h3 { font-family: var(--font-display); text-transform:uppercase; font-size:21px; margin:1em 0 .3em; }
.article-corps p { margin:.7em 0; }
.article-corps a { color: var(--cfm-red); text-decoration: underline; }
.article-corps ul, .article-corps ol { padding-left:1.4em; margin:.7em 0; }
.article-corps img { max-width:100%; border-radius:12px; margin:.8em 0; }
.article-corps blockquote { border-left:3px solid var(--cfm-red); padding-left:14px; color: var(--cfm-gray-700); margin:.8em 0; }
.actu-feature__title a { color: inherit; }
