/* ═══════════════════════════════════════════════════
   HatıraFM — Global Design System
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --bg:       #07070e;
  --surface:  #0f0f1a;
  --surface2: #16162a;
  --surface3: #1e1e36;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);

  --gold:     #c8a96e;
  --gold-dim: rgba(200,169,110,0.15);
  --gold-glow:rgba(200,169,110,0.25);
  --violet:   #7c6fff;
  --violet-dim:rgba(124,111,255,0.15);
  --red:      #ff6b6b;
  --green:    #4ade80;
  --pink:     #f472b6;
  --indigo:   #818cf8;
  --purple:   #a78bfa;
  --slate:    #94a3b8;

  --text:     #e8e8f0;
  --text2:    #a0a0b8;
  --muted:    #5a5a72;

  --radius:   12px;
  --radius-lg:20px;
  --radius-xl:32px;

  --nav-h:    72px;
  --max-w:    1200px;

  --font:     'Space Grotesk', sans-serif;
  --mono:     'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 99px; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(7,7,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.25rem; letter-spacing: 0.04em;
  color: var(--gold);
}

.nav-logo span { color: var(--text); font-weight: 400; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

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

.nav-links a {
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text2);
  transition: color .2s, background .2s;
}

.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active { color: var(--gold); }

.nav-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text2);
}

.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-live strong { color: var(--gold); }

/* hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  background: var(--surface);
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-mobile {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h); z-index: 99;
  background: rgba(7,7,14,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 32px;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text2); border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ══════════════════════════════
   PAGE WRAPPER
══════════════════════════════ */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 99px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}

.tag.violet {
  background: var(--violet-dim);
  border-color: rgba(124,111,255,0.3);
  color: var(--violet);
}

.section-eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

.display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.015em;
}

.subhead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text2); font-weight: 400; line-height: 1.7;
}

.mono { font-family: var(--mono); }

.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); }

.card-sm {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  transition: all .2s;
}

.btn-primary {
  background: var(--gold);
  color: #07070e;
}
.btn-primary:hover { background: #d9bc84; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,110,0.3); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ══════════════════════════════
   DIVIDER
══════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 64px 0;
}

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124,111,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(200,169,110,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #0a0818 100%);
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ══════════════════════════════
   DJ CARD (schedule list)
══════════════════════════════ */
.dj-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center; gap: 20px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.dj-row:hover { border-color: var(--border2); transform: translateX(4px); }
.dj-row.active-dj { border-color: var(--gold); background: rgba(200,169,110,0.05); }

.dj-row-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border2);
}
.dj-row.active-dj .dj-row-img { border-color: var(--gold); box-shadow: 0 0 16px rgba(200,169,110,0.4); }

.dj-row-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.dj-row-info p { font-size: 0.82rem; color: var(--muted); }

.dj-row-time {
  font-family: var(--mono);
  font-size: 0.8rem; color: var(--muted);
  text-align: right; white-space: nowrap;
}

/* ══════════════════════════════
   DJ CHARACTER CARD
══════════════════════════════ */
.dj-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all .4s;
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.dj-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.dj-card:hover .dj-card-img { transform: scale(1.05); }

.dj-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--surface2);
}
.dj-card-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s ease;
}

.dj-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.dj-card-emoji { font-size: 1.5rem; }
.dj-card-name { font-size: 1.3rem; font-weight: 700; }
.dj-card-time { font-family: var(--mono); font-size: 0.78rem; }
.dj-card-vibe { font-size: 0.85rem; color: var(--text2); flex: 1; }
.dj-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--muted);
}

/* ══════════════════════════════
   ACTIVE BROADCAST CARD
══════════════════════════════ */
.broadcast-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  overflow: hidden;
  display: flex; gap: 40px; align-items: center;
}

.broadcast-card-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 90% 50%, var(--gold-dim) 0%, transparent 70%);
}

.broadcast-img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
  flex-shrink: 0;
  position: relative; z-index: 1;
}

.broadcast-info { flex: 1; position: relative; z-index: 1; }
.broadcast-info .tag { margin-bottom: 16px; }
.broadcast-info h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 6px; }
.broadcast-time { font-family: var(--mono); font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }
.broadcast-desc { font-size: 0.95rem; color: var(--text2); line-height: 1.7; max-width: 500px; margin-bottom: 24px; }

/* player controls */
.player-bar {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

.btn-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #07070e;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all .2s;
  flex-shrink: 0;
}
.btn-play:hover { background: #d9bc84; transform: scale(1.08); box-shadow: 0 0 24px rgba(200,169,110,0.5); }
.btn-play.playing { background: var(--violet); color: #fff; }

.volume-wrap {
  display: flex; align-items: center; gap: 8px;
  flex: 1; min-width: 120px; max-width: 200px;
}
.volume-wrap input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--surface3); border-radius: 99px; cursor: pointer;
}
.volume-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
}
.vol-icon { font-size: 0.9rem; color: var(--muted); }

/* waveform animation */
.waveform {
  display: flex; align-items: flex-end; gap: 3px; height: 24px;
}
.waveform span {
  display: block; width: 3px; background: var(--gold);
  border-radius: 2px; opacity: 0.7;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 80%; animation-delay: 0.15s; }
.waveform span:nth-child(6) { height: 45%; animation-delay: 0.25s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.waveform.paused span { animation-play-state: paused; }

/* ══════════════════════════════
   TIMELINE (YAYIN AKIŞI)
══════════════════════════════ */
.timeline { display: flex; flex-direction: column; gap: 8px; }

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  position: relative;
}

.timeline-time {
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding-right: 28px; padding-top: 22px;
  font-family: var(--mono); font-size: 0.78rem; color: var(--muted);
  position: relative;
}

.timeline-time::after {
  content: '';
  position: absolute; right: 14px; top: 30px;
  width: 10px; height: 10px;
  border-radius: 50%; background: var(--surface3);
  border: 2px solid var(--border2);
  z-index: 1;
}

.timeline-item.active-dj .timeline-time::after {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(200,169,110,0.6);
}

.timeline-line {
  position: absolute; left: 100px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
  transform: translateX(-1px);
}

.timeline-content {
  padding: 12px 0 12px 16px;
}

/* ══════════════════════════════
   DJ DETAIL PAGE
══════════════════════════════ */
.dj-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

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

.dj-hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px; align-items: start;
}

.dj-hero-img-wrap {
  position: relative;
}

.dj-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border2);
  object-fit: cover; object-position: top center;
  aspect-ratio: 3/4;
}

.dj-hero-badge {
  position: absolute; bottom: -1px; left: -1px; right: -1px;
  background: linear-gradient(0deg, var(--surface) 0%, transparent 100%);
  padding: 60px 24px 24px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.dj-signature {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text2);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  line-height: 1.8;
  margin: 20px 0;
}

.dj-traits {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0;
}

.trait-pill {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem; font-weight: 500;
  border: 1px solid var(--border2);
  color: var(--text2);
  background: var(--surface2);
}

.dj-section { margin-top: 36px; }
.dj-section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.dj-section p { font-size: 0.95rem; color: var(--text2); line-height: 1.8; }

/* ══════════════════════════════
   STATS / METRICS
══════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--mono); font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════
   PROGRESS BAR
══════════════════════════════ */
.progress-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 12px; margin-bottom: 16px;
}
.progress-label { font-size: 0.9rem; color: var(--text2); }
.progress-pct { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); }
.progress-bar {
  height: 5px;
  background: var(--surface3);
  border-radius: 99px; overflow: hidden;
  margin-top: 4px;
}
.progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
}

/* ══════════════════════════════
   FEATURES GRID
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

/* ══════════════════════════════
   ATMOSPHERE ENGINE
══════════════════════════════ */

/* Ambient orbs — behind everything */
#atm-orb-1, #atm-orb-2 { pointer-events: none; }

/* Per-DJ body accent variable */
body { --dj-color: var(--gold); }

/* Broadcast card: DJ-aware border glow */
.broadcast-card { transition: border-color 2s ease, box-shadow 2s ease; }

/* DJ card hover lift */
.dj-card-v2, .dj-card { transition: transform .35s ease, border-color .3s ease, box-shadow .4s ease; }
.dj-card-v2:hover { box-shadow: 0 16px 48px rgba(0,0,0,.4); }

/* Waveform bars — dynamic color via style attr */
.waveform span { transition: background .8s ease; }
.waveform.paused span { animation-play-state: paused; opacity: .45; }

/* DJ-specific motion styles applied via .motion-* class on body */
body.motion-slow    .dj-card-v2:hover { transform: translateY(-4px); }
body.motion-energetic .dj-card-v2:hover { transform: translateY(-10px) rotate(.5deg); }
body.motion-poetic  * { --transition-speed: 0.7s; }

/* Presence toast animation already in atmosphere.js style injection */

/* Audio player glow when playing */
.btn-play.playing {
  box-shadow: 0 0 0 0 rgba(124,111,255,.5);
  animation: btn-pulse 2s infinite;
}
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,111,255,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(124,111,255,.0); }
  100% { box-shadow: 0 0 0 0 rgba(124,111,255,.0); }
}

/* Nav bar: live indicator glow */
.nav-live .live-dot {
  box-shadow: 0 0 6px var(--red), 0 0 14px rgba(255,107,107,.4);
}

/* Timeline: active item pulse */
.timeline-item.active-dj .tl-card {
  animation: card-breathe 4s ease-in-out infinite;
}
@keyframes card-breathe {
  0%,100% { box-shadow: 0 0 0 0 transparent; }
  50%      { box-shadow: 0 0 24px rgba(200,169,110,.18); }
}

/* Fade-in utility */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 80px;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

.footer-logo {
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
}

.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem; color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════
   PHASE 5 — IDENTITY DEPTH
══════════════════════════════ */

/* ── Per-DJ body class atmosphere overrides ── */
body.dj-kartal  { --dj-color: #c8a96e; --dj-glow: rgba(200,169,110,.18); }
body.dj-tomris  { --dj-color: #7c6fff; --dj-glow: rgba(124,111,255,.16); }
body.dj-mergen  { --dj-color: #4ade80; --dj-glow: rgba(74,222,128,.14); }
body.dj-cagla   { --dj-color: #f472b6; --dj-glow: rgba(244,114,182,.16); }
body.dj-bedik   { --dj-color: #ff6b6b; --dj-glow: rgba(255,107,107,.18); }
body.dj-karan   { --dj-color: #818cf8; --dj-glow: rgba(129,140,248,.14); }
body.dj-aykiz   { --dj-color: #a78bfa; --dj-glow: rgba(167,139,250,.16); }
body.dj-gece    { --dj-color: #5a5a72; --dj-glow: rgba(90,90,114,.12); }

/* Broadcast card ambient glow reacts to DJ */
.broadcast-card { box-shadow: 0 0 60px var(--dj-glow, transparent); }

/* ── Aykız — grain + moonlight depth ── */
body.dj-aykiz .dj-hero-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse 60% 80% at 50% 70%, rgba(167,139,250,.12) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
body.dj-aykiz .dj-signature { border-color: #a78bfa; color: #c4b5fd; }

/* ── Bedik — neon highlight on pills ── */
body.dj-bedik .trait-pill {
  border-color: rgba(255,107,107,.4);
  background: rgba(255,107,107,.07);
  color: #ffc2c2;
}

/* ── Karan — cool night blue muted tones ── */
body.dj-karan .dj-signature { border-color: #818cf8; }

/* ── Mergen — ultra minimal signature ── */
body.dj-mergen .dj-signature { letter-spacing: .03em; opacity: .85; }

/* ── Station ID ticker ── */
[data-station-id] {
  transition: opacity .6s ease;
}

/* ── Social teaser quote ── */
.teaser-quote {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700; font-style: italic;
  line-height: 1.45; letter-spacing: -.01em;
  color: var(--text2);
  border-left: 3px solid var(--dj-color, var(--gold));
  padding-left: 20px;
  margin: 8px 0;
}

/* ── Launch tag hover ── */
.launch-tag {
  transition: background .2s, border-color .2s;
}
.launch-tag:hover {
  background: rgba(124,111,255,.2);
  border-color: rgba(124,111,255,.5);
}

/* ── Fake metadata row subtle style ── */
[data-fm] { transition: opacity .35s ease; }

/* ══════════════════════════════
   SECTION SPACING
══════════════════════════════ */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-top: 12px; }

/* ══════════════════════════════
   PHASE 4 — POLISH & QA
══════════════════════════════ */

/* ── Focus rings (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible { outline-offset: 4px; }

/* ── Range input — cross-browser track & thumb ── */
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--surface3); border-radius: 99px;
  cursor: pointer; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold);
  cursor: pointer; transition: transform .15s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.25); }
input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
}
input[type=range]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* ── Nav active state — underline accent ── */
.nav-links a.active {
  color: var(--gold);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 16px; right: 16px;
  height: 2px; border-radius: 99px;
  background: var(--gold);
}

/* ── Player bar — status dot pulse when playing ── */
[data-radio="dot"][style*="#4ade80"] {
  animation: dot-breathe 2.5s ease-in-out infinite;
}
@keyframes dot-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── btn-play disabled state ── */
.btn-play:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Broadcast card — sharper glow on playing state ── */
.broadcast-card.is-playing {
  border-color: var(--violet);
  box-shadow: 0 0 48px rgba(124,111,255,.12);
}

/* ── DJ detail page — color depth via CSS var ── */
.dj-hero-img {
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.dj-hero-img-wrap::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  border: 1.5px solid var(--dj-color, var(--border2));
  opacity: .55;
  pointer-events: none;
}

/* ── DJ v2 card on-air ring ── */
.dj-card-v2.on-air {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold-dim), 0 16px 48px rgba(200,169,110,.15);
}

/* ── Sponsor page hero CTA ── */
.sponsor-cta-box {
  background: linear-gradient(135deg, rgba(200,169,110,.12) 0%, rgba(124,111,255,.08) 100%);
  border: 1px solid rgba(200,169,110,.35);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}
.sponsor-cta-box h2 { margin-bottom: 12px; }
.sponsor-cta-box p  { color: var(--text2); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Card hover — smoother ── */
.card { transition: border-color .25s, box-shadow .25s, transform .25s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.35); }

/* ── Now playing box transition on track change ── */
[data-np="title"], [data-np="artist"] { transition: opacity .3s ease; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-live { display: none; }
  .nav-burger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .broadcast-card { flex-direction: column; gap: 24px; padding: 28px; }
  .broadcast-img { width: 120px; height: 120px; }
  .dj-hero-grid { grid-template-columns: 1fr; }
  .dj-hero-img { max-width: 320px; aspect-ratio: 1/1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .dj-grid-home { grid-template-columns: repeat(2, 1fr); }
  .about-cols { grid-template-columns: 1fr; gap: 32px; }
  .sponsor-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .display { font-size: 2.2rem; }
  .headline { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .dj-row { grid-template-columns: 56px 1fr; }
  .dj-row-time { display: none; }
  .broadcast-card { padding: 20px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  footer { padding: 32px 0 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .dj-grid-home { grid-template-columns: 1fr; }
  .hero-content { gap: 32px; }
  .sponsor-cta-box { padding: 28px 20px; }
  [data-np="next-title"], [data-np="next-artist"] { display: none; }
  [data-np="next-title"]:not(:empty) { display: block; }
  #frekansa-katil { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  #freq-form { width: 100%; }
  #freq-form input { min-width: 0; flex: 1; }
}
