:root {
  /* Black / anthracite backgrounds */
  --bg: #0a0a0a;
  --bg-elevated: #0f0f0f;
  --surface: #1a1a1a;
  --surface-glass: rgba(255, 255, 255, 0.03);
  --surface-warm: #242424;
  --vinyl: #080808;
  /* Text */
  --ink: #f5f5f5;
  --muted: #888888;
  /* Borders */
  --line: rgba(255, 255, 255, 0.08);
  --gold-border: rgba(255, 255, 255, 0.13);
  /* Red accent (primary) */
  --accent: #c8102e;
  --accent-bright: #e8192e;
  --accent-glow: rgba(220, 20, 48, 0.42);
  /* Red highlights (replaces amber role) */
  --amber: #e8192e;
  --amber-soft: #ff3349;
  --amber-glow: rgba(220, 20, 48, 0.35);
  --amber-slot: #e8192e;
  /* Night */
  --night: #060606;
  /* Shadows */
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  --shadow-rest: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 18px 52px rgba(0, 0, 0, 0.55);
  --shadow-warm: 0 12px 40px rgba(220, 20, 48, 0.14);
  --shadow-glow-play: 0 12px 40px rgba(220, 20, 48, 0.52);
  /* Easing */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
  /* Focus ring */
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px rgba(220, 20, 48, 0.9);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --font-display: "Syne", Inter, system-ui, sans-serif;
  --font-ui: Inter, ui-sans-serif, system-ui, sans-serif;
  --grain-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-layer-gradient,
  .eyebrow-live-dot,
  .listen-strip-dot,
  .play-button,
  .quick-strip-card,
  .talent-card {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .feature-grid article:hover {
    transform: none;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.58;
}

::selection {
  background: rgba(220, 20, 48, 0.28);
  color: var(--ink);
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--accent-bright);
  color: #fff;
  font-weight: 800;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Header & nav */
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 110px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(10, 10, 10, 0.85);
  color: var(--ink);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.site-header.solid {
  background: rgba(12, 12, 12, 0.97);
}

.site-header.is-open {
  background: rgba(12, 12, 12, 0.99);
}

body.is-scrolled .site-header {
  background: rgba(8, 8, 8, 0.95);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(220, 20, 48, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1.5px solid rgba(220, 20, 48, 0.5);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent-bright) 0%, #8a0018 48%, var(--vinyl) 100%);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  box-shadow: 0 0 24px var(--amber-glow), inset 0 1px 0 rgba(255, 220, 100, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.main-nav a {
  position: relative;
  border-radius: 8px;
  padding: 9px 14px;
  color: rgba(240, 237, 232, 0.65);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background 0.2s var(--ease-soft),
    color 0.2s var(--ease-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.main-nav a:hover {
  background: rgba(220, 20, 48, 0.1);
  color: var(--amber-soft);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  background: rgba(220, 20, 48, 0.1);
  color: var(--amber-soft);
}

.main-nav a.active,
.main-nav a.is-active {
  background: rgba(220, 20, 48, 0.12);
  color: var(--amber-soft);
}

.main-nav a.active::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  margin-top: 110px;
  aspect-ratio: 1168 / 784;
  align-items: end;
  overflow: hidden;
  padding: clamp(var(--space-8), 6vh, var(--space-12)) clamp(var(--space-4), 6vw, var(--space-16)) clamp(var(--space-10), 8vh, var(--space-12));
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-layer-bottom {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.hero-image-tinted {
  filter: saturate(0.55) contrast(1.12) brightness(0.38) sepia(0.2);
  transform: scale(1.03);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer-gradient {
  background:
    linear-gradient(
      118deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.55) 44%,
      rgba(0, 0, 0, 0.12) 70%,
      transparent 88%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38) 0%, transparent 46%);
  animation: heroBreath 18s var(--ease-soft) infinite alternate;
}

@keyframes heroBreath {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.94;
  }
}

.hero-layer-vignette {
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: var(--grain-svg);
  background-size: 220px 220px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(46rem, 55%);
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-5);
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-live-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber-soft);
  box-shadow: 0 0 0 1px rgba(255, 220, 100, 0.3), 0 0 0 6px rgba(220, 20, 48, 0.20);
  animation: livePulse 2.4s var(--ease-soft) infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255, 220, 100, 0.3),
      0 0 0 6px rgba(220, 20, 48, 0.20);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.9);
    box-shadow:
      0 0 0 1px rgba(255, 220, 100, 0.2),
      0 0 0 12px rgba(220, 20, 48, 0.08);
  }
}

.eyebrow.light {
  color: var(--amber-slot);
}

.eyebrow span:not(.eyebrow-live-dot) {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber-soft);
  box-shadow: 0 0 0 8px rgba(220, 20, 48, 0.18);
}

.eyebrow.light span:not(.eyebrow-live-dot) {
  background: var(--amber-slot);
  box-shadow: 0 0 0 8px rgba(232, 184, 75, 0.15);
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-title-line {
  display: block;
}

.hero-title-line--sm {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.35em;
}

.hero-title-line--xl {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  /* Dégradé vertical blanc → rose pâle → rouge vif (style image fournie) */
  background: linear-gradient(180deg,
    #ffffff 0%,
    #ffd9dd 28%,
    #ff5566 60%,
    #e51d2c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.65))
          drop-shadow(0 0 28px rgba(220, 30, 50, 0.25));
  /* "Dance" et "Music" sur deux lignes empilées */
  white-space: pre-line;
  word-spacing: 999px; /* force le retour à la ligne entre les mots */
}

h1:not(.hero-title),
h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1:not(.hero-title) {
  max-width: 900px;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
}

.hero-copy {
  max-width: 38rem;
  margin: var(--space-6) 0 var(--space-8);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  line-height: 1.65;
}

/* Player */
.player-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 52rem);
  border: 1px solid rgba(220, 20, 48, 0.30);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(220, 20, 48, 0.07) 0%, transparent 50%),
    rgba(10, 10, 10, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(220, 20, 48, 0.07);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
}

.player-panel > * {
  position: relative;
  z-index: 1;
}

.player-panel--signature::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.player-panel.large {
  grid-template-columns: auto 1fr minmax(150px, 200px) auto;
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-bright) 0%, var(--accent) 55%, #8a0018 100%);
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 0 0 5px rgba(220, 20, 48, 0.15),
    0 8px 28px rgba(220, 20, 48, 0.45);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-soft);
}

.play-button:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 8px rgba(220, 20, 48, 0.20),
    0 12px 40px rgba(220, 20, 48, 0.65);
}

.play-button:focus-visible {
  box-shadow: var(--focus-ring), 0 12px 40px rgba(220, 20, 48, 0.65);
  outline: none;
}

.play-button.is-playing {
  animation: playRingPulse 2.2s ease-in-out infinite;
}

@keyframes playRingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 5px rgba(220, 20, 48, 0.18),
      0 8px 28px rgba(220, 20, 48, 0.50);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(220, 20, 48, 0.09),
      0 12px 42px rgba(220, 20, 48, 0.70);
  }
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.play-button.is-playing .play-icon {
  width: 18px;
  height: 22px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 6px solid #fff;
  border-right: 6px solid #fff;
}

.now-playing span,
.volume-control span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.now-playing strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.06rem;
}

.volume-control input[type="range"] {
  --vol-fill: 85%;
  width: 100%;
  height: 28px;
  margin: var(--space-2) 0 0;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  accent-color: var(--accent-bright, #e8192e);
  touch-action: manipulation;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -8px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.55), 0 0 14px rgba(232, 25, 46, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.volume-control input[type="range"]:hover::-webkit-slider-thumb,
.volume-control input[type="range"]:focus-visible::-webkit-slider-thumb,
.volume-control input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.12);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.65), 0 0 22px rgba(232, 25, 46, 0.95);
}

.volume-control input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.55), 0 0 14px rgba(232, 25, 46, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.volume-control input[type="range"]:hover::-moz-range-thumb,
.volume-control input[type="range"]:focus-visible::-moz-range-thumb,
.volume-control input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.12);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 2px 14px rgba(0, 0, 0, 0.65), 0 0 22px rgba(232, 25, 46, 0.95);
}

.volume-control input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent-bright, #e8192e) 0,
    var(--accent-bright, #e8192e) var(--vol-fill, 85%),
    rgba(255, 255, 255, 0.16) var(--vol-fill, 85%),
    rgba(255, 255, 255, 0.16) 100%
  );
}

.volume-control input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.volume-control input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--accent-bright, #e8192e);
}

.volume-control input:focus-visible {
  outline: none;
}

.volume-control input[type="range"]:focus-visible {
  box-shadow: none;
}

.stream-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(220, 20, 48, 0.08);
  color: var(--amber-soft);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--gold-border);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.stream-link:hover {
  background: rgba(220, 20, 48, 0.18);
  border-color: rgba(220, 20, 48, 0.5);
}

.stream-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Buttons (pages secondaires + contact) */
.button,
.cta-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  transition:
    background 0.2s,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s;
}

.button.primary {
  background: linear-gradient(160deg, var(--accent-bright), #9f1239);
  color: #fff;
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.button.primary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 12px 32px var(--accent-glow);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.button.ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button.ghost-light:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button.dark {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--line);
}

.text-link {
  color: var(--accent-bright);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link.light {
  color: var(--amber-slot);
}

/* Sections partagées */
.quick-strip,
.section,
.schedule-band,
.preview-band,
.contact-band,
.info-band,
.site-footer {
  padding-right: clamp(18px, 6vw, 80px);
  padding-left: clamp(18px, 6vw, 80px);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-strip-card {
  position: relative;
  min-height: 9rem;
  padding: var(--space-6) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(220, 20, 48, 0.02) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  transition:
    border-color var(--duration-normal) var(--ease-soft),
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-soft);
}

.quick-strip-card::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 20, 48, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}

.quick-strip-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift), var(--shadow-warm);
}

.quick-strip-card:hover::before {
  transform: scale(1.8);
}

.quick-strip-kicker {
  display: block;
  margin-bottom: var(--space-3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.quick-strip strong {
  display: block;
  color: var(--amber-soft);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.quick-strip-card > span:last-of-type {
  display: block;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.section,
.preview-band {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
}

.section {
  background: var(--bg-elevated);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.25fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  transition:
    border-color var(--duration-normal) var(--ease-soft),
    box-shadow var(--duration-normal) var(--ease-soft),
    transform var(--duration-normal) var(--ease-out);
}

.feature-grid article:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-rest), var(--shadow-warm);
  transform: translateY(-2px);
}

.feature-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--ink);
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.preview-band {
  background: var(--night);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.talent-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(148deg, var(--surface) 0%, var(--vinyl) 100%);
  transition:
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-soft);
}

.talent-card::before {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(220, 20, 48, 0.07);
  box-shadow:
    0 0 0 28px rgba(220, 20, 48, 0.04),
    0 0 0 56px rgba(220, 20, 48, 0.025),
    0 0 0 84px rgba(220, 20, 48, 0.01);
  pointer-events: none;
}

.talent-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-soft), var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.talent-card:nth-child(2n) {
  background: linear-gradient(148deg, #1c1508 0%, #101010 100%);
}

.talent-card:nth-child(3n) {
  background: linear-gradient(148deg, #1a1a1a 0%, #0f0f0f 100%);
}

.talent-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lift), var(--shadow-warm);
}

.talent-card:hover::after {
  transform: scaleX(1);
}

.talent-card.stagger-ready {
  opacity: 0;
  transform: translateY(22px);
}

.talent-card.revealed {
  animation: revealUp 0.55s var(--ease-out) both;
}

.talent-card img {
  display: block;
  width: calc(100% + 44px);
  height: 200px;
  margin: -22px -22px 20px;
  object-fit: cover;
}

.avatar {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: var(--space-5);
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a, var(--vinyl));
  color: var(--amber-soft);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 2px solid rgba(220, 20, 48, 0.42);
  box-shadow:
    0 0 0 1px rgba(220, 20, 48, 0.1),
    0 0 22px rgba(220, 20, 48, 0.18),
    0 8px 28px rgba(0, 0, 0, 0.55);
}

.avatar.has-photo {
  width: 96px;
  height: 96px;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.avatar.has-photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.talent-grid.extended .avatar.has-photo {
  width: 120px;
  height: 120px;
}

.talent-card p,
.talent-card strong,
.talent-card span,
.talent-card small {
  display: block;
  margin: 0;
}

.talent-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.talent-card strong {
  margin-top: 6px;
  font-size: 1.1rem;
  color: var(--ink);
}

.talent-card span {
  margin-top: 10px;
  color: var(--amber-soft);
  font-weight: 700;
  font-size: 0.86rem;
}

.talent-card small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* Programmation */
.schedule-band {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  background: linear-gradient(180deg, var(--night) 0%, #090909 100%);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.schedule-band .section-heading {
  align-items: flex-start;
}

.schedule-lede {
  flex: 1 1 280px;
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.program-schedule {
  display: grid;
  gap: 10px;
}

.day-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.day-block summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  border-left: 4px solid var(--amber);
  background: rgba(220, 20, 48, 0.04);
  transition: background 0.2s var(--ease-soft);
}

.day-block summary:hover {
  background: rgba(220, 20, 48, 0.07);
}

.day-block summary:focus-visible {
  outline: 2px solid var(--amber-soft);
  outline-offset: 2px;
}

.day-block summary::-webkit-details-marker {
  display: none;
}

.day-block summary::after {
  content: "\203A";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--amber);
  transition: transform 0.28s var(--ease-out);
  transform: rotate(90deg);
  line-height: 1;
}

.day-block[open] summary::after {
  transform: rotate(270deg);
}

.slot-list {
  margin: 0 0 0 var(--space-3);
  padding: var(--space-3) var(--space-5) var(--space-6) var(--space-5);
  list-style: none;
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(220, 20, 48, 0.20);
}

.slot-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 145px) 1fr;
  gap: var(--space-3);
  align-items: baseline;
  padding: var(--space-3) 0 var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0 6px 6px 0;
  transition: background 0.15s var(--ease-soft);
}

.slot-list li:hover {
  background: rgba(220, 20, 48, 0.04);
}

.slot-list li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-5) - 2px);
  top: 1.2em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(220, 20, 48, 0.18);
}

.slot-list li:last-child {
  border-bottom: 0;
}

.slot-time {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--amber-slot);
  letter-spacing: 0.02em;
}

.slot-title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

/* Contact */
.contact-band {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-8);
  padding-top: clamp(var(--space-12), 10vw, var(--space-16));
  padding-bottom: clamp(var(--space-12), 10vw, var(--space-16));
  background:
    radial-gradient(ellipse 65% 75% at 100% 0%, rgba(220, 20, 48, 0.07), transparent 52%),
    var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.contact-band div:first-child {
  max-width: 38rem;
}

.contact-band .eyebrow {
  margin-bottom: var(--space-4);
}

.contact-band h2 {
  margin-bottom: var(--space-4);
}

.contact-band p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.contact-band strong {
  color: #fff;
  font-size: 1.05em;
}

.contact-phone {
  margin-top: 16px !important;
}

.cta-link {
  background: linear-gradient(160deg, var(--accent-bright), #9f1239);
  color: #fff;
  border: 0;
}

.cta-link:hover {
  box-shadow: 0 10px 28px var(--accent-glow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 36px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

/* Pages internes */
.page-main {
  padding-top: 76px;
}

.listen-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px clamp(18px, 4vw, 56px);
  background: linear-gradient(
    90deg,
    rgba(220, 20, 48, 0.12),
    rgba(16, 14, 11, 0.98),
    rgba(220, 20, 48, 0.1)
  );
  border-bottom: 1px solid var(--gold-border);
}

.listen-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  color: var(--amber-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.listen-strip-link:hover {
  color: #fff;
}

.listen-strip-link:focus-visible {
  outline: 2px solid var(--amber-soft);
  outline-offset: 4px;
  border-radius: 8px;
}

.listen-strip-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber-soft);
  box-shadow: 0 0 12px var(--amber-glow);
  animation: listen-strip-pulse 2.2s ease-in-out infinite;
}

@keyframes listen-strip-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.92);
  }
}

.page-hero {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 6vw, 80px);
  background: linear-gradient(160deg, var(--night) 0%, #090909 100%);
  color: var(--ink);
}

.page-hero.compact {
  min-height: 320px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.player-section {
  background: var(--bg-elevated);
}

.player-section .section-heading h2,
.section .section-heading h2 {
  color: #fff;
}

.player-panel.large {
  border-color: rgba(255, 255, 255, 0.12);
}

.show-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.show-grid article,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-glass);
}

.show-grid span {
  color: var(--accent-bright);
  font-weight: 800;
}

.show-grid h2,
.faq-grid strong {
  color: #fff;
}

.show-grid p,
.faq-grid p {
  color: var(--muted);
}

.timetable {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.timetable article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-glass);
}

.timetable h2 {
  font-size: 1.5rem;
  color: #fff;
}

.timetable p {
  color: var(--muted);
}

.timetable strong {
  color: var(--accent-bright);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-glass);
}

.contact-card h2 {
  color: #fff;
}

.link-stack a {
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  border: 1px solid var(--line);
}

.static-form label {
  color: var(--muted);
}

.static-form input,
.static-form select,
.static-form textarea {
  border: 1px solid var(--line);
  background: var(--bg);
  color: #fff;
}

.info-band {
  padding-top: clamp(56px, 8vw, 100px);
  padding-bottom: clamp(56px, 8vw, 100px);
  background: var(--night);
  color: #fff;
}

.info-band p {
  color: rgba(255, 255, 255, 0.7);
}

.talent-grid.extended {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1080px) {
  .player-panel,
  .player-panel.large,
  .quick-strip,
  .talent-grid,
  .talent-grid.extended,
  .split-feature,
  .feature-grid,
  .show-grid,
  .timetable,
  .contact-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .slot-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px clamp(18px, 4vw, 56px) 24px;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s var(--ease-out),
      opacity 0.25s;
  }

  .site-header.is-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .site-header {
    position: fixed;
    align-items: center;
  }

  .section-heading,
  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92vh;
    padding-top: 108px;
  }

  .brand span:last-child {
    max-width: 200px;
  }

  .quick-strip-card,
  .talent-card,
  .feature-grid article {
    padding: 18px;
  }

  .player-panel,
  .player-panel.large {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .stream-link {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   NEW COMPONENTS — Lounge Québécois Redesign
   ===================================================== */

/* Keyframes */
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.35); }
  50%       { transform: scaleY(1); }
}

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

/* Vinyl disc decoration (hero) */
.vinyl-disc {
  display: none;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr clamp(260px, 28vw, 400px);
    gap: clamp(32px, 5vw, 72px);
  }

  .hero-content {
    grid-column: 1;
  }

  .vinyl-disc {
    display: block;
    position: relative;
    z-index: 2;
    align-self: center;
    width: clamp(260px, 28vw, 400px);
    height: clamp(260px, 28vw, 400px);
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(16, 12, 7, 0.95) 11.5%, transparent 12%),
      radial-gradient(circle at 50% 50%, rgba(220, 20, 48, 0.12) 19.5%, transparent 20%),
      radial-gradient(circle at 50% 50%, transparent 29%, rgba(220, 20, 48, 0.04) 29.5%, transparent 30%),
      radial-gradient(circle at 50% 50%, transparent 38%, rgba(255, 255, 255, 0.02) 38.5%, transparent 39%),
      conic-gradient(from 0deg, #1c1c1c, #222222, #1c1c1c, #202020, #1c1c1c, #2a2a2a, #1c1c1c);
    box-shadow:
      0 0 80px rgba(0, 0, 0, 0.75),
      0 0 0 1px rgba(220, 20, 48, 0.18),
      inset 0 0 30px rgba(0, 0, 0, 0.6);
    animation: vinylSpin 14s linear infinite;
    animation-play-state: paused;
    flex-shrink: 0;
  }

  .vinyl-disc::before {
    content: "";
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%,
        var(--vinyl) 18%,
        rgba(220, 20, 48, 0.06) 32%,
        var(--vinyl) 35%,
        rgba(255, 255, 255, 0.025) 52%,
        var(--vinyl) 55%
      );
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
  }

  .vinyl-disc::after {
    content: "HR";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    letter-spacing: 0.06em;
    color: var(--amber-soft);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    pointer-events: none;
  }

  .vinyl-disc.is-spinning {
    animation-play-state: running;
  }
}

/* Waveform bars (inside player .now-playing) */
.waveform-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-top: 7px;
}

.waveform-bars span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: var(--amber-soft);
  opacity: 0.3;
  transform: scaleY(0.35);
  transform-origin: bottom;
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.waveform-bars span:nth-child(1) { height: 100%; }
.waveform-bars span:nth-child(2) { height: 62%; }
.waveform-bars span:nth-child(3) { height: 82%; }
.waveform-bars span:nth-child(4) { height: 48%; }
.waveform-bars span:nth-child(5) { height: 72%; }

.player-panel.is-playing .waveform-bars span {
  opacity: 1;
  animation: waveBar 1.1s ease-in-out infinite;
}
.player-panel.is-playing .waveform-bars span:nth-child(1) { animation-delay: 0s; }
.player-panel.is-playing .waveform-bars span:nth-child(2) { animation-delay: 0.2s; }
.player-panel.is-playing .waveform-bars span:nth-child(3) { animation-delay: 0.09s; }
.player-panel.is-playing .waveform-bars span:nth-child(4) { animation-delay: 0.27s; }
.player-panel.is-playing .waveform-bars span:nth-child(5) { animation-delay: 0.14s; }

/* Quick-strip icon slot */
.quick-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(220, 20, 48, 0.1);
  border: 1px solid rgba(220, 20, 48, 0.20);
  color: var(--amber-soft);
  flex-shrink: 0;
}

.quick-strip-icon svg {
  width: 20px;
  height: 20px;
}

/* Slot type color-coding (schedule) */
.slot--morning .slot-time { color: var(--amber-soft); }
.slot--morning::before { background: var(--amber); box-shadow: 0 0 0 3px rgba(220, 20, 48, 0.22); }
.slot--morning { background: rgba(220, 20, 48, 0.03); }

.slot--drive .slot-time { color: #e08040; }
.slot--drive::before { background: #e08040; box-shadow: 0 0 0 3px rgba(224, 128, 64, 0.22); }
.slot--drive { background: rgba(224, 112, 48, 0.03); }

.slot--limelight .slot-time { color: #b080e0; }
.slot--limelight::before { background: #9060c8; box-shadow: 0 0 0 3px rgba(144, 96, 200, 0.22); }
.slot--limelight { background: rgba(124, 68, 168, 0.04); }

.slot--night .slot-time { color: #6090c8; }
.slot--night::before { background: #3a6ea0; box-shadow: 0 0 0 3px rgba(58, 110, 160, 0.22); }
.slot--night { background: rgba(26, 60, 100, 0.06); }

.slot--special .slot-time { color: #60b0a0; }
.slot--special::before { background: #459888; box-shadow: 0 0 0 3px rgba(69, 152, 136, 0.22); }
.slot--special { background: rgba(42, 122, 106, 0.03); }

.slot--hitlist::before { background: var(--muted); box-shadow: 0 0 0 3px rgba(168, 152, 128, 0.15); }

/* Stagger reveal */
.talent-card.stagger-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: none;
}

.talent-card.revealed {
  animation: revealUp 0.55s var(--ease-out) both;
}

.talent-card.revealed:nth-child(2) { animation-delay: 0.07s; }
.talent-card.revealed:nth-child(3) { animation-delay: 0.14s; }
.talent-card.revealed:nth-child(4) { animation-delay: 0.21s; }
.talent-card.revealed:nth-child(5) { animation-delay: 0.28s; }
.talent-card.revealed:nth-child(6) { animation-delay: 0.35s; }

.quick-strip-card.stagger-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}

.quick-strip-card.revealed {
  animation: revealUp 0.45s var(--ease-out) both;
}

.quick-strip-card.revealed:nth-child(2) { animation-delay: 0.09s; }
.quick-strip-card.revealed:nth-child(3) { animation-delay: 0.18s; }

/* Mobile nav — slide from right instead of drop-down */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid var(--gold-border);
    gap: 4px;
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.35s var(--ease-out),
      opacity 0.28s;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .site-header.is-open .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 1rem;
    border: 1px solid transparent;
  }

  .main-nav a:hover,
  .main-nav a.active,
  .main-nav a.is-active {
    border-color: var(--line);
  }
}

/* Show / FAQ grid warm */
.show-grid article,
.faq-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.01);
  transition:
    border-color var(--duration-normal) var(--ease-soft),
    transform var(--duration-normal) var(--ease-out);
}

.show-grid article:hover,
.faq-grid article:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.show-grid span {
  color: var(--amber-soft);
}

/* Contact form warm focus */
.static-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.static-form input,
.static-form select,
.static-form textarea {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.static-form input:focus,
.static-form select:focus,
.static-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(220, 20, 48, 0.18);
}

/* Info band warm */
.info-band {
  background: linear-gradient(160deg, var(--night) 0%, #090909 100%);
  color: var(--ink);
}

/* Contact layout warm cards */
.contact-card {
  background: rgba(255, 255, 255, 0.01);
  border-color: var(--line);
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--gold-border);
}

/* Reduced motion — disable new animations */
@media (prefers-reduced-motion: reduce) {
  .vinyl-disc,
  .waveform-bars span,
  .talent-card.revealed,
  .quick-strip-card.revealed,
  .hero-vinyl,
  .hero-waves span,
  .hero-eq-floor span,
  .player-equalizer span,
  .live-tag-dot,
  .play-button.is-playing {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .talent-card.stagger-ready,
  .quick-strip-card.stagger-ready {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================
   HERO — fond musical (vinyle + ondes + EQ floor)
   ===================================================== */
.hero-vinyl {
  position: absolute;
  right: -12%;
  bottom: -22%;
  width: 78vmin;
  height: 78vmin;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 4px),
    radial-gradient(circle at 38% 38%, rgba(220, 20, 48, 0.22) 0%, transparent 38%),
    radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.9),
    0 40px 140px rgba(0, 0, 0, 0.6);
  opacity: 0.55;
  animation: heroVinylSpin 60s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.hero-vinyl::before,
.hero-vinyl::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero-vinyl::before {
  width: 22%;
  height: 22%;
  background: radial-gradient(circle at 35% 35%, var(--accent-bright) 0%, var(--accent) 60%, #5a000d 100%);
  box-shadow: 0 0 40px rgba(220, 20, 48, 0.4), inset 0 -4px 12px rgba(0, 0, 0, 0.5);
}

.hero-vinyl::after {
  width: 5%;
  height: 5%;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes heroVinylSpin {
  to { transform: rotate(360deg); }
}

/* Ondes radio concentriques émanant du vinyle */
.hero-waves {
  position: absolute;
  right: 18%;
  bottom: 18%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero-waves span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid rgba(220, 20, 48, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: heroWavePulse 4s ease-out infinite;
}

.hero-waves span:nth-child(2) { animation-delay: 1.33s; }
.hero-waves span:nth-child(3) { animation-delay: 2.66s; }

@keyframes heroWavePulse {
  0%   { opacity: 0;   transform: translate(-50%, -50%) scale(0.4); }
  25%  { opacity: 0.6; }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(4.2); }
}

/* Équaliseur ancré tout en bas du hero, traverse la largeur */
.hero-eq-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 4vw;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  opacity: 0.4;
}

.hero-eq-floor span {
  flex: 1;
  height: 100%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--accent-bright) 0%, rgba(220, 20, 48, 0.1) 100%);
  transform-origin: bottom;
  animation: heroEqFloor var(--d, 1s) ease-in-out infinite alternate;
}

@keyframes heroEqFloor {
  from { transform: scaleY(var(--mn, 0.10)); }
  to   { transform: scaleY(var(--mx, 0.85)); }
}

.hero-eq-floor span:nth-child(1)  { --mn: 0.08; --mx: 0.30; --d: 0.80s; }
.hero-eq-floor span:nth-child(2)  { --mn: 0.18; --mx: 0.55; --d: 1.10s; animation-delay: 0.10s; }
.hero-eq-floor span:nth-child(3)  { --mn: 0.10; --mx: 0.42; --d: 0.95s; animation-delay: 0.20s; }
.hero-eq-floor span:nth-child(4)  { --mn: 0.25; --mx: 0.78; --d: 0.70s; animation-delay: 0.05s; }
.hero-eq-floor span:nth-child(5)  { --mn: 0.14; --mx: 0.50; --d: 1.20s; animation-delay: 0.15s; }
.hero-eq-floor span:nth-child(6)  { --mn: 0.30; --mx: 0.92; --d: 0.85s; animation-delay: 0.08s; }
.hero-eq-floor span:nth-child(7)  { --mn: 0.12; --mx: 0.48; --d: 1.05s; animation-delay: 0.18s; }
.hero-eq-floor span:nth-child(8)  { --mn: 0.22; --mx: 0.70; --d: 0.75s; animation-delay: 0.12s; }
.hero-eq-floor span:nth-child(9)  { --mn: 0.10; --mx: 0.40; --d: 1.15s; animation-delay: 0.22s; }
.hero-eq-floor span:nth-child(10) { --mn: 0.28; --mx: 0.85; --d: 0.65s; animation-delay: 0.04s; }
.hero-eq-floor span:nth-child(11) { --mn: 0.16; --mx: 0.58; --d: 0.90s; animation-delay: 0.16s; }
.hero-eq-floor span:nth-child(12) { --mn: 0.20; --mx: 0.65; --d: 1.00s; animation-delay: 0.07s; }

/* =====================================================
   PLAYER — composant on-air pro
   ===================================================== */
.player-panel--signature {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 44rem;
  border: 1px solid rgba(220, 20, 48, 0.30);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(220, 20, 48, 0.07) 0%, transparent 50%),
    rgba(10, 10, 10, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(220, 20, 48, 0.07);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
  font-size: 0.74em;
}

/* Header bar : LIVE + station + horloge */
.player-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(220, 20, 48, 0.06);
  flex-wrap: wrap;
}

.player-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(220, 20, 48, 0.18);
  border: 1px solid rgba(220, 20, 48, 0.42);
  color: var(--accent-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.live-tag-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 7px rgba(220, 20, 48, 0.9);
  animation: livePulse 2.4s ease-in-out infinite;
}

.player-station-name {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-clock {
  font-variant-numeric: tabular-nums;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Zone "On Air" : pochette + show + piste live */
.player-onair {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-cover {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(220, 20, 48, 0.30),
    0 12px 32px rgba(0, 0, 0, 0.65),
    0 0 24px rgba(220, 20, 48, 0.15);
  background: #0a0a0a;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mini équaliseur en overlay sur la pochette quand is-playing */
.player-equalizer {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.player-equalizer span {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 4px rgba(220, 20, 48, 0.8);
  transform-origin: bottom;
  transform: scaleY(0.2);
}

.player-panel.is-playing .player-equalizer {
  opacity: 1;
}

.player-panel.is-playing .player-equalizer span {
  animation: playerEqBar 0.9s ease-in-out infinite alternate;
}

.player-panel.is-playing .player-equalizer span:nth-child(1) { animation-delay: 0.00s; --mx: 0.7; }
.player-panel.is-playing .player-equalizer span:nth-child(2) { animation-delay: 0.18s; --mx: 1.0; }
.player-panel.is-playing .player-equalizer span:nth-child(3) { animation-delay: 0.06s; --mx: 0.5; }
.player-panel.is-playing .player-equalizer span:nth-child(4) { animation-delay: 0.22s; --mx: 0.85; }
.player-panel.is-playing .player-equalizer span:nth-child(5) { animation-delay: 0.12s; --mx: 0.6; }

@keyframes playerEqBar {
  from { transform: scaleY(0.18); }
  to   { transform: scaleY(var(--mx, 0.9)); }
}

.player-onair-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.player-onair-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.player-onair-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tag-color, #c8102e) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--tag-color, #c8102e) 50%, transparent);
  color: var(--tag-color, #c8102e);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.player-onair-slot {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

.player-onair-title {
  display: block;
  color: #fff;
  font-family: var(--font-display, Syne, Inter, sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-onair-host {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 500;
}

.player-track-live[hidden] {
  display: none !important;
}

.player-track-live {
  margin: 6px 0 0;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(220, 20, 48, 0.10);
  border: 1px solid rgba(220, 20, 48, 0.22);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track-live svg {
  flex-shrink: 0;
  color: var(--accent-bright);
}

.player-track-live span {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Barre de contrôles : play + statut + volume + lien */
.player-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  flex-wrap: nowrap;
}

.player-status-block {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.player-status {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-status-sub {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  cursor: pointer;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.volume-control:hover,
.volume-control:focus-within {
  background: rgba(232, 25, 46, 0.10);
  border-color: rgba(232, 25, 46, 0.35);
}

.vol-icon {
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.player-controls .volume-control input[type="range"],
.volume-control.player-volume input[type="range"],
.player-panel .volume-control input[type="range"] {
  width: 150px;
  margin: 0;
}

.stream-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.stream-link:hover {
  background: rgba(220, 20, 48, 0.12);
  color: #fff;
  border-color: rgba(220, 20, 48, 0.45);
}

.stream-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =====================================================
   Responsive — player
   ===================================================== */
@media (max-width: 720px) {
  .player-onair {
    padding: var(--space-4) var(--space-4);
    gap: var(--space-4);
  }
  .player-cover {
    width: 76px;
    height: 76px;
  }
  .player-onair-title {
    font-size: 1rem;
    white-space: normal;
  }
  .player-controls {
    padding: var(--space-3) var(--space-4) var(--space-4);
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .player-status-block {
    order: 2;
    flex: 1 0 100%;
    text-align: left;
  }
  .play-button {
    order: 1;
  }
  .volume-control {
    order: 3;
  }
  .stream-link {
    order: 4;
  }
  .volume-control input[type="range"] {
    width: 80px;
  }
  .player-clock {
    margin-left: auto;
  }
}

@media (max-width: 460px) {
  .player-onair {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .player-onair-title {
    white-space: normal;
  }
}


/* =====================================================
   Mini-player persistant (cross-page)
   ===================================================== */
.mini-player {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 130%);
  width: min(720px, calc(100% - 24px));
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 14px;
  background: rgba(15, 15, 18, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  z-index: 80;
  transition: transform 0.45s var(--ease-out), opacity 0.3s var(--ease-out);
  opacity: 0;
  pointer-events: none;
  color: var(--ink);
}
.mini-player.is-shown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.mini-player.is-hidden { transform: translate(-50%, 130%); opacity: 0; pointer-events: none; }
.mini-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.mini-play:hover { background: var(--accent-bright); transform: scale(1.05); }
.mini-play:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.mini-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.mini-play.is-playing .mini-play-icon {
  width: 10px; height: 12px;
  border: none;
  background: linear-gradient(to right, #fff 0 3px, transparent 3px 7px, #fff 7px 10px);
  margin-left: 0;
}
.mini-meta {
  display: flex; flex-direction: column;
  gap: 2px; min-width: 0; flex: 1;
}
.mini-show {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-bright);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-track {
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.mini-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mini-icon-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.mini-icon-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.mini-icon-btn.is-muted { color: var(--accent); border-color: var(--accent); }
.mini-volume {
  -webkit-appearance: none; appearance: none;
  width: 80px; height: 4px;
  background: linear-gradient(to right, var(--accent) 0% var(--vol-fill, 85%), rgba(255,255,255,0.15) var(--vol-fill, 85%) 100%);
  border-radius: 4px; outline: none; cursor: pointer;
}
.mini-volume::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent); cursor: pointer;
}
.mini-volume::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent); cursor: pointer;
}
.mini-player.is-loading .mini-play {
  animation: hr-pulse 1.2s ease-in-out infinite;
}
@keyframes hr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,48,0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(220,20,48,0); }
}
@media (max-width: 600px) {
  .mini-player { bottom: 10px; padding: 8px 10px; gap: 8px; border-radius: 18px; }
  .mini-volume { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mini-player { transition: opacity 0.2s; }
  .mini-play { transition: none; }
  .mini-player.is-loading .mini-play { animation: none; }
}

/* === Bouton mute dans le panneau principal === */
.icon-btn.mute-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.icon-btn.mute-btn:hover { background: rgba(255,255,255,0.08); }
.icon-btn.mute-btn.is-muted { color: var(--accent); border-color: var(--accent); }
.icon-btn.mute-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* === Hint quand métadonnées indisponibles === */
.live-track-hint {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
}

/* =====================================================
   Slot ON AIR (horaire interactif)
   ===================================================== */
.day-block.is-today > summary {
  background: linear-gradient(90deg, rgba(220,20,48,0.10), transparent 60%);
  border-left: 3px solid var(--accent);
  padding-left: calc(var(--space-4) - 3px);
}
.slot-list li.is-now {
  position: relative;
  background: rgba(220,20,48,0.10);
  border-left: 3px solid var(--accent);
  padding-left: calc(var(--space-4) - 3px);
  animation: slotGlow 2.5s ease-in-out infinite;
}
@keyframes slotGlow {
  0%, 100% { background: rgba(220,20,48,0.08); }
  50%      { background: rgba(220,20,48,0.18); }
}
.now-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
}
.now-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: hr-blink 1.2s ease-in-out infinite;
}
@keyframes hr-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  .slot-list li.is-now, .now-dot { animation: none; }
}

/* =====================================================
   Toast notifications
   ===================================================== */
.toast-host {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 120;
  pointer-events: none;
  max-width: calc(100% - 40px);
}
.toast {
  background: rgba(15,15,18,0.95);
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-rest);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  pointer-events: auto;
  max-width: 360px;
}
.toast.is-shown { transform: translateX(0); opacity: 1; }
.toast--ok    { border-left-color: #22c55e; }
.toast--warn  { border-left-color: #f59e0b; }
.toast--error { border-left-color: var(--accent); }

/* =====================================================
   Drawer Historique morceaux
   ===================================================== */
.history-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 92vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  z-index: 110;
  display: flex; flex-direction: column;
  padding: 20px 18px;
}
.history-drawer.is-open { transform: translateX(0); }
.history-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.history-head strong { font-family: var(--font-display); font-size: 1.05rem; }
.icon-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); }
.icon-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.history-list {
  list-style: none;
  margin: 0; padding: 0;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.history-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.history-cover img,
.history-cover-fallback {
  width: 44px; height: 44px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-warm);
  color: var(--accent);
  font-size: 1.1rem; font-weight: 800;
  object-fit: cover;
}
.history-meta { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.history-meta strong {
  font-size: 0.85rem; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.history-meta span {
  font-size: 0.7rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.history-search {
  color: var(--muted);
  display: inline-flex; padding: 6px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.history-search:hover { color: var(--accent-bright); background: rgba(255,255,255,0.05); }
.history-empty {
  text-align: center; color: var(--muted); font-size: 0.85rem;
  padding: 30px 10px;
}

/* Layout : pousser le footer au-dessus du mini-player */
body.is-playing-radio .site-footer { padding-bottom: 90px; }

/* =====================================================
   Page Contact améliorée
   ===================================================== */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 12px 0 20px;
}
.channel-btn {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.channel-btn:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--surface-warm); }
.channel-btn small { color: var(--muted); font-size: 0.72rem; }
.channel-btn strong { font-size: 0.95rem; }

.suggest-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-height: 180px;
  overflow-y: auto;
  position: relative;
  z-index: 5;
}
.suggest-list li {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.suggest-list li:last-child { border-bottom: none; }
.suggest-list li:hover { background: rgba(220,20,48,0.15); }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}

/* =====================================================
   Page Émissions — fiches
   ===================================================== */
.show-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.show-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s var(--ease-out), border-color 0.2s;
}
.show-detail:hover { transform: translateY(-3px); border-color: rgba(220,20,48,0.4); }
.show-detail .badge {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
}
.show-detail h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0; }
.show-detail .meta { color: var(--muted); font-size: 0.82rem; }
.show-detail .next {
  margin-top: auto;
  font-size: 0.78rem;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.show-detail .next strong { color: var(--accent-bright); }

/* slot-host visible sur la page horaire complète */
.slot-host {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
}
.slot-list li.is-now .slot-host { color: rgba(255,255,255,0.7); }

/* === Bouton install PWA (apparaît si supporté) === */
#installPwaBtn { display: none; }
#installPwaBtn.is-available { display: inline-flex; }


.schedule-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

/* =====================================================
   Header tools (search / sleep / theme / install)
   ===================================================== */
.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}
.header-tool {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.header-tool:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.header-tool:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.install-pwa-btn { display: none; }
.install-pwa-btn.is-available { display: inline-flex; color: var(--accent-bright); border-color: var(--accent); }
@media (max-width: 700px) {
  .header-tools { gap: 4px; margin-left: 6px; }
  .header-tool { width: 30px; height: 30px; }
}

/* =====================================================
   Sleep menu + badge
   ===================================================== */
.sleep-badge {
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(124,68,168,0.18);
  color: #c8a4f0;
  border: 1px solid rgba(124,68,168,0.4);
}
.sleep-menu {
  position: fixed;
  width: 180px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  padding: 6px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 130;
  animation: hr-fade-in 0.15s ease;
}
.sleep-menu button {
  text-align: left;
  padding: 9px 14px;
  background: transparent;
  border: none;
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-family: inherit;
}
.sleep-menu button:hover { background: rgba(220,20,48,0.15); }
.sleep-menu button.sleep-cancel {
  border-top: 1px solid var(--line);
  margin-top: 4px; padding-top: 10px;
  color: var(--muted);
}
@keyframes hr-fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   Recherche palette (Ctrl+K)
   ===================================================== */
.search-palette {
  position: fixed; inset: 0;
  z-index: 140;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 12vh;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.search-palette.is-open { opacity: 1; pointer-events: auto; }
.search-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.search-box {
  position: relative;
  width: min(620px, calc(100% - 32px));
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.2s var(--ease-out);
}
.search-palette.is-open .search-box { transform: translateY(0); }
.search-input-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.search-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
}
.search-input-wrap kbd {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}
.search-results {
  list-style: none; margin: 0; padding: 6px;
  max-height: 50vh; overflow-y: auto;
}
.search-results li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
}
.search-results li.is-active,
.search-results li:hover { background: rgba(220,20,48,0.18); }
.search-type {
  font-size: 0.65rem; font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  flex-shrink: 0;
}
.search-type--page    { color: #6cb1ff; border-color: rgba(108,177,255,0.3); }
.search-type--team    { color: #e8b84b; border-color: rgba(232,184,75,0.3); }
.search-type--show    { color: #ff6b8a; border-color: rgba(255,107,138,0.3); }
.search-type--action  { color: #6ee7b7; border-color: rgba(110,231,183,0.3); }
.search-label { flex: 1; font-size: 0.92rem; }
.search-empty {
  padding: 16px; text-align: center;
  color: var(--muted); font-size: 0.88rem;
}
.search-hint {
  margin: 0; padding: 10px 18px;
  font-size: 0.72rem; color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* =====================================================
   Visualiseur
   ===================================================== */
.viz-canvas {
  display: block;
  width: 100%;
  height: 60px;
  margin: 12px 0 0;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent, rgba(220,20,48,0.05));
}

/* =====================================================
   Countdown next show
   ===================================================== */
.countdown-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}
.countdown-kicker {
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.65rem;
  color: var(--accent-bright);
}
.countdown-time { color: var(--ink); font-weight: 600; }

/* =====================================================
   Offline banner
   ===================================================== */
.offline-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: #b8341a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  z-index: 150;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease-out);
}
.offline-banner.is-shown { transform: translateY(0); }

/* =====================================================
   Talent next slot annotation
   ===================================================== */
.talent-next {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.talent-next-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.talent-next strong { color: var(--accent-bright); font-weight: 800; }

/* =====================================================
   Theme : light mode (override scoped)
   ===================================================== */
:root[data-theme="light"] {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --surface: #f3f3f3;
  --surface-glass: rgba(0,0,0,0.03);
  --surface-warm: #ececec;
  --vinyl: #e8e8e8;
  --ink: #141414;
  --muted: #5a5a5a;
  --line: rgba(0,0,0,0.10);
  --gold-border: rgba(0,0,0,0.13);
  --night: #f0f0f0;
  --shadow: 0 28px 80px rgba(0,0,0,0.18);
  --shadow-rest: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lift: 0 18px 52px rgba(0,0,0,0.15);
}
:root[data-theme="light"] body { background: var(--bg); color: var(--ink); }
:root[data-theme="light"] .mini-player {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
}
:root[data-theme="light"] .mini-show { color: var(--accent); }
:root[data-theme="light"] .toast { background: rgba(255,255,255,0.95); color: var(--ink); }
:root[data-theme="light"] .history-drawer { background: #fff; color: var(--ink); }
:root[data-theme="light"] .search-box,
:root[data-theme="light"] .sleep-menu { background: #fff; color: var(--ink); }
:root[data-theme="light"] .header-tool { color: var(--ink); }

/* === Layout : pousser footer si banner offline === */
body.is-offline .site-header { margin-top: 38px; }


/* =====================================================
   Favoris (♥)
   ===================================================== */
.fav-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s, transform 0.2s, border-color 0.2s;
  z-index: 2;
}
.fav-btn:hover { transform: scale(1.08); border-color: var(--accent); color: var(--accent-bright); }
.fav-btn.is-on { color: var(--accent-bright); border-color: var(--accent); background: rgba(220,20,48,0.18); }
.fav-btn.is-on svg { fill: currentColor; }
.fav-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.talent-card, .show-detail { position: relative; }

.fav-filter-bar {
  display: inline-flex; gap: 8px;
  margin: 0 0 18px;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.fav-filter {
  padding: 7px 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit; font-size: 0.82rem; font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.fav-filter:hover { color: var(--ink); }
.fav-filter.is-active { background: var(--accent); color: #fff; }
.fav-count { font-weight: 600; opacity: 0.8; margin-left: 4px; }

/* =====================================================
   Égaliseur
   ===================================================== */
.eq-panel {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 280px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  z-index: 130;
  animation: hr-fade-in 0.18s ease;
  overflow: hidden;
}
.eq-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.eq-head strong { font-size: 0.9rem; font-weight: 800; }
.eq-close {
  background: transparent; border: none; color: var(--muted);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 6px;
}
.eq-close:hover { color: var(--ink); }
.eq-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.eq-row {
  display: grid;
  grid-template-columns: 70px 1fr 60px;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.eq-row input[type="range"] { width: 100%; accent-color: var(--accent); }
.eq-row output {
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.78rem;
}
.eq-presets {
  display: flex; gap: 6px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.eq-presets button {
  flex: 1;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.eq-presets button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.header-tool.is-on { color: var(--accent-bright); border-color: var(--accent); }

/* =====================================================
   Statistiques
   ===================================================== */
.stats-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.stat-card {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.stat-card small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.stat-card strong {
  font-family: var(--font-display, "Syne", system-ui, sans-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-bright);
}
.stats-bars {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.stats-bars li {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr auto;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
}
.stats-days li { grid-template-columns: 110px 1fr auto; }
.bar-label { color: var(--ink); font-weight: 600; }
.bar-track {
  height: 8px;
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6b8a);
  border-radius: 999px;
  transition: width 0.4s var(--ease-out);
}
.bar-value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
}
.stats-empty {
  padding: 30px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 12px;
}
.stats-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
}

/* =====================================================
   Historique : recherche + export
   ===================================================== */
.history-search {
  display: flex; gap: 6px; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.history-search input {
  flex: 1;
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.82rem;
}
.history-search input:focus { outline: none; border-color: var(--accent); }
.btn-xs {
  padding: 6px 10px !important;
  font-size: 0.72rem !important;
  font-weight: 700;
}

/* =====================================================
   Show highlight (deep link)
   ===================================================== */
.show-detail.is-highlighted {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
  animation: hr-pulse 1.5s ease 2;
}
@keyframes hr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,48,0); }
  50% { box-shadow: 0 0 0 12px rgba(220,20,48,0.18); }
}

/* =====================================================
   Accessibilité
   ===================================================== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === V3 marker === */

/* === V4 marker === Wave 4: rails, weather, bottom nav, watch mode, mobile */
.rail-section { padding: 20px 24px 8px; }
.rail { margin: 24px auto; max-width: 1280px; position: relative; }
.rail-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; padding-inline: 4px; }
.rail-head h2 { font-size: 1.15rem; margin: 0; letter-spacing: 0.02em; font-weight: 700; }
.rail-head h2 span { margin-right: 6px; font-size: 1.1em; }
.rail-cta { margin-left: auto; font-size: 0.85rem; color: var(--accent, #c8102e); text-decoration: none; font-weight: 600; opacity: 0.9; }
.rail-cta:hover { opacity: 1; text-decoration: underline; }
.rail-arrows { display: flex; gap: 6px; margin-left: 8px; }
.rail-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: inherit; font-size: 1.1rem; line-height: 1; cursor: pointer; transition: background .15s; }
.rail-arrow:hover { background: rgba(255,255,255,0.14); }
[data-theme="light"] .rail-arrow { border-color: rgba(0,0,0,0.15); background: rgba(0,0,0,0.04); }
[data-theme="light"] .rail-arrow:hover { background: rgba(0,0,0,0.1); }

.rail-track { display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 6px 4px 18px; scrollbar-width: thin; }
.rail-track::-webkit-scrollbar { height: 6px; }
.rail-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }

.rail-card { flex: 0 0 240px; min-width: 240px; scroll-snap-align: start; padding: 16px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: inherit; transition: transform .18s ease, background .18s ease, border-color .18s ease; position: relative; overflow: hidden; }
.rail-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--card-accent, #c8102e); }
.rail-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
[data-theme="light"] .rail-card { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .rail-card:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); }

.rail-card h3 { margin: 4px 0 2px; font-size: 1rem; font-weight: 700; line-height: 1.25; }
.rail-card .rail-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; padding: 2px 8px; border-radius: 999px; background: var(--card-accent, #c8102e); color: #fff; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.rail-card .rail-meta { font-size: 0.82rem; opacity: 0.75; margin: 2px 0; }
.rail-card .rail-host { font-size: 0.85rem; opacity: 0.9; font-weight: 500; }
.rail-card .rail-when { font-size: 0.78rem; font-weight: 600; color: var(--card-accent, #c8102e); margin-top: auto; }
.rail-card .rail-emoji { font-size: 2rem; line-height: 1; }
.rail-card .rail-play { margin-top: 8px; align-self: flex-start; padding: 6px 12px; border-radius: 999px; border: none; background: var(--card-accent, #c8102e); color: #fff; font-weight: 600; font-size: 0.8rem; cursor: pointer; }
.rail-card .rail-play:hover { filter: brightness(1.1); }
.webradio-card.is-main { background: linear-gradient(135deg, rgba(200,16,46,0.18), rgba(255,58,110,0.05)); border-color: rgba(200,16,46,0.4); }
.news-card { flex: 0 0 280px; min-width: 280px; }

/* Weather chip in player header */
.weather-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); font-size: 0.8rem; margin-left: 8px; }
.weather-chip .weather-emoji { font-size: 1.1rem; }
.weather-chip .weather-temp { font-weight: 700; }
.weather-chip .weather-meta { opacity: 0.85; font-size: 0.75rem; }
[data-theme="light"] .weather-chip { background: rgba(0,0,0,0.06); }


/* =====================================================
   PHASE 1 — POLISH LECTEUR (visuel & ambiance)
   ===================================================== */

/* 1.1 — Pochette : ambient glow (couleur dynamique extraite du cover) */
.player-cover {
  isolation: isolate;
}
.player-cover::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    var(--dynamic-accent, var(--tag-color, #c8102e)) 0%,
    transparent 65%
  );
  opacity: 0;
  filter: blur(22px);
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.player-panel.is-playing .player-cover::before {
  opacity: 0.55;
  animation: coverGlow 4.5s ease-in-out infinite alternate;
}
@keyframes coverGlow {
  from { opacity: 0.40; transform: scale(0.92); }
  to   { opacity: 0.65; transform: scale(1.04); }
}

/* 1.2 — Pochette : skeleton shimmer pendant le chargement */
.player-cover.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 70%
  );
  background-size: 220% 100%;
  animation: coverShimmer 1.4s linear infinite;
  pointer-events: none;
}
@keyframes coverShimmer {
  from { background-position: 220% 0; }
  to   { background-position: -120% 0; }
}

/* 1.3 — Pochette qui réagit au play (lift + scale subtil) */
.player-cover {
  transition: transform 0.5s var(--ease-out, cubic-bezier(.22,1,.36,1)),
              box-shadow 0.5s ease;
}
.player-panel.is-playing .player-cover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--dynamic-accent, #c8102e) 50%, transparent),
    0 18px 38px rgba(0, 0, 0, 0.7),
    0 0 32px color-mix(in srgb, var(--dynamic-accent, #c8102e) 30%, transparent);
}

/* 1.4 — Live badge : variantes d'état pilotées par data-player-state */
body[data-player-state="buffering"] .live-tag-dot {
  background: #4aa3ff;
  box-shadow: 0 0 8px rgba(74, 163, 255, 0.9);
  animation: bufferPulse 0.9s ease-in-out infinite;
}
body[data-player-state="buffering"] .player-live-badge {
  background: rgba(74, 163, 255, 0.18);
  border-color: rgba(74, 163, 255, 0.45);
  color: #9bc8ff;
}
body[data-player-state="buffering"] .player-live-badge::after {
  content: "BUFFER";
}
body[data-player-state="buffering"] .player-live-badge > :first-child + * {
  display: none;
}

body[data-player-state="offline"] .live-tag-dot {
  background: #888;
  box-shadow: none;
  animation: none;
}
body[data-player-state="offline"] .player-live-badge {
  background: rgba(120, 120, 120, 0.18);
  border-color: rgba(160, 160, 160, 0.35);
  color: #bbb;
}

body[data-player-state="paused"] .live-tag-dot {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  animation: none;
}
body[data-player-state="paused"] .player-live-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
}

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

/* 1.5 — Volume slider : remplissage proportionnel + thumb halo */
.player-panel input[type="range"],
.mini-player input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--dynamic-accent, #c8102e) 0%,
    var(--dynamic-accent, #c8102e) var(--vol-fill, 85%),
    rgba(255, 255, 255, 0.12) var(--vol-fill, 85%),
    rgba(255, 255, 255, 0.12) 100%
  );
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  transition: height 0.18s ease;
}
.player-panel input[type="range"]:hover,
.mini-player input[type="range"]:hover { height: 8px; }

.player-panel input[type="range"]::-webkit-slider-thumb,
.mini-player input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dynamic-accent, #c8102e);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--dynamic-accent, #c8102e) 25%, transparent),
    0 2px 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.18s ease;
}
.player-panel input[type="range"]:hover::-webkit-slider-thumb,
.player-panel input[type="range"]:focus::-webkit-slider-thumb,
.mini-player input[type="range"]:hover::-webkit-slider-thumb,
.mini-player input[type="range"]:focus::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--dynamic-accent, #c8102e) 35%, transparent),
    0 4px 12px rgba(0, 0, 0, 0.6);
}
.player-panel input[type="range"]::-moz-range-thumb,
.mini-player input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--dynamic-accent, #c8102e);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dynamic-accent, #c8102e) 25%, transparent);
  cursor: pointer;
}

/* 1.6 — Equalizer overlay : barres plus naturelles (variations désynchronisées) */
.player-panel.is-playing .player-equalizer {
  opacity: 0.95;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--dynamic-accent, #c8102e) 60%, transparent));
}
.player-panel.is-playing .player-equalizer span {
  animation-duration: 0.85s;
  animation-timing-function: ease-in-out;
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--dynamic-accent, #c8102e) 70%, #fff));
}
.player-panel.is-playing .player-equalizer span:nth-child(1) { animation-duration: 0.72s; --mx: 0.65; }
.player-panel.is-playing .player-equalizer span:nth-child(2) { animation-duration: 0.94s; --mx: 1.00; }
.player-panel.is-playing .player-equalizer span:nth-child(3) { animation-duration: 0.61s; --mx: 0.48; }
.player-panel.is-playing .player-equalizer span:nth-child(4) { animation-duration: 1.08s; --mx: 0.88; }
.player-panel.is-playing .player-equalizer span:nth-child(5) { animation-duration: 0.79s; --mx: 0.72; }

/* 1.7 — Bouton play/pause : transition douce d'icône, focus ring cohérent */
#playToggle, #miniPlay {
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#playToggle:hover, #miniPlay:hover {
  transform: scale(1.06);
}
#playToggle:active, #miniPlay:active {
  transform: scale(0.96);
}
#playToggle:focus-visible, #miniPlay:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--bg, #0a0a0a),
    0 0 0 5px var(--dynamic-accent, #c8102e);
}
.player-panel.is-playing #playToggle {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--dynamic-accent, #c8102e) 60%, transparent),
    0 8px 24px color-mix(in srgb, var(--dynamic-accent, #c8102e) 35%, transparent);
}

/* 1.8 — Toasts : repositionner au-dessus du mini-player sur mobile */
@media (max-width: 720px) {
  #toastHost {
    top: auto !important;
    bottom: 110px !important;
    right: 12px !important;
    left: 12px !important;
    align-items: stretch !important;
  }
  #toastHost .toast { width: 100%; }
}

/* 1.9 — Statut "buffering" : petit indicateur de chargement à côté du label */
body[data-player-state="buffering"] .player-status::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #4aa3ff;
  border-radius: 50%;
  vertical-align: -1px;
  animation: bufferSpin 0.7s linear infinite;
}
@keyframes bufferSpin { to { transform: rotate(360deg); } }

/* 1.10 — Reduced motion : on coupe les animations décoratives */
@media (prefers-reduced-motion: reduce) {
  .player-cover::before,
  .player-panel.is-playing .player-cover,
  .player-panel.is-playing .player-equalizer span,
  .player-cover.is-loading::after,
  body[data-player-state="buffering"] .live-tag-dot,
  body[data-player-state="buffering"] .player-status::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Bottom nav (mobile) */
.bottom-nav { display: none; }
@media (max-width: 760px) {
  .bottom-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 6px 4px calc(6px + env(safe-area-inset-bottom)); background: rgba(10,10,14,0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.1); justify-content: space-around; }
  [data-theme="light"] .bottom-nav { background: rgba(255,255,255,0.95); border-top-color: rgba(0,0,0,0.1); }
  .bn-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 10px; min-width: 56px; min-height: 48px; color: inherit; text-decoration: none; opacity: 0.65; font-size: 0.68rem; font-weight: 600; transition: opacity .15s; }
  .bn-item.is-active, .bn-item:hover { opacity: 1; color: var(--accent, #c8102e); }
  body.has-bottom-nav { padding-bottom: 64px; }
  body.has-bottom-nav #miniPlayer { bottom: 64px; }
}

/* Watch mode (fullscreen) — V2 cinematic */
.watch-mode {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(ellipse at top, #1a0410 0%, #050507 70%);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto;
  gap: 16px;
  padding: 18px clamp(16px, 4vw, 48px) 18px;
  opacity: 0; transform: scale(1.02);
  transition: opacity .3s ease, transform .3s ease;
  overflow: hidden;
  color: #fff;
}
.watch-mode.is-open { opacity: 1; transform: scale(1); }
body.watch-open { overflow: hidden; }

/* Backdrop blur from cover */
.watch-backdrop {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  filter: blur(60px) saturate(1.4) brightness(0.45);
  opacity: 0; transition: opacity .6s ease, background-image .4s ease;
  z-index: 0;
}
.watch-backdrop[style*="background-image"] { opacity: 0.85; }
.watch-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay; opacity: 0.4;
}
.watch-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.wb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; mix-blend-mode: screen; }
.wb-1 { width: 380px; height: 380px; background: var(--dynamic-accent, #c8102e); top: -80px; left: -60px; animation: wbFloat1 18s ease-in-out infinite; }
.wb-2 { width: 320px; height: 320px; background: #ff3a6e; bottom: -60px; right: -40px; animation: wbFloat2 22s ease-in-out infinite; }
.wb-3 { width: 280px; height: 280px; background: #6e3aff; top: 40%; right: 20%; animation: wbFloat3 26s ease-in-out infinite; opacity: 0.4; }
@keyframes wbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,40px) scale(1.15); } }
@keyframes wbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,-30px) scale(1.1); } }
@keyframes wbFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-60px) scale(0.9); } }

/* Top bar */
.watch-top {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
}
.watch-brand { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; }
.watch-live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff2d55; box-shadow: 0 0 0 0 rgba(255,45,85,0.6);
  animation: liveDot 1.6s ease-out infinite;
}
@keyframes liveDot { 0% { box-shadow: 0 0 0 0 rgba(255,45,85,0.7); } 100% { box-shadow: 0 0 0 12px rgba(255,45,85,0); } }
.watch-clock { opacity: 0.7; font-variant-numeric: tabular-nums; letter-spacing: 0.05em; margin-left: 6px; }
.watch-top-actions { display: flex; gap: 8px; }
.watch-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: background .15s, transform .15s;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.watch-icon:hover { background: rgba(255,255,255,0.16); transform: scale(1.06); }

/* Stage (cover + info) */
.watch-stage {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; min-height: 0;
}
.watch-vinyl {
  position: relative;
  width: clamp(220px, 38vh, 360px);
  aspect-ratio: 1;
}
.watch-vinyl-ring {
  position: absolute; inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.18), transparent 60%);
  opacity: 0; transition: opacity .4s;
  animation: ringSpin 10s linear infinite;
}
.watch-mode.is-playing .watch-vinyl-ring { opacity: 1; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.watch-cover {
  width: 100%; height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--dynamic-accent, #c8102e), #ff3a6e);
  background-size: cover; background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,58,110,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s ease;
}
.watch-mode.is-playing .watch-cover {
  animation: coverPulse 4s ease-in-out infinite;
}
@keyframes coverPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,58,110,0.25); }
  50% { transform: scale(1.02); box-shadow: 0 35px 90px rgba(0,0,0,0.7), 0 0 80px rgba(255,58,110,0.4); }
}
.watch-cover.has-img .watch-cover-mark { display: none; }
.watch-cover-mark { font-size: 4rem; font-weight: 900; letter-spacing: -0.02em; color: rgba(255,255,255,0.85); }

/* Faux equalizer bars (CSS animated, no Web Audio) */
.watch-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; height: 38px; opacity: 0; transition: opacity .3s;
}
.watch-mode.is-playing .watch-bars { opacity: 0.85; }
.watch-bars span {
  display: block; width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--dynamic-accent, #ff3a6e), #ffffff);
  height: 8px;
  animation: barJump 0.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.07s);
}
@keyframes barJump {
  0%, 100% { height: 6px; }
  50% { height: 36px; }
}

.watch-info { text-align: center; max-width: 720px; padding: 0 12px; }
.watch-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 10px; opacity: 0.95; }
.watch-title { font-size: clamp(1.5rem, 3.4vw, 2.4rem); margin: 0 0 6px; line-height: 1.1; font-weight: 800; }
.watch-host { font-size: 1rem; opacity: 0.78; margin: 0; }
.watch-track { font-size: 1rem; opacity: 0.9; margin: 12px 0 0; font-style: italic; }

/* Controls */
.watch-controls {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
.watch-btn {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08); color: #fff; cursor: pointer;
  border-radius: 50%; width: 56px; height: 56px; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .15s, box-shadow .2s;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.watch-btn:hover { background: rgba(255,255,255,0.18); transform: scale(1.06); }
.watch-btn--play {
  width: 84px; height: 84px; font-size: 1.9rem;
  background: var(--dynamic-accent, #c8102e); border-color: transparent;
  box-shadow: 0 14px 36px rgba(200,16,46,0.5);
}
.watch-btn--play:hover { background: var(--dynamic-accent, #e0173a); transform: scale(1.08); box-shadow: 0 20px 50px rgba(200,16,46,0.65); }

/* Volume */
.watch-volume {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: 320px; margin: 0 auto; width: 100%;
  font-size: 0.85rem; opacity: 0.75;
}
.watch-volume input[type="range"] {
  flex: 1; accent-color: var(--dynamic-accent, #ff3a6e);
  height: 4px;
}

/* Reactions */
.watch-reactions {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.watch-react {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .15s;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.watch-react:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.watch-react.is-pop { animation: reactPop .25s ease; }
@keyframes reactPop { 50% { transform: scale(1.4); } }

/* Bottom (next + hint) */
.watch-bottom {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.8rem; opacity: 0.65;
}
.watch-next {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; opacity: 0.95;
}
.watch-next-label { font-weight: 700; letter-spacing: 0.12em; opacity: 0.7; }
.watch-next-time { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--dynamic-accent, #ff3a6e); }
.watch-next-title { opacity: 0.95; }
.watch-hint { margin: 0; letter-spacing: 0.04em; }

.watch-open-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-left: 8px; transition: background .15s; }
.watch-open-btn:hover { background: rgba(255,255,255,0.18); }
[data-theme="light"] .watch-open-btn { border-color: rgba(0,0,0,0.15); background: rgba(0,0,0,0.04); }

/* Mobile global polish */
@media (max-width: 760px) {
  .player-header { flex-wrap: wrap; gap: 6px; }
  .weather-chip { font-size: 0.72rem; }
  .player-onair { gap: 12px; }
  .player-cover img { width: 72px; height: 72px; }
  .player-onair-title { font-size: 1.05rem; }
  .header-tools { flex-wrap: wrap; }
  .rail-card { flex: 0 0 78vw; min-width: 78vw; max-width: 320px; }
  .news-card { flex: 0 0 82vw; min-width: 82vw; }
  .rail-section { padding: 12px 12px 0; }
  .rail-head h2 { font-size: 1rem; }
  .rail-arrows { display: none; }
  .watch-cover { width: 70vw; max-width: 280px; height: 70vw; max-height: 280px; }
  .watch-title { font-size: 1.4rem; }
  /* tap targets */
  button, .button, a.button { min-height: 44px; }
}
@media (max-width: 480px) {
  .quick-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .talent-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
}

/* === V5 marker === Wave 5: dynamic accent, lyrics, reactions, PiP, shortcuts, tour */

/* Couleur dynamique : utilise --dynamic-accent quand dispo, sinon rouge HR */
:root { --dynamic-accent: #c8102e; }
.player-panel--signature { box-shadow: 0 30px 80px -30px var(--dynamic-accent, rgba(200,16,46,0.4)); transition: box-shadow .6s ease; }
.player-live-badge { background: linear-gradient(90deg, var(--dynamic-accent, #c8102e), rgba(255,58,110,0.85)) !important; transition: background .6s ease; }
.play-button { background: var(--dynamic-accent, #c8102e) !important; transition: background .6s ease; }

/* Lyrics panel */
.lyrics-panel { position: fixed; top: 80px; right: 20px; width: 360px; max-height: 70vh; background: rgba(15,12,18,0.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; z-index: 150; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.5); animation: lyricsIn .25s ease; }
@keyframes lyricsIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.lyrics-panel header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lyrics-panel header strong { font-size: 0.95rem; }
.lyrics-status { margin-left: auto; font-size: 0.72rem; opacity: 0.7; padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,0.06); }
.lyrics-close { width: 28px; height: 28px; border-radius: 50%; border: none; background: transparent; color: inherit; cursor: pointer; font-size: 1.4rem; line-height: 1; }
.lyrics-close:hover { background: rgba(255,255,255,0.1); }
.lyrics-body { overflow-y: auto; padding: 12px 16px 18px; flex: 1; scroll-behavior: smooth; }
.lyrics-body::-webkit-scrollbar { width: 6px; }
.lyrics-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.lyrics-line { margin: 6px 0; font-size: 0.95rem; opacity: 0.45; transition: opacity .2s, transform .2s, color .2s; line-height: 1.4; }
.lyrics-line.is-past { opacity: 0.32; }
.lyrics-line.is-active { opacity: 1; color: var(--dynamic-accent, #ff3a6e); font-weight: 700; transform: translateX(4px) scale(1.03); transform-origin: left; }
.lyrics-empty { opacity: 0.6; font-style: italic; padding: 12px 0; }
.lyrics-plain { white-space: pre-wrap; font-family: inherit; font-size: 0.9rem; opacity: 0.85; line-height: 1.5; margin: 0; }

[data-theme="light"] .lyrics-panel { background: rgba(255,255,255,0.96); border-color: rgba(0,0,0,0.1); }

@media (max-width: 760px) {
  .lyrics-panel { top: auto; bottom: 80px; right: 12px; left: 12px; width: auto; max-height: 50vh; }
}

/* Reactions */
.reactions-bar { display: flex; gap: 6px; padding: 10px 16px 14px; flex-wrap: wrap; justify-content: flex-end; }
.reaction-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); cursor: pointer; font-size: 1.15rem; display: inline-flex; align-items: center; justify-content: center; transition: transform .15s, background .15s; padding: 0; line-height: 1; }
.reaction-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.reaction-btn.is-pop { animation: pop .25s ease; }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.4); } 100% { transform: scale(1); } }
[data-theme="light"] .reaction-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }

/* Floating emoji layer */
.float-layer { position: fixed; inset: 0; pointer-events: none; z-index: 300; overflow: hidden; }
.float-emoji { position: fixed; font-size: 1.8rem; pointer-events: none; animation: floatUp var(--dur, 1.6s) cubic-bezier(.2,.6,.3,1) forwards; will-change: transform, opacity; }
@keyframes floatUp {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  15%  { opacity: 1; transform: translate(calc(var(--dx) * 0.3), calc(var(--dy) * 0.2)) scale(1.1); }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.9) rotate(15deg); opacity: 0; }
}

/* Shortcuts panel */
.shortcuts-panel { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 220; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 16px; }
.shortcuts-card { background: #131218; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 22px 26px; max-width: 460px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
[data-theme="light"] .shortcuts-card { background: #fff; border-color: rgba(0,0,0,0.1); color: #131218; }
.shortcuts-card header { display: flex; align-items: center; margin-bottom: 14px; }
.shortcuts-card header strong { font-size: 1.05rem; }
.shortcuts-close { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255,255,255,0.1); color: inherit; cursor: pointer; font-size: 1.3rem; line-height: 1; }
[data-theme="light"] .shortcuts-close { background: rgba(0,0,0,0.06); }
.shortcuts-card table { width: 100%; border-collapse: collapse; }
.shortcuts-card td { padding: 8px 4px; font-size: 0.92rem; border-bottom: 1px dashed rgba(255,255,255,0.06); }
.shortcuts-card td:first-child { width: 100px; }
.shortcuts-card kbd { display: inline-block; padding: 3px 8px; border-radius: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); font-family: ui-monospace, SFMono-Regular, monospace; font-size: 0.78rem; box-shadow: 0 2px 0 rgba(0,0,0,0.3); }
[data-theme="light"] .shortcuts-card kbd { background: #f4f4f6; border-color: rgba(0,0,0,0.12); box-shadow: 0 2px 0 rgba(0,0,0,0.08); color: #131218; }

/* Onboarding tour */
.tour-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 250; pointer-events: none; }
.tour-bubble { pointer-events: auto; }
.tour-bubble { position: absolute; max-width: 300px; background: #1a1622; border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 16px 18px; color: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: tourIn .25s ease; }
[data-theme="light"] .tour-bubble { background: #fff; color: #131218; border-color: rgba(0,0,0,0.1); }
@keyframes tourIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tour-bubble strong { display: block; font-size: 1rem; margin-bottom: 6px; color: var(--dynamic-accent, #ff3a6e); }
.tour-bubble p { margin: 0 0 12px; font-size: 0.88rem; line-height: 1.4; opacity: 0.9; }
.tour-actions { display: flex; gap: 8px; }
.tour-actions button { padding: 6px 14px; border-radius: 999px; border: none; cursor: pointer; font-weight: 600; font-size: 0.82rem; }
.tour-skip { background: transparent; color: inherit; opacity: 0.7; }
.tour-skip:hover { opacity: 1; }
.tour-next { background: var(--dynamic-accent, #c8102e); color: #fff; margin-left: auto; }
.tour-step { display: block; margin-top: 10px; font-size: 0.7rem; opacity: 0.5; text-align: right; }
.tour-spotlight { position: relative; z-index: 251 !important; box-shadow: 0 0 0 4px var(--dynamic-accent, #c8102e), 0 0 0 9999px rgba(0,0,0,0.55); border-radius: 12px; transition: box-shadow .25s; }

/* V5 tool buttons in header */
.tool-btn { font-size: 1rem; }

/* === V5b === Logo image */
.brand-mark--img { padding: 0; background: #0d0a10; border: 1.5px solid rgba(220,20,48,0.5); object-fit: contain; box-shadow: 0 0 24px rgba(255,200,80,0.25); }
[data-theme="light"] .brand-mark--img { background: #f8f8fa; border-color: rgba(200,16,46,0.35); }
.player-cover img { object-fit: cover; }



/* === V5c === details: logo+, lyrics min/drag, more menu */

/* Logo plus grand avec halo */
.brand-mark:not(.brand-mark--final) { width: 56px !important; height: 56px !important; border-radius: 14px !important; padding: 4px; }
.brand-mark--img { background: radial-gradient(circle at 50% 40%, rgba(200,16,46,0.45) 0%, rgba(15,12,18,1) 70%) !important; box-shadow: 0 0 32px rgba(255,80,120,0.45), 0 0 0 1px rgba(255,80,120,0.3) inset !important; transition: transform .3s ease, box-shadow .3s ease; }
.brand:hover .brand-mark--img { transform: scale(1.06) rotate(-3deg); box-shadow: 0 0 48px rgba(255,80,120,0.7), 0 0 0 2px rgba(255,80,120,0.5) inset !important; }
[data-theme="light"] .brand-mark--img { background: radial-gradient(circle at 50% 40%, rgba(200,16,46,0.18) 0%, #f8f8fa 70%) !important; }

/* Logo final : grande image rectangulaire, sort du header */
.site-header .brand .brand-mark--final {
  width: auto !important;
  height: 96px !important;
  max-height: 96px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6)) drop-shadow(0 0 22px rgba(220,20,48,0.35));
  transition: transform .3s ease, filter .3s ease;
}
.site-header .brand:hover .brand-mark--final {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.7)) drop-shadow(0 0 32px rgba(255,80,120,0.55));
}
@media (max-width: 720px) {
  .site-header .brand .brand-mark--final { height: 64px !important; max-height: 64px; }
  .hero-media { inset: 0; }
}

/* Boutons d'origine masqu\u00e9s quand d\u00e9plac\u00e9s dans le menu */
.header-tool.is-collapsed { display: none !important; }

/* Bouton 'plus' */
.more-btn svg { width: 18px; height: 18px; }
.more-menu { position: fixed; min-width: 220px; padding: 6px; background: rgba(20,18,26,0.98); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; box-shadow: 0 30px 70px rgba(0,0,0,0.55); z-index: 180; animation: menuIn .15s ease; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
[data-theme="light"] .more-menu { background: rgba(255,255,255,0.98); border-color: rgba(0,0,0,0.1); color: #131218; }
.more-item { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px; background: transparent; border: none; color: inherit; text-align: left; font: inherit; font-size: 0.92rem; border-radius: 8px; cursor: pointer; }
.more-item:hover, .more-item:focus-visible { background: rgba(255,255,255,0.08); outline: none; }
[data-theme="light"] .more-item:hover { background: rgba(0,0,0,0.05); }
.more-ico { width: 24px; text-align: center; font-size: 1.05rem; opacity: 0.9; }

/* Lyrics : header bar drag + minimize */
.lyrics-head { cursor: grab; user-select: none; }
.lyrics-panel.is-drag .lyrics-head { cursor: grabbing; }
.lyrics-min { width: 28px; height: 28px; border-radius: 50%; border: none; background: transparent; color: inherit; cursor: pointer; font-size: 1.1rem; line-height: 1; font-weight: 700; }
.lyrics-min:hover { background: rgba(255,255,255,0.1); }
.lyrics-panel.is-min .lyrics-body { display: none; }
.lyrics-panel.is-min { width: 240px !important; }
.lyrics-panel { left: auto; }




/* =====================================================
   PHASE 2 — UX (drawer Now Playing + swipe + double-tap)
   ===================================================== */

/* Pochette : feedback "muet" lors du double-tap */
.player-cover.just-muted::after {
  content: "🔇";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: inherit;
  animation: muteFlash 0.55s ease-out;
  pointer-events: none;
  z-index: 3;
}
@keyframes muteFlash {
  0%   { opacity: 0; transform: scale(0.5); }
  35%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.3); }
}

/* Mini-player : swipe down feedback (transition reset par JS) */
.mini-player {
  transition: transform 0.32s cubic-bezier(.22,1,.36,1),
              opacity 0.28s ease,
              bottom 0.28s ease;
  touch-action: pan-y;
}

/* Now Playing drawer — plein écran sur mobile, modal sur desktop */
.np-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.np-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.np-drawer .np-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  filter: blur(38px) brightness(0.45) saturate(1.2);
  transform: scale(1.15);
}
.np-drawer .np-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background 0.18s ease;
}
.np-drawer .np-close:hover { transform: scale(1.08); background: rgba(0,0,0,0.7); }
.np-drawer .np-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1) 0.05s, opacity 0.32s ease 0.05s;
}
.np-drawer.is-open .np-inner { transform: translateY(0); opacity: 1; }
.np-drawer .np-cover {
  width: min(72vw, 340px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 60px color-mix(in srgb, var(--dynamic-accent, #c8102e) 30%, transparent);
}
.np-drawer .np-meta { color: #fff; }
.np-drawer .np-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--tag-color, #c8102e) 25%, transparent);
  border: 1px solid color-mix(in srgb, var(--tag-color, #c8102e) 55%, transparent);
  color: #fff;
  margin-bottom: 12px;
}
.np-drawer .np-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.15;
}
.np-drawer .np-host {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0;
}
.np-drawer .np-track {
  margin: 14px 0 0;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 0.95rem;
}
.np-drawer .np-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.np-drawer .btn-primary,
.np-drawer .btn-ghost {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.np-drawer .btn-primary {
  background: var(--dynamic-accent, #c8102e);
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--dynamic-accent, #c8102e) 45%, transparent);
}
.np-drawer .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.np-drawer .btn-primary:hover,
.np-drawer .btn-ghost:hover { transform: translateY(-1px); filter: brightness(1.1); }

[data-theme="light"] .np-drawer .np-bg { background-color: #1a1a1a; }

@media (prefers-reduced-motion: reduce) {
  .np-drawer, .np-drawer .np-inner, .player-cover.just-muted::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =====================================================
   PHASE 4 — Mobile & a11y
   ===================================================== */

/* sr-only : visible uniquement par les lecteurs d'écran */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Touch targets : tous les boutons d'action du lecteur >= 44px */
@media (max-width: 720px) {
  .mini-player .mini-icon-btn,
  .mini-player .mini-close,
  .player-controls .icon-btn {
    min-width: 44px;
    min-height: 44px;
  }
  /* Pill mode pour très petits écrans : compacter le mini-player */
  @media (max-width: 380px) {
    .mini-player {
      padding: 8px 10px;
      gap: 8px;
    }
    .mini-player .mini-meta { font-size: 0.85rem; }
    .mini-player .mini-show { font-size: 0.78rem; }
    .mini-player .mini-track { font-size: 0.72rem; }
    .mini-player #miniHistoryBtn,
    .mini-player #miniShareBtn { display: none; }
  }
}

/* Focus visible cohérent partout sur le lecteur */
.np-drawer button:focus-visible,
.mini-player button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #000,
    0 0 0 4px var(--dynamic-accent, #c8102e);
}

/* =====================================================
   MOBILE POLISH — hero + lecteur (≤ 760px)
   ===================================================== */
@media (max-width: 760px) {
  /* Hero : ratio naturel impossible sur portrait → hauteur libre, image
     centrée, image complète visible, plus de bandes ni de coupure */
  .hero {
    aspect-ratio: auto;
    margin-top: 76px;          /* hauteur du header en mobile */
    min-height: auto;
    padding: 18px 16px 28px;
  }
  .hero-media { position: relative; inset: auto; }
  .hero-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1168 / 784;  /* image vue en entier au-dessus du contenu */
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-layer-bottom { display: none; }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin-top: 16px;
    padding: 0;
  }
  .hero-copy {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Player : compact mais lisible, aligné full-width */
  .player-panel--signature {
    width: 100%;
    max-width: 100%;
    font-size: 0.92em;
    border-radius: 14px;
  }
  .player-header {
    padding: 10px 14px;
    gap: 10px;
  }
  .player-station-name { font-size: 0.78rem; }
  .player-clock        { font-size: 0.70rem; }
  .weather-chip        { font-size: 0.72rem; }

  .player-onair {
    padding: 14px;
    gap: 14px;
  }
  .player-cover { width: 64px; height: 64px; }
  .player-onair-title { font-size: 1.05rem; }
  .player-onair-host  { font-size: 0.82rem; }

  .player-controls {
    padding: 12px 14px 14px;
    gap: 12px;
  }
  .play-button { width: 56px; height: 56px; }
  .volume-control input[type="range"] { width: 100%; min-width: 80px; }

  /* Header : un peu plus serré */
  .site-header { min-height: 76px; padding: 6px 14px; }
}

@media (max-width: 480px) {
  .hero { padding: 14px 12px 22px; }
  .player-onair-kicker { flex-wrap: wrap; }
  .player-onair-tag    { font-size: 0.58rem; }
  .player-onair-slot   { font-size: 0.66rem; }
  .player-onair-title  { font-size: 0.98rem; line-height: 1.2; }
  .player-track-live   { font-size: 0.72rem; }
  .player-status       { font-size: 0.78rem; }
  .player-status-sub   { font-size: 0.70rem; }

  /* Boutons réactions sur 2 lignes propres */
  .player-controls { flex-wrap: wrap; }
}


/* =====================================================
   FEATURED BAND (À la une) + PARTNERS
   ===================================================== */
.featured-band { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-6);
}
.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(220,20,48,0.10), rgba(15,15,18,0.95));
  border: 1px solid rgba(220,20,48,0.28);
  box-shadow: 0 18px 40px -18px rgba(220,20,48,0.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220,20,48,0.55);
  box-shadow: 0 26px 60px -22px rgba(220,20,48,0.55);
}
.featured-card h3 {
  margin: 0;
  font-family: var(--font-display, Syne, Inter, sans-serif);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.featured-tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(220,20,48,0.22);
  border: 1px solid rgba(220,20,48,0.5);
  color: #ff7a92;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.featured-meta {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
  font-weight: 600;
}
.featured-card p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}
.featured-cover {
  width: 64px; height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
}
.featured-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.partners-band { padding-top: var(--space-8); padding-bottom: var(--space-10); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: var(--space-6);
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(15,15,18,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(220,20,48,0.5);
  background: rgba(20,18,22,0.95);
}
.partner-logo {
  font-family: var(--font-display, Syne, Inter, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.partner-logo strong { color: var(--accent-bright, #ff3a6e); font-weight: 900; }
.partner-meta {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 760px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { padding: 18px; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   REQUESTS / DEDICACES + LISTEN ELSEWHERE + MOBILE NAV
   ===================================================== */
.requests-band { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.requests-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(22px, 3vw, 40px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(220,20,48,0.18), transparent 60%),
    linear-gradient(160deg, rgba(20,18,22,0.95), rgba(10,10,10,0.95));
  border: 1px solid rgba(220,20,48,0.28);
  box-shadow: 0 30px 70px -30px rgba(220,20,48,0.5);
}
.requests-text h2 { margin: 8px 0 12px; font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; }
.requests-text p { margin: 0; color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.55; }
.requests-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.requests-actions .button { white-space: nowrap; }

.listen-elsewhere { padding-bottom: var(--space-10); }
.stream-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: var(--space-6);
}
.stream-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(15,15,18,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: inherit;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stream-chip:hover { transform: translateY(-2px); border-color: rgba(220,20,48,0.5); background: rgba(20,18,22,0.95); }
.stream-chip-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.stream-chip-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.stream-chip-text strong { color: #fff; font-size: 0.98rem; }
.stream-chip-text span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

@media (max-width: 760px) {
  .requests-card { grid-template-columns: 1fr; padding: 18px; }
  .requests-actions { flex-direction: column; align-items: stretch; }
  .requests-actions .button { width: 100%; justify-content: center; }
  /* Hero mobile : degrade doux entre image et contenu */
  .hero-image { mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%); -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%); }
  /* Menu mobile : fond plus opaque + ombre */
  .site-header.is-open .main-nav { background: rgba(8,8,10,0.99); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
}

/* =====================================================
   A11Y : skip link + reduced-motion + session badge
   ===================================================== */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  background: #dc1430;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

main:focus { outline: none; }

.session-badge {
  display: inline-block;
  margin: 12px 0 0;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(220,20,48,0.18);
  border: 1px solid rgba(220,20,48,0.4);
  border-radius: 999px;
}
.mini-session {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .vinyl-disc, .is-spinning, .vumeter, .eq-bars,
  .ticker, .marquee, .pulse, .shimmer { animation: none !important; }
  html { scroll-behavior: auto !important; }
}

/* =====================================================
   PHASE 5 UX : ticker, vumetre, back-to-top, reveal,
   skeleton metas, vinyl cursor
   ===================================================== */

/* Ticker defilant sous le header */
.hr-ticker {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(220,20,48,0.95), rgba(140,10,30,0.95));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.hr-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  animation: hr-ticker-scroll 60s linear infinite;
  padding-left: 100%;
}
.hr-ticker-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 4px #fff;
  animation: hr-blink 1.4s ease-in-out infinite;
}
@keyframes hr-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes hr-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Vumetre CSS sous le bouton play */
.vumeter {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 24px;
  margin: 8px auto 0;
  width: 80px;
  opacity: 0.35;
  transition: opacity .3s ease;
}
.vumeter span {
  display: block;
  width: 5px;
  background: linear-gradient(180deg, #dc1430, #ff4d6d);
  border-radius: 2px;
  transform-origin: bottom;
  height: 30%;
}
body.is-playing-radio .vumeter { opacity: 1; }
body.is-playing-radio .vumeter span {
  animation: vu-bar 0.7s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * 0.08s);
}
@keyframes vu-bar {
  0%   { height: 18%; }
  20%  { height: 90%; }
  40%  { height: 35%; }
  70%  { height: 75%; }
  100% { height: 50%; }
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 18px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(220,20,48,0.5);
  background: rgba(15,15,18,0.92);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.back-to-top.is-shown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover    { background: rgba(220,20,48,0.85); transform: translateY(-2px); }

/* Scroll reveal generique */
.hr-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.hr-reveal-in { opacity: 1; transform: none; }

/* Skeleton metas (titre/artiste pendant chargement) */
.is-skeleton {
  display: inline-block;
  min-width: 140px;
  min-height: 1em;
  border-radius: 6px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.06) 100%);
  background-size: 200% 100%;
  animation: hr-skeleton-shimmer 1.4s ease-in-out infinite;
  color: transparent !important;
}
@keyframes hr-skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 760px) {
  .hr-ticker { font-size: 0.7rem; padding: 5px 0; }
  .hr-ticker-track { animation-duration: 45s; }
  .back-to-top { bottom: 100px; right: 12px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .hr-ticker-track { animation: none; padding-left: 0; }
  .vumeter span { animation: none !important; height: 50% !important; }
  .hr-reveal { opacity: 1; transform: none; }
}

/* =====================================================
   FIX: empilement ticker + header
   ===================================================== */
:root { --hr-ticker-h: 26px; }

.hr-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;            /* au-dessus du header (40) */
  height: var(--hr-ticker-h);
  padding: 0;
  display: flex;
  align-items: center;
}
.hr-ticker-track { line-height: var(--hr-ticker-h); }

.site-header { top: var(--hr-ticker-h) !important; }
.hero { margin-top: calc(110px + var(--hr-ticker-h)) !important; }
body.is-offline .site-header { margin-top: calc(38px + var(--hr-ticker-h)); }

@media (max-width: 760px) {
  :root { --hr-ticker-h: 22px; }
}

/* Partner logo image (BeatRadioWorld) */
.partner-logo-img {
  display: block;
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 6px;
  filter: drop-shadow(0 4px 12px rgba(220,20,48,0.35));
}

/* ============================================================
   Header play button (injecté par script.js sur toutes les pages)
   ============================================================ */
.header-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 12px;
  padding: 9px 16px 9px 14px;
  border: 1px solid rgba(220, 20, 48, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, #dc1430 0%, #a80020 100%);
  color: #fff;
  font: 600 0.78rem/1 "Inter", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(220, 20, 48, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.18s var(--ease-out, ease), filter 0.18s ease, box-shadow 0.18s ease, background 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.header-play:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 8px 22px rgba(220, 20, 48, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.header-play:active { transform: translateY(0); }
.header-play:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 3px;
}
.header-play .hp-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.header-play .hp-ico--pause { display: none; }
.header-play.is-playing .hp-ico--play { display: none; }
.header-play.is-playing .hp-ico--pause { display: inline-flex; }
.header-play.is-playing {
  background: linear-gradient(135deg, #16a34a 0%, #047a2c 100%);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.header-play .hp-pulse {
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: hpPulse 1.4s infinite;
}
.header-play.is-playing .hp-pulse { display: inline-block; }
@keyframes hpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (max-width: 640px) {
  .header-play {
    padding: 8px 12px;
    margin-right: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .header-play .hp-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .header-play, .header-play:hover { transition: none; transform: none; }
  .header-play .hp-pulse { animation: none; }
}
