/* ── SECTION LABELS ──────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

/* ── BADGE SYSTEM ────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge-gold   { background:#1C1A14; color:var(--accent-gold);
                border:1px solid rgba(200,184,130,0.3); }
.badge-teal   { background:#0A1F1A; color:var(--accent-teal);
                border:1px solid rgba(62,207,160,0.3); }
.badge-coral  { background:#2A1210; color:var(--accent-coral);
                border:1px solid rgba(240,115,90,0.3); }
.badge-violet { background:#151520; color:var(--accent-violet);
                border:1px solid rgba(144,144,221,0.3); }
.badge-green  { background:#14200E; color:#5FCF60;
                border:1px solid rgba(95,207,96,0.3); }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition-normal),
              box-shadow var(--transition-normal);
}
.card:hover {
  border-color: var(--bg-border-hover);
  box-shadow: var(--shadow-card);
}
.card-accent { border-color: var(--accent-red); }

/* ── STAT BLOCK ──────────────────────────────── */
.stat-block { text-align: center; padding: 28px 16px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── SECTION SPACING ─────────────────────────── */
.section-sm  { padding: 48px 0; }
.section-md  { padding: 72px 0; }
.section-lg  { padding: 96px 0; }
.section-xl  { padding: 120px 0; }

/* ── DIVIDERS ────────────────────────────────── */
.divider-top    { border-top: 1px solid var(--bg-border); }
.divider-bottom { border-bottom: 1px solid var(--bg-border); }
.bg-card-section { background: var(--bg-card); }

/* ── TEXT UTILITIES ──────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg,
    var(--accent-coral) 0%,
    var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-red    { color: var(--accent-red); }
.text-teal   { color: var(--accent-teal); }
.text-gold   { color: var(--accent-gold); }
.text-violet { color: var(--accent-violet); }
.text-muted  { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* ── LIVE INDICATOR ──────────────────────────── */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5FCF60;
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(0.8); }
}

/* ── STICKY RADIO PLAYER ─────────────────────── */
.radio-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.radio-bar-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-red);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast),
              transform var(--transition-fast);
  flex-shrink: 0;
}
.radio-bar-play:hover {
  background: var(--accent-coral);
  transform: scale(1.08);
}
.radio-bar-play svg {
  width: 14px; height: 14px;
  fill: white;
  margin-left: 2px;
}
.radio-bar-info { flex: 1; min-width: 0; }
.radio-bar-title {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.radio-bar-sub {
  font-size: 11px; color: var(--text-muted);
}
.radio-bar audio { display: none; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .section-xl { padding: 72px 0; }
  .section-lg { padding: 56px 0; }
  .hide-mobile { display: none !important; }
  .radio-bar { padding: 10px 16px; gap: 10px; }
}
