/* ============================================================
   Power 95 FM — 10th Anniversary Microsite
   Brand: #da251d red · #101010 dark · #ffffff white
   Font: Roboto (body) · Overpass (display)
   ============================================================ */

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #da251d;
  --red-dark:   #a11d16;
  --red-accessible: #f0504a; /* ≥4.5:1 on #101010 — use for small text labels only */
  --red-glow:   rgba(218,37,29,0.35);
  --dark:       #101010;
  --dark2:      #1a1a1a;
  --dark3:      #242424;
  --blue:       #345995;
  --white:      #ffffff;
  --offwhite:   #f7f7f9;
  --muted:      rgba(255,255,255,0.72);
  --font-body:  'Roboto', sans-serif;
  --font-head:  'Overpass', sans-serif;
  --radius:     8px;
  --trans:      color 0.3s cubic-bezier(0.4,0,0.2,1),
                background-color 0.3s cubic-bezier(0.4,0,0.2,1),
                border-color 0.3s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s cubic-bezier(0.4,0,0.2,1),
                transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

/* Scroll offset for fixed nav */
[id] { scroll-margin-top: 72px; }

/* ── Skip to main content (screen reader + keyboard) ── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

/* ── Global focus-visible ring ── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* clearance for fixed player bar */
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16,16,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(218,37,29,0.2);
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(16,16,16,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-tagline {
  display: none; /* Hidden — tagline lives in hero subtitle */
}

/* Tab-style nav (replaces nav-links + nav-listen-btn) */
.nav-tabs {
  display: flex;
  align-items: stretch;
  height: 64px;
  margin-left: auto;
  gap: 0;
}

.nav-tab {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}

.nav-tab:hover { color: var(--white); }

.nav-tab[aria-current="page"],
.nav-tab.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  min-height: 44px;
  padding: 14px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile nav drawer */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(16,16,16,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(218,37,29,0.2);
  padding: 0.5rem 2rem 1.5rem;
  list-style: none;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu li:last-child { border-bottom: none; }

.nav-mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--trans);
  touch-action: manipulation;
}

.nav-mobile-menu a:hover { color: var(--white); }

/* ============================================================
   HERO — Full-bleed skewed grid
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

/* Single full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

/* Overlay — dark on left, bleeds to photo on right; dark at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(16,16,16,0.88) 0%, rgba(16,16,16,0.5) 35%, rgba(16,16,16,0.08) 65%, rgba(16,16,16,0.0) 100%),
    linear-gradient(to top, rgba(16,16,16,1) 0%, rgba(16,16,16,0.5) 20%, transparent 50%),
    linear-gradient(to bottom, rgba(16,16,16,0.5) 0%, transparent 15%);
  z-index: 1;
}

/* Hero content: anchored bottom-left */
.hero-content {
  position: absolute;
  bottom: 6.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 3rem 0 3.5rem;
  text-align: left;
  max-width: none;
  margin: 0;
}

/* ============================================================
   HERO TEXT — Reference-style massive bottom-left layout
   ============================================================ */

/* Live badge pill */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(218,37,29,0.12);
  border: 1px solid rgba(218,37,29,0.5);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both 0.2s;
}

/* Massive stacked title */
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both 0.35s;
}

/* Line 1: "Where Music" — slightly smaller */
.hero-t1 {
  display: block;
  font-size: clamp(3rem, 9vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Line 2: "Lives" — dominant, fills width */
.hero-t2 {
  display: block;
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

/* Subtitle below title */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 480px;
  animation: fadeUp 0.7s ease both 0.55s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--trans);
  touch-action: manipulation;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(218,37,29,0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(218,37,29,0.55);
}
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 12px rgba(218,37,29,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0) scale(0.97); background: rgba(255,255,255,0.12); }

/* ============================================================
   LIVE PLAYER BAR — Reference design: thumb | controls | actions
   ============================================================ */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Red progress line at top of bar */
.player-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(218,37,29,0.2);
  z-index: 1;
}

.player-progress-fill {
  height: 100%;
  width: 35%;
  background: var(--red);
  animation: progress-pulse 5s ease-in-out infinite;
}

@keyframes progress-pulse {
  0%, 100% { width: 30%; opacity: 0.8; }
  50%       { width: 60%; opacity: 1; }
}

/* Left zone: thumb + info */
.player-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.player-thumb {
  width: 48px; height: 48px;
  border-radius: 6px;
  background: var(--dark3);
  border: 1px solid rgba(218,37,29,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Center zone: skip + play + skip */
.player-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.player-skip-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: var(--trans);
  touch-action: manipulation;
}

.player-skip-btn:hover { color: var(--white); }

/* Right zone: action buttons */
.player-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.player-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  min-height: 36px;
  border-radius: 5px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  transition: var(--trans);
  cursor: pointer;
  touch-action: manipulation;
}

.player-action-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

.player-action-live {
  border-color: rgba(218,37,29,0.45);
  background: rgba(218,37,29,0.1);
  color: var(--white);
}

.player-action-live:hover {
  background: rgba(218,37,29,0.2);
  border-color: rgba(218,37,29,0.8);
}

.player-action-app {
  color: rgba(255,255,255,0.5);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: blink 1.2s ease-in-out infinite;
}

.player-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
  box-shadow: 0 0 12px rgba(218,37,29,0.4);
  touch-action: manipulation;
}

.player-play-btn:hover  { background: var(--red-dark); transform: scale(1.08); }
.player-play-btn:active { background: var(--red-dark); transform: scale(0.96); }

.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
  transition: var(--trans);
}

.player-play-btn.playing .play-icon {
  border: none;
  width: 14px; height: 14px;
  background: var(--white);
  position: relative;
}

.player-play-btn.playing .play-icon::before,
.player-play-btn.playing .play-icon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.player-play-btn.playing .play-icon::before { left: 1px; }
.player-play-btn.playing .play-icon::after  { right: 1px; }

.player-info {
  flex: 1;
  min-width: 0;
}

.player-station {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track {
  font-size: 0.72rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}

@keyframes sound-bar {
  0%, 100% { transform: scaleY(0.3); opacity: 0.45; }
  50%       { transform: scaleY(1.0); opacity: 1; }
}

/* Player waveform bars — used in .player-thumb animation when playing */
.player-bar.playing .player-thumb svg rect {
  animation: sound-bar 1s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.player-bar.playing .player-thumb svg rect:nth-child(1) { animation-delay: 0s; }
.player-bar.playing .player-thumb svg rect:nth-child(2) { animation-delay: 0.15s; }
.player-bar.playing .player-thumb svg rect:nth-child(3) { animation-delay: 0.3s; }
.player-bar.playing .player-thumb svg rect:nth-child(4) { animation-delay: 0.1s; }

/* ============================================================
   COUNTDOWN SECTION
   ============================================================ */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-accessible);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-body { color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; }

/* Countdown */
.countdown-wrap {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.countdown-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(218,37,29,0.08) 0%, transparent 70%);
}

.countdown-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-accessible);
  margin-bottom: 1.5rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
  min-width: 1.5ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.countdown-sep {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  margin-top: -0.15em;
}

.countdown-unit-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-event {
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.countdown-event strong { color: var(--white); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-scroll {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--dark2);
}

.timeline {
  display: flex;
  gap: 0;
  position: relative;
  min-width: max-content;
  padding: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  cursor: default;
}

.timeline-item:nth-child(even) { flex-direction: column-reverse; padding-top: 3rem; }
.timeline-item:nth-child(even) .timeline-dot { margin: 0; }
.timeline-item:nth-child(odd) .timeline-card { margin-bottom: 1rem; }
.timeline-item:nth-child(even) .timeline-card { margin-top: 1rem; }

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  flex-shrink: 0;
  margin: 1rem 0;
  z-index: 1;
  transition: var(--trans);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 20px var(--red-glow);
}

.timeline-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  width: 180px;
  transition: var(--trans);
}

.timeline-item:hover .timeline-card {
  border-color: rgba(218,37,29,0.35);
  background: var(--dark3);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.timeline-event {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   ANDROID APP BANNER
   ============================================================ */
.android-banner {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 98;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.android-banner.show { transform: translateY(0); }

.android-banner-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.android-banner-text { flex: 1; }
.android-banner-title { font-size: 0.8rem; font-weight: 700; }
.android-banner-sub   { font-size: 0.7rem; color: var(--muted); }

.android-banner-cta {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--trans);
}

.android-banner-cta:hover { background: var(--red-dark); }

.android-banner-close {
  color: var(--muted);
  font-size: 1.2rem;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}

.android-banner-close:hover { color: var(--white); }

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.share-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--dark2);
}

.share-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.share-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  transition: var(--trans);
}

.share-btn:hover  { border-color: var(--red); color: var(--red); }
.share-btn:active { background: rgba(218,37,29,0.12); transform: scale(0.97); }
.share-btn.copied { border-color: #28C840; color: #28C840; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem 6rem; /* 6rem bottom for player bar */
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-accessible);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
}

.footer-links a:hover { color: var(--white); }

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--dark2), var(--dark));
  border-bottom: 1px solid rgba(218,37,29,0.2);
}

.news-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
}

.news-subtitle {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Category tabs */
.news-filters {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-filters::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--muted);
  cursor: pointer;
  transition: var(--trans);
  background: transparent;
}

.filter-tab:hover { border-color: var(--white); color: var(--white); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

/* Netflix-style numbered card */
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  cursor: pointer;
}

.news-card:hover { transform: translateY(-4px); }
.news-card:hover .card-img { filter: brightness(1.1); }

.card-rank {
  position: absolute;
  bottom: -0.3em;
  left: -0.25em;
  font-family: var(--font-head);
  font-size: clamp(5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 1;
  letter-spacing: -3px;
  user-select: none;
}

.card-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark3);
  margin-bottom: 0.9rem;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
}

.card-category {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-accessible);
  margin-bottom: 0.3rem;
}

.card-headline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.card-summary {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.card-read-more {
  color: var(--red-accessible);
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--trans);
}

.card-read-more:hover { color: #ff4a3d; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--dark2) 25%, var(--dark3) 50%, var(--dark2) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card { display: flex; flex-direction: column; gap: 0.5rem; }
.skeleton-img  { aspect-ratio: 16/9; border-radius: var(--radius); }
.skeleton-line { height: 12px; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w40 { width: 40%; }

/* Empty state */
.news-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 1.5rem; bottom: 5rem; }
  .hero-t1 { letter-spacing: -1px; }
  .hero-t2 { letter-spacing: -3px; }
  .player-bar { grid-template-columns: 1fr auto; padding: 0 1rem; height: 64px; }
  .player-actions { display: none; }
  .player-actions .player-action-live { display: inline-flex; }
  .news-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .countdown-grid { gap: 1rem; }
  .countdown-num { font-size: 3rem; }
  .countdown-sep { font-size: 3rem; }
  .timeline { padding: 2rem 0; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   REDUCED MOTION — WCAG 2.1 SC 2.3.3
   Disable all animation/transition for users who prefer it
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Keep hero background visible */
  .hero-bg {
    animation: none !important;
    transform: none !important;
  }

  /* Ensure nav active state still works without transition */
  .nav { transition: none; }
}
