/* ===== RESET & VARIABLES ===== */
:root {
  --accent: #fb923c;
  --accent-hover: #fed7aa;
  --accent-deep: #ea580c;
  --accent-soft: rgba(251, 146, 60, .14);
  --accent-glow: rgba(251, 146, 60, .35);
  --text: #fafaf9;
  --text-secondary: rgba(250, 250, 249, .72);
  --text-muted: rgba(250, 250, 249, .46);
  --card-bg: rgba(255,255,255,.025);
  --card-bg-hover: rgba(255,255,255,.05);
  --card-border: rgba(255,255,255,.07);
  --glass: rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 14px 44px rgba(0,0,0,.55);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --font-display: 'Playfair Display', 'Bodoni Moda', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background: #0a0a0a;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Subtle radial glow + particles backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(251,146,60,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(234,88,12,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(251,146,60,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 0px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.3) 0px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.4) 0px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.3) 0px, transparent 1px),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.4) 0px, transparent 1px);
  background-size: 250px 250px, 350px 350px, 200px 200px, 300px 300px, 280px 280px;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: inherit;
  vertical-align: middle;
  line-height: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLL REVEAL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: transparent;
  color: #fff;
  font-size: .72rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__date {
  opacity: .4;
  font-weight: 500;
  letter-spacing: .3px;
}

.top-bar__links { display: flex; gap: 20px; }

.top-bar__links a {
  color: #fff;
  opacity: .4;
  transition: opacity var(--transition);
  font-weight: 500;
}

.top-bar__links a:hover { opacity: .8; }

/* ===== HEADER (BAR DEFAULT, PILL ON SCROLL) ===== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0);
  border-bottom-color: rgba(255,255,255,.06);
  border-radius: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,.025),
    0 6px 28px rgba(0,0,0,.35);
  transition:
    top .55s var(--ease-out),
    width .55s var(--ease-out),
    max-width .55s var(--ease-out),
    border-radius .55s var(--ease-out),
    background .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.header::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(251,146,60,.45) 0%,
    rgba(255,255,255,.06) 30%,
    rgba(255,255,255,.06) 70%,
    rgba(251,146,60,.45) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .55s ease;
}

.header.scrolled {
  top: 18px;
  width: calc(100% - 40px);
  max-width: 1120px;
  background: rgba(12,12,12,.82);
  border-color: rgba(255,255,255,.08);
  border-bottom-color: rgba(255,255,255,.08);
  border-radius: 999px;
  box-shadow:
    0 18px 56px rgba(0,0,0,.6),
    0 0 0 1px rgba(251,146,60,.08),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.header.scrolled::before { opacity: .55; }
.header.scrolled:hover::before { opacity: 1; }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
  padding: 0 36px;
  position: relative;
  max-width: 1320px;
  transition:
    height .55s var(--ease-out),
    padding .55s var(--ease-out),
    max-width .55s var(--ease-out);
}

.header.scrolled .container {
  height: 60px;
  padding: 0 14px 0 26px;
  max-width: 1120px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}
.logo:hover { transform: scale(1.04); }
.logo__img {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(251,146,60,.15));
  transition: filter var(--transition);
}
.logo:hover .logo__img {
  filter: drop-shadow(0 4px 16px rgba(251,146,60,.4));
}

.logo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: logoPulse 2.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav a {
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  font-weight: 400;
  transition: color var(--transition), text-shadow var(--transition);
  white-space: nowrap;
  color: rgba(255,255,255,.58);
  text-transform: lowercase;
  letter-spacing: -.2px;
  position: relative;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .4s var(--ease-out), left .4s var(--ease-out), opacity .3s ease;
  box-shadow: 0 0 12px var(--accent);
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::before {
  width: 18px;
  left: calc(50% - 9px);
}

.nav a.active {
  color: var(--accent);
  font-weight: 500;
  text-shadow: 0 0 28px rgba(251,146,60,.45);
}

.nav a.active::before {
  width: 24px;
  left: calc(50% - 12px);
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 6px 14px;
  gap: 6px;
  transition: border var(--transition), background var(--transition);
}

.search-box:focus-within {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
}

.search-box .material-symbols-rounded { font-size: 1.1rem; opacity: .5; }

.search-box input, .search-input {
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: .82rem;
  width: 140px;
}

.search-box input::placeholder, .search-input::placeholder { color: rgba(255,255,255,.4); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  color: #fff;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}

.btn--primary.watch-live::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .6s ease;
}

.btn--primary.watch-live:hover::before { left: 100%; }

.btn--primary.watch-live .material-symbols-rounded {
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 6px 22px rgba(251,146,60,.22), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(251,146,60,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary .material-symbols-rounded { font-size: 1.1rem; }

.btn--icon {
  width: 34px; height: 34px; padding: 0;
  border-radius: 50%;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 1.1rem;
}

.btn--icon:hover { background: rgba(255,255,255,.15); }
.btn--icon .material-symbols-rounded { font-size: 1.15rem; }

.menu-toggle {
  display: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.menu-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(251,146,60,.4);
}
.menu-toggle .material-symbols-rounded { font-size: 1.4rem; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.open { visibility: visible; pointer-events: auto; }

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}

.mobile-menu.open .mobile-menu__overlay { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: linear-gradient(180deg, #0f1a3a, #1a1060, #2d1b69);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,.4);
}

.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-menu__header .logo__img { height: 22px; }

.mobile-menu__close {
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.mobile-menu__close:hover { background: rgba(255,255,255,.15); }
.mobile-menu__close .material-symbols-rounded { font-size: 1.3rem; }

.mobile-menu__search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 20px;
  padding: 10px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
}

.mobile-menu__search .material-symbols-rounded { opacity: .4; font-size: 1.2rem; }

.mobile-menu__search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: .9rem;
}

.mobile-menu__search input::placeholder { color: rgba(255,255,255,.35); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-left-color: var(--accent);
}

.mobile-menu__nav a .material-symbols-rounded { font-size: 1.3rem; opacity: .7; }

.mobile-menu__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 8px 20px;
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 20px;
  padding: 12px;
  background: var(--accent);
  border-radius: 14px;
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition);
}

.mobile-menu__cta:hover { background: var(--accent-hover); }
.mobile-menu__cta .material-symbols-rounded { font-size: 1.3rem; }

.mobile-menu__footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-menu__theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

.mobile-menu__theme > span { display: flex; align-items: center; gap: 8px; }
.mobile-menu__theme .material-symbols-rounded { font-size: 1.2rem; }

.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch__slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch__slider::before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-switch__slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-switch__slider::before { transform: translateX(20px); }

.mobile-menu__social {
  display: flex;
  gap: 10px;
}

.mobile-menu__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mobile-menu__social a:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }

/* ===== BREAKING TICKER ===== */
.ticker {
  background: rgba(15,15,15,.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text-secondary);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
  font-size: .78rem;
  font-weight: 500;
  margin-top: 72px;
}

.ticker__inner { display: inline-block; animation: ticker 40s linear infinite; }

.ticker__item { display: inline; padding: 0 48px; }

.ticker__label {
  background: var(--accent);
  color: #0a0a0a;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  margin-right: 12px;
  vertical-align: middle;
  letter-spacing: .8px;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CARDS ===== */
.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(251,146,60,.15);
  border-color: rgba(251,146,60,.3);
}

.card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  display: block;
}

.card:hover .card__img { transform: scale(1.06); }

/* Gradient overlay on images */
.card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,0) 100%);
  border-radius: var(--radius);
  pointer-events: none;
}

/* Overlay content on image */
.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

/* Fallback body for non-overlay cards */
.card__body {
  padding: 16px 4px;
}

.card__tag {
  display: inline-block;
  color: #0a0a0a;
  font-size: .62rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  backdrop-filter: blur(8px);
}

.card__tag--blue { background: rgba(59,91,219,.85); }
.card__tag--green { background: rgba(22,163,74,.85); }
.card__tag--orange { background: rgba(234,88,12,.85); }
.card__tag--purple { background: rgba(124,58,237,.85); }

.card__title {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.card--featured .card__title { font-size: 1.9rem; line-height: 1.15; font-weight: 500; }

.card__excerpt { color: var(--text-secondary); font-size: .83rem; line-height: 1.6; }

.card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}

.card__overlay .card__meta { color: rgba(255,255,255,.6); }

.card__meta span { display: flex; align-items: center; gap: 4px; }
.card__meta .material-symbols-rounded { font-size: .85rem; }

/* Image gradient fallbacks */
.card__img[data-category="economy"]   { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.card__img[data-category="tech"]      { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.card__img[data-category="politics"]  { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.card__img[data-category="sports"]    { background: linear-gradient(135deg, #11998e, #38ef7d); }
.card__img[data-category="digital"]   { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.card__img[data-category="science"]   { background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); }
.card__img[data-category="culture"]   { background: linear-gradient(135deg, #e65100, #ff6f00, #ffa000); }
.card__img[data-category="ocean"]     { background: linear-gradient(135deg, #005c97, #363795); }
.card__img[data-category="europe"]    { background: linear-gradient(135deg, #1e3c72, #2a5298); }
.card__img[data-category="asia"]      { background: linear-gradient(135deg, #c94b4b, #4b134f); }
.card__img[data-category="americas"]  { background: linear-gradient(135deg, #0575e6, #021b79); }
.card__img[data-category="africa"]    { background: linear-gradient(135deg, #b79891, #94716b); }
.card__img[data-category="space"]     { background: linear-gradient(135deg, #000428, #004e92); }
.card__img[data-category="cyber"]     { background: linear-gradient(135deg, #0a0e27, #1a237e, #283593); }

/* ===== HERO ===== */
.card--featured .card__img { aspect-ratio: 16/10; }
.card--featured .card__overlay { padding: 28px; }

/* Display Hero (Arbastro-style centered hero) */
.hero-display {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}

.hero-display__inner {
  max-width: 920px;
  margin: 0 auto;
}

.hero-display__eyebrow {
  display: inline-grid;
  align-items: center;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  cursor: pointer;
  transition: background .45s var(--ease-out), color .45s var(--ease-out),
              border-color .45s var(--ease-out), box-shadow .45s var(--ease-out),
              transform .45s var(--ease-out);
}

.hero-display__eyebrow-content {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: opacity .35s ease, transform .45s var(--ease-out);
}

.hero-display__eyebrow-content--weather {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.hero-display__eyebrow-content--weather .material-symbols-rounded {
  font-size: 1.05rem;
  color: var(--accent);
  transition: color .45s var(--ease-out);
}

.hero-display__eyebrow:hover {
  background: #fafafa;
  color: #0a0a0a;
  border-color: #fafafa;
  box-shadow: 0 16px 48px rgba(255,255,255,.16), 0 0 0 1px rgba(251,146,60,.2);
  transform: translateY(-2px);
}

.hero-display__eyebrow:hover .hero-display__eyebrow-content--default {
  opacity: 0;
  transform: translateY(-6px);
}

.hero-display__eyebrow:hover .hero-display__eyebrow-content--weather {
  opacity: 1;
  transform: translateY(0);
}

.hero-display__eyebrow:hover .hero-display__eyebrow-content--weather .material-symbols-rounded {
  color: var(--accent-deep);
}

.hero-display__eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero-display__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 28px;
  color: #fff;
}

.hero-display__title .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    #ea580c 0%,
    #fb923c 20%,
    #fed7aa 40%,
    #fb923c 60%,
    #ea580c 80%,
    #fb923c 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: accentShimmer 6s linear infinite;
  filter: drop-shadow(0 0 28px rgba(251, 146, 60, .25));
  /* Give italic descenders (g, y) breathing room */
  padding: 0 .12em .12em .04em;
  line-height: 1.18;
  vertical-align: baseline;
}

@keyframes accentShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

.hero-display__title .accent--cycle {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  text-align: left;
  /* Caret on the right edge */
  padding-right: .12em;
}

.hero-display__title .accent--cycle::after {
  content: "";
  position: absolute;
  right: -.02em;
  top: 18%;
  width: 2px;
  height: 70%;
  background: var(--accent);
  border-radius: 1px;
  animation: caretBlink 1.05s steps(1) infinite;
  box-shadow: 0 0 10px var(--accent);
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

/* Slightly relax line-height of the whole title so descenders aren't clipped */
.hero-display__title { line-height: 1.18; padding-bottom: .15em; }

/* ===== Page Transition Overlay ===== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a05 50%, #0a0a0a 100%);
  transform: translateY(100%);
  transition: transform .65s cubic-bezier(.86,0,.07,1);
}
.page-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(251,146,60,.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(234,88,12,.12) 0%, transparent 50%);
}
.page-transition__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  opacity: 0;
  transition: opacity .4s ease, transform .6s var(--ease-out);
  height: 56px;
  filter: drop-shadow(0 4px 24px rgba(251,146,60,.4));
}
.page-transition.is-leaving {
  transform: translateY(0);
}
.page-transition.is-leaving .page-transition__logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.page-transition.is-entering {
  transform: translateY(-100%);
}
.page-transition.is-entering .page-transition__logo {
  opacity: 0;
}
body.page-loading {
  overflow: hidden;
}

/* Body fade-in on first paint (opacity only — transform breaks position:fixed) */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.page-fade-in {
  animation: pageFadeIn .7s var(--ease-out) both;
}

/* ===== Live Particles Layer ===== */
.live-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.live-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,.85) 0%, rgba(251,146,60,.25) 50%, transparent 70%);
  box-shadow: 0 0 12px rgba(251,146,60,.6);
  opacity: 0;
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}
.live-particles span:nth-child(odd) {
  background: radial-gradient(circle, rgba(254,215,170,.7) 0%, rgba(251,146,60,.2) 50%, transparent 70%);
}
.live-particles span:nth-child(3n) {
  width: 4px; height: 4px;
}
.live-particles span:nth-child(5n) {
  width: 9px; height: 9px;
  box-shadow: 0 0 18px rgba(251,146,60,.55);
}
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translate3d(0,0,0) scale(.6);
  }
  10% { opacity: 1; }
  90% { opacity: .8; }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx, 60px), -110vh, 0) scale(1.1);
  }
}

/* ===== Toast Notifications ===== */
.toast-host {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20,20,20,.96);
  border: 1px solid rgba(251,146,60,.35);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: .88rem;
  box-shadow: 0 18px 44px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .4s var(--ease-out);
  pointer-events: auto;
  max-width: 420px;
}
.toast--show { opacity: 1; transform: translateY(0); }
.toast--success { border-color: rgba(34,197,94,.5); }
.toast--success .material-symbols-rounded { color: #4ade80; }
.toast--info .material-symbols-rounded { color: var(--accent); }
.toast .material-symbols-rounded { font-size: 1.25rem; }

/* Pulsing live indicator dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(251,146,60,.8);
  animation: liveRipple 1.6s ease-out infinite;
}
@keyframes liveRipple {
  0% { box-shadow: 0 0 0 0 rgba(251,146,60,.7); }
  70% { box-shadow: 0 0 0 12px rgba(251,146,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,146,60,0); }
}

.hero-display__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-display__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.hero-display__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251,146,60,.3);
}

.hero-display__cta .material-symbols-rounded { font-size: 1.1rem; }

.hero { padding: 32px 0; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: start;
}

.hero__side { display: flex; flex-direction: column; gap: 14px; }

.card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 10px;
  backdrop-filter: blur(8px);
}

.card--horizontal:hover { background: rgba(255,255,255,.1); }

.card--horizontal .card__img-wrap {
  width: 100px;
  min-width: 100px;
  border-radius: var(--radius-sm);
}

.card--horizontal .card__img-wrap::after { display: none; }

.card--horizontal .card__img {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
}

.card--horizontal .card__body { padding: 0; }
.card--horizontal .card__title { font-size: .88rem; margin-top: 4px; }
.card--horizontal .card__meta { margin-top: 6px; }

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header__content {
  max-width: 600px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.5px;
  color: #fff;
}

.section-header h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.section-header__sub {
  font-size: .92rem;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}

.section-header > a {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all var(--transition);
}

.section-header > a:hover {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent);
}

.section-header > a .material-symbols-rounded { font-size: 1rem; }

/* ===== PARTNERS MARQUEE ===== */
.partners {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
  overflow: hidden;
}

.partners__heading {
  text-align: center;
  margin-bottom: 50px;
}

.partners__heading h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 8px;
}

.partners__heading p {
  font-size: .9rem;
  color: var(--text-muted);
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 35s linear infinite;
  flex-shrink: 0;
  padding-right: 60px;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  letter-spacing: -.3px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee__item::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .6;
}

.marquee__item:hover { color: #fff; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ===== IMPACT STATS ===== */
.impact {
  padding: 100px 0;
  text-align: center;
}

.impact__heading {
  margin-bottom: 60px;
}

.impact__heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}

.impact__heading h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.impact__heading p {
  font-size: .95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.impact__card {
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.impact__card:hover {
  border-color: rgba(251,146,60,.3);
  background: rgba(251,146,60,.04);
  transform: translateY(-4px);
}

.impact__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}

.impact__label {
  font-size: .82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
}

.cta-band h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: var(--accent);
  border: none;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0a0a0a;
  transition: all var(--transition);
  cursor: pointer;
}

.cta-band__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(251,146,60,.35);
}

.cta-band__btn .material-symbols-rounded { font-size: 1.2rem; }

/* ===== CONTACT FORM ===== */
.contact {
  padding: 100px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact__intro h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.contact__intro p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: all var(--transition);
}

.contact__method:hover {
  background: rgba(251,146,60,.05);
  border-color: rgba(251,146,60,.3);
  transform: translateX(4px);
}

.contact__method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(251,146,60,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__method-icon .material-symbols-rounded { font-size: 1.4rem; }

.contact__method-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.contact__method-text span {
  font-size: .78rem;
  color: var(--text-muted);
}

.contact__form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact__field label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.contact__field input,
.contact__field textarea {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  transition: all var(--transition);
  resize: none;
}

.contact__field textarea { min-height: 130px; }

.contact__field input::placeholder,
.contact__field textarea::placeholder { color: rgba(255,255,255,.3); }

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--accent);
  background: rgba(0,0,0,.5);
  box-shadow: 0 0 0 3px rgba(251,146,60,.1);
}

.contact__submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  color: #0a0a0a;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(251,146,60,.3);
}

.contact__submit .material-symbols-rounded { font-size: 1.1rem; }

/* ===== TRENDING ===== */
.trending { padding: 100px 0 60px; }

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

.trending__grid .card__title { font-size: 1rem; }
.trending__grid .card__body { padding: 18px 4px; }

/* ===== WEATHER ===== */
.weather-bar {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.weather-bar::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -8%;
  width: 280px;
  height: 280px;
  background: rgba(59,91,219,.15);
  border-radius: 50%;
  filter: blur(40px);
}

.weather-bar__left { display: flex; align-items: center; gap: 16px; position: relative; }

.weather-bar__temp {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.weather-icon { font-size: 1.6rem !important; opacity: .6; }

.weather-bar__details h3 { font-size: .95rem; font-weight: 600; }
.weather-bar__details p { font-size: .8rem; color: var(--text-muted); }

.weather-bar__forecast { display: flex; gap: 20px; position: relative; }

.weather-bar__day { text-align: center; font-size: .78rem; color: var(--text-secondary); }
.weather-bar__day .material-symbols-rounded { font-size: 1.5rem !important; display: block; margin: 4px auto; }
.weather-bar__day .temp { font-size: 1rem; font-weight: 700; color: #fff; display: block; }

/* ===== NEWS GRID ===== */
.news-section { padding: 80px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* In-feed native AdSense slot (fluid, variable height) */
.feed-ad {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 18px 20px;
  min-height: 120px; /* ensures AdSense has room to render before fill */
}
.feed-ad__label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}
.feed-ad .adsbygoogle { display: block; width: 100%; }

/* ===== PROGRAMS ===== */
.programs {
  padding: 100px 0;
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.programs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.program-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--card-border);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--card-bg-hover); }

.program-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}

.program-card__icon .material-symbols-rounded { font-size: 1.5rem; }

.program-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; color: #fff; }
.program-card p { font-size: .85rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }

.program-card__time {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-card__time .material-symbols-rounded { font-size: .95rem; }

/* ===== TEAM ===== */
.team { padding: 100px 0; }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.team-card {
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 16px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--card-bg-hover); }

.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .5px;
}

.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.team-card p { font-size: .78rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* Team card: relative positioning + birthday chip */
.team-card { position: relative; overflow: hidden; }
.team-card__bday {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .45);
  animation: bdayPulse 2s ease-in-out infinite;
}
.team-card__bday .material-symbols-rounded { font-size: 16px; }
@keyframes bdayPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

/* ===== SPOTLIGHT (homepage birthday / admin pick banner) ===== */
.spotlight { padding: 20px 0 0; }
.spotlight__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  background: linear-gradient(110deg, rgba(255, 107, 107, .12), rgba(251, 146, 60, .10), rgba(168, 85, 247, .10));
  border: 1px solid rgba(251, 146, 60, .25);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.spotlight__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(251, 146, 60, .25), transparent 50%);
  pointer-events: none;
}
.spotlight__avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a0a0a;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1;
}
.spotlight__avatar img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 4px;
}
.spotlight__eyebrow .material-symbols-rounded { font-size: 16px; }
.spotlight__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 2px;
  color: #fff;
}
.spotlight__role {
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 12px;
}
.spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s;
}
.spotlight__cta:hover { gap: 8px; }
.spotlight__cta .material-symbols-rounded { font-size: 16px; }
.spotlight__confetti {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  pointer-events: none;
  overflow: hidden;
  font-size: 1.4rem;
  opacity: .45;
  z-index: 0;
}
.spotlight__confetti span:nth-child(1) { animation: confettiFloat 6s ease-in-out infinite; }
.spotlight__confetti span:nth-child(2) { animation: confettiFloat 7s ease-in-out .4s infinite; }
.spotlight__confetti span:nth-child(3) { animation: confettiFloat 5.5s ease-in-out .8s infinite; }
.spotlight__confetti span:nth-child(4) { animation: confettiFloat 6.5s ease-in-out 1.2s infinite; }
.spotlight__confetti span:nth-child(5) { animation: confettiFloat 7.5s ease-in-out 1.6s infinite; }
@keyframes confettiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(12deg); }
}

/* ===== COMMUNITY STRIP (Discord + Giveaway) ===== */
.community { padding: 80px 0 40px; }
.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px) {
  .community__grid { grid-template-columns: 1fr; }
  .spotlight__card { flex-direction: column; text-align: center; padding: 22px; }
  .spotlight__confetti { display: none; }
  .team-card__bday { width: 26px; height: 26px; top: 8px; right: 8px; }
  .team-card__bday .material-symbols-rounded { font-size: 14px; }
}
.community__card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.community__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.community__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.community__logo--discord  { background: #5865F2; }
.community__logo--giveaway { background: linear-gradient(135deg, #fb923c, #f97316); }
.community__logo--giveaway .material-symbols-rounded { font-size: 22px; }
.community__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.5);
}
.community__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 2px 0 0;
}
.community__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: gvwPulse 1.5s infinite;
}
@keyframes gvwPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .6); }
  50%      { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}

/* Discord message styling */
.community__message {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(32, 34, 37, .6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  margin-bottom: 14px;
}
.dm-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #5865F2, #404EED);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  overflow: hidden;
}
.dm-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dm-body { flex: 1; min-width: 0; }
.dm-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.dm-name { font-weight: 600; font-size: .95rem; }
.dm-time { font-size: .7rem; color: rgba(255,255,255,.35); }
.dm-badge {
  display: inline-flex;
  padding: 1px 6px;
  border-radius: 4px;
  background: #5865F2;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.dm-badge--bot       { background: #5865F2; }
.dm-badge--mod       { background: #3ba55c; }
.dm-badge--admin     { background: #ed4245; }
.dm-badge--verified  { background: #57f287; color: #1a1a1a; }
.dm-content { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.5; word-wrap: break-word; }
.dm-embed-img {
  margin-top: 8px;
  max-width: 100%;
  max-height: 220px;
  border-radius: 8px;
  object-fit: cover;
}
.dm-reactions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.dm-reaction {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(88, 101, 242, .12);
  border: 1px solid rgba(88, 101, 242, .25);
  border-radius: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.75);
}
.community__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #5865F2;
  color: #fff;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: all .2s;
}
.community__cta:hover { background: #4752c4; transform: translateY(-1px); }
.community__cta .material-symbols-rounded { font-size: 16px; }

/* Giveaway card */
.community__gvw-desc {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.community__gvw-prize {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(251, 146, 60, .15);
  border: 1px solid rgba(251, 146, 60, .3);
  border-radius: 10px;
  color: #fb923c;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 14px;
  align-self: flex-start;
}
.community__gvw-prize .material-symbols-rounded { font-size: 18px; }
.community__gvw-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.community__gvw-timer .material-symbols-rounded { font-size: 18px; color: var(--accent); }
.community__gvw-stats {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.community__gvw-stats strong { color: #fff; }
.community__gvw-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.community__gvw-form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.community__gvw-form input:focus { border-color: var(--accent); }
.community__gvw-form button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.community__gvw-form button:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
.community__gvw-form button:disabled { opacity: .7; cursor: not-allowed; }
.community__gvw-form button .material-symbols-rounded { font-size: 16px; }
.community__gvw-status {
  font-size: .78rem;
  padding: 4px 0;
}
.community__gvw-status--success { color: #10b981; }
.community__gvw-status--error   { color: #ef4444; }

/* ===== SUBSCRIBE ===== */
.subscribe {
  text-align: center;
  padding: 100px 20px;
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.subscribe::before {
  content: "";
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(251,146,60,.10) 0%, transparent 60%);
  pointer-events: none;
}

.subscribe h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.15;
}

.subscribe h2 .accent { color: var(--accent); font-style: italic; }

.subscribe p { color: var(--text-secondary); max-width: 520px; margin: 0 auto 32px; font-size: .95rem; position: relative; line-height: 1.6; }

.subscribe__form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.subscribe__form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .87rem;
  outline: none;
  min-width: 0;
  transition: border var(--transition), background var(--transition);
}

.subscribe__form input:focus {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}

.subscribe__form input::placeholder { color: rgba(255,255,255,.35); }

.subscribe__form button {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: .87rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.subscribe__form button:hover { background: var(--accent-hover); transform: translateY(-1px); }
.subscribe__form button .material-symbols-rounded { font-size: 1.1rem; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
}

.footer__accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #7c3aed, #3b5bdb, #16a34a, var(--accent));
  background-size: 200% 100%;
  animation: accentShift 8s linear infinite;
}

@keyframes accentShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.footer__main {
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo { height: 24px; width: auto; }

.footer__brand p {
  margin-top: 14px;
  font-size: .83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social a:hover { transform: scale(1.12); }
.footer__social .social--twitter:hover { background: #1d9bf0; border-color: #1d9bf0; }
.footer__social .social--youtube:hover { background: #ff0000; border-color: #ff0000; }
.footer__social .social--instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); border-color: transparent; }
.footer__social .social--facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer__social .social--linkedin:hover { background: #0a66c2; border-color: #0a66c2; }

.footer__nav-group h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.4);
}

.footer__nav-group ul li { margin-bottom: 10px; }

.footer__nav-group ul a {
  font-size: .85rem;
  color: var(--text-secondary);
  transition: color var(--transition), padding var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer__nav-group ul a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-right: 0;
  transition: width .25s ease, margin-right .25s ease;
}

.footer__nav-group ul a:hover {
  color: #fff;
}

.footer__nav-group ul a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer__bottom {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__bottom .container {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.back-to-top {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.back-to-top:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.back-to-top .material-symbols-rounded { font-size: 1.2rem; }

/* ===== RADIO PLAYER ===== */
.radio-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15,20,40,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  max-width: 320px;
  transition: box-shadow .3s, border-color .3s;
}
.radio-player.is-playing { border-color: rgba(var(--accent-rgb, 239,68,68),.35); box-shadow: var(--shadow-lg), 0 0 20px rgba(var(--accent-rgb, 239,68,68),.12); }

.radio-player__art {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  display: none;
}
.radio-player__art.has-art { display: block; }

.radio-player__bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; flex-shrink: 0; }

.radio-player__bars span {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: eq 1.2s ease-in-out infinite alternate;
}

.radio-player__bars span:nth-child(1) { height: 7px; animation-delay: 0s; }
.radio-player__bars span:nth-child(2) { height: 13px; animation-delay: .2s; }
.radio-player__bars span:nth-child(3) { height: 5px; animation-delay: .4s; }
.radio-player__bars span:nth-child(4) { height: 16px; animation-delay: .1s; }
.radio-player__bars span:nth-child(5) { height: 9px; animation-delay: .3s; }

.radio-player__bars.paused span { animation: none; height: 3px; }

@keyframes eq {
  0% { height: 3px; }
  100% { height: 18px; }
}

.radio-player__info { min-width: 0; flex: 1; }
.radio-player__label { font-size: .78rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radio-player__meta { color: var(--text-muted); font-weight: 400; font-size: .68rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.radio-player button {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.radio-player button:hover { background: var(--accent-hover); }
.radio-player button .material-symbols-rounded { font-size: 1.1rem; }

/* ===== PROGRAMS PAGE (LRT-inspired) ===== */
.programs-page .ticker { display: none; }

/* Keep header as full-width bar on programs page (no pill collapse) */
.programs-page .header,
.programs-page .header.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(10,10,10,.82);
  border-color: rgba(255,255,255,0);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.025),
    0 6px 28px rgba(0,0,0,.35);
}
.programs-page .header.scrolled::before { opacity: 0; }
.programs-page .header .container,
.programs-page .header.scrolled .container {
  height: 72px;
  padding: 0 36px;
  max-width: 1320px;
}
@media (max-width: 768px) {
  .programs-page .header .container,
  .programs-page .header.scrolled .container {
    height: 60px;
    padding: 0 18px;
    max-width: 100%;
  }
}

.programs-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 80px;
  overflow: hidden;
  margin-top: 0;
}

.programs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.programs-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.programs-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.2) 35%, rgba(10,10,10,.85) 78%, #0a0a0a 100%),
    linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.1) 100%);
}

.programs-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.programs-hero__content {
  max-width: 720px;
}

.programs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251,146,60,.15);
  border: 1px solid rgba(251,146,60,.4);
  color: var(--accent);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.programs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
}

.programs-hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.programs-hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.65;
}

.programs-hero__meta {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.badge .material-symbols-rounded { font-size: .9rem; }

.badge--new {
  background: var(--accent);
  color: #0a0a0a;
}

.badge--popular {
  background: #7c3aed;
  color: #fff;
}

.badge--duration {
  background: rgba(0,0,0,.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.badge--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.programs-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.programs-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0a0a0a;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all var(--transition);
  border: 1px solid #fff;
}

.programs-hero__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(251,146,60,.45);
}

.programs-hero__btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}

.programs-hero__btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.programs-hero__btn .material-symbols-rounded { font-size: 1.3rem; }

/* Filter Bar */
.programs-filter {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.programs-filter__tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.programs-filter__tabs::-webkit-scrollbar { display: none; }

.programs-filter__tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  padding: 11px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: inherit;
}

.programs-filter__tabs button .material-symbols-rounded { font-size: 1.1rem; }

.programs-filter__tabs button:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.programs-filter__tabs button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(251,146,60,.3);
}

/* Programs Sections */
.programs-section {
  padding: 80px 0;
}

.programs-section--alt {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.programs-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

.programs-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.5px;
  color: #fff;
}

.programs-section__head h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.programs-section__sub {
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  transition: all var(--transition);
}

.see-all:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.see-all .material-symbols-rounded { font-size: 1rem; }

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prog-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .35s ease,
              box-shadow .5s var(--ease-out), opacity .35s ease;
  display: block;
  opacity: 1;
}

.prog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,146,60,.35);
  box-shadow: 0 28px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(251,146,60,.18);
}

.prog-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.prog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}

.prog-card:hover .prog-card__thumb img {
  transform: scale(1.08);
}

.prog-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}

.prog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prog-card__badge--new {
  background: var(--accent);
  color: #0a0a0a;
}

.prog-card__badge--popular {
  background: #7c3aed;
  color: #fff;
}

.prog-card__badge--live {
  background: #ef4444;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prog-card__badge--live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.prog-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3px;
}

.prog-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: all .45s var(--ease-out);
  box-shadow: 0 12px 36px rgba(251,146,60,.5);
}

.prog-card:hover .prog-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.prog-card__play .material-symbols-rounded { font-size: 2rem; }

.prog-card__body {
  padding: 18px 20px 22px;
}

.prog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prog-card__body p {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prog-card__meta {
  display: flex;
  gap: 16px;
  font-size: .72rem;
  color: var(--text-muted);
}

.prog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prog-card__meta .material-symbols-rounded { font-size: .95rem; }

/* Featured Shows Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.show-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  display: block;
}

.show-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.show-card:hover img {
  transform: scale(1.1);
}

.show-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.95) 100%);
}

.show-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.show-card__content .badge {
  margin-bottom: 14px;
}

.show-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 10px;
}

.show-card__content p {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .trending__grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .card--horizontal { flex-direction: row; }
  .card--horizontal .card__img-wrap { width: 90px; min-width: 90px; }
  .card--horizontal .card__img { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .top-bar__links { display: none; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .search-box { display: none; }
  .btn--primary.watch-live { display: none; }

  .header .container { padding: 0 16px; height: 56px; max-width: 100%; gap: 12px; }
  .header.scrolled { top: 8px; width: calc(100% - 16px); border-radius: 16px; }
  .header.scrolled .container { height: 50px; padding: 0 14px; }
  .header.scrolled::before { border-radius: 16px; }
  .ticker { margin-top: 56px; }
  .logo__img { height: 22px; }

  .hero-display { min-height: 80vh; padding: 60px 20px 40px; }
  .hero__side { grid-template-columns: 1fr; }
  .card--featured .card__title { font-size: 1.4rem; }
  .trending__grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }

  .weather-bar { flex-direction: column; text-align: center; padding: 20px; }
  .weather-bar__left { flex-direction: column; }
  .weather-bar__forecast { gap: 16px; }

  .subscribe__form { flex-direction: column; }

  .radio-player { bottom: 12px; right: 12px; padding: 8px 12px; max-width: 280px; }
  .radio-player__art { width: 30px; height: 30px; border-radius: 6px; }

  .partners { padding: 60px 0; }
  .impact { padding: 70px 0; }
  .contact { padding: 70px 0; }
  .cta-band { padding: 80px 24px; }

  .programs-hero { min-height: 64vh; padding: 80px 0 60px; }
  .programs-hero__title { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shows-grid { grid-template-columns: 1fr; }
  .programs-section { padding: 60px 0; }
  .programs-filter { padding: 14px 0; }
  .programs-filter__tabs button { padding: 9px 16px; font-size: .76rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .trending__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__side { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.25rem; }
}

/* ===== Program Video Modal ===== */
.prog-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.prog-modal[hidden] { display: none; }
.prog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,5,12,.9);
  backdrop-filter: blur(12px);
  animation: progFade .25s ease;
}
@keyframes progFade { from { opacity: 0; } to { opacity: 1; } }
.prog-modal__panel {
  position: relative;
  background: #0d1018;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  max-width: 960px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  box-shadow: 0 60px 120px rgba(0,0,0,.7);
  animation: progSlide .3s ease;
}
@keyframes progSlide {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.prog-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(0,0,0,.6);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.prog-modal__close:hover { background: rgba(0,0,0,.85); transform: scale(1.05); }

.prog-modal__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.prog-modal__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prog-modal__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7));
}
.prog-modal__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(251, 146, 60, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(251, 146, 60, .4);
  transition: all .2s;
  z-index: 2;
}
.prog-modal__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(251, 146, 60, 1);
}
.prog-modal__play .material-symbols-rounded {
  font-size: 3rem;
  color: #fff;
}
.prog-modal__live-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 57, 70, .95);
  color: #fff;
  font-weight: 700;
  font-size: .7rem;
  padding: 6px 12px;
  border-radius: 99px;
  z-index: 2;
  letter-spacing: 1px;
}
.prog-modal__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  z-index: 2;
}
.prog-modal__ctrl {
  background: rgba(255,255,255,.1);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.prog-modal__ctrl:hover { background: rgba(255,255,255,.2); }
.prog-modal__ctrl .material-symbols-rounded { font-size: 1.3rem; }
.prog-modal__progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.2);
  border-radius: 99px;
  overflow: hidden;
  cursor: pointer;
}
.prog-modal__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  border-radius: 99px;
  transition: width .2s linear;
}
.prog-modal__time {
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.prog-modal__info {
  padding: 28px 32px 32px;
}
.prog-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fb923c;
  font-weight: 700;
  margin-bottom: 12px;
}
.prog-modal__tag .material-symbols-rounded { font-size: 14px; }
.prog-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
}
.prog-modal__desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 22px;
}
.prog-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.prog-modal__actions .btn {
  padding: 11px 22px;
  font-size: .85rem;
}
@media (max-width: 720px) {
  .prog-modal__panel { border-radius: 16px; }
  .prog-modal__player { border-radius: 16px 16px 0 0; }
  .prog-modal__info { padding: 22px 20px; }
  .prog-modal__title { font-size: 1.5rem; }
  .prog-modal__play { width: 64px; height: 64px; }
  .prog-modal__play .material-symbols-rounded { font-size: 2.2rem; }
}


/* ===========================================================
   SECTION LANDING PAGE  (/section/:slug)
   =========================================================== */
.section-page-hero {
  padding: 140px 0 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(251,146,60,.12), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(168,85,247,.08), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.section-page-hero__crumbs a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.section-page-hero__crumbs a:hover { color: var(--accent); }
.section-page-hero__crumbs .material-symbols-rounded {
  font-size: 18px;
  opacity: .5;
}
.section-page-hero__crumbs strong {
  color: #fff;
  font-weight: 600;
}
.section-page-hero__inner {
  max-width: 760px;
}
.section-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.22);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}
.section-page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0 0 18px;
  max-width: 640px;
}
.section-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.section-page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-page-hero__meta .material-symbols-rounded {
  font-size: 16px;
  color: var(--accent);
}

/* Section nav pills */
.section-nav {
  padding: 22px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,12,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.section-nav__pills {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}
.section-nav__pills::-webkit-scrollbar { display: none; }
.section-nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  flex-shrink: 0;
}
.section-nav__pill .material-symbols-rounded { font-size: 16px; }
.section-nav__pill:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.section-nav__pill.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(251,146,60,.32);
}


/* ===========================================================
   CONTACT PAGE  (/contact)
   =========================================================== */
.contact-page-hero {
  padding: 140px 0 50px;
  background:
    radial-gradient(circle at 15% 0%, rgba(251,146,60,.14), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.08), transparent 55%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-page-hero__inner {
  max-width: 720px;
}
.contact-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.22);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.contact-page-hero__eyebrow .material-symbols-rounded { font-size: 16px; }
.contact-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
}
.contact-page-hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}
.contact-page-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 560px;
}

/* Contact methods grid */
.contact-page-methods {
  padding: 50px 0;
}
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.contact-method {
  display: block;
  padding: 22px 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.contact-method::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.contact-method:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(251,146,60,.28);
  transform: translateY(-2px);
}
.contact-method:hover::after { opacity: 1; }
.contact-method__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(251,146,60,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-method__icon .material-symbols-rounded { font-size: 22px; }
.contact-method h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.contact-method p {
  font-size: .85rem;
  line-height: 1.5;
  color: rgba(255,255,255,.55);
  margin: 0 0 12px;
}
.contact-method p a {
  color: var(--accent);
  text-decoration: none;
}
.contact-method p a:hover { text-decoration: underline; }
.contact-method strong {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  font-family: 'JetBrains Mono', monospace, ui-monospace;
  word-break: break-word;
}

/* Contact form + info */
.contact-page-form-wrap {
  padding: 30px 0 70px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}
.contact-page-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}
.contact-page-info > p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 28px;
}
.contact-page-info > p a {
  color: var(--accent);
  text-decoration: none;
}
.contact-page-info > p a:hover { text-decoration: underline; }
.contact-page-info__block {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-page-info__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-page-info__block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.contact-page-info__block h4 .material-symbols-rounded {
  font-size: 18px;
  color: var(--accent);
}
.contact-page-info__block p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
.contact-page-info__social {
  display: flex;
  gap: 10px;
}
.contact-page-info__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.contact-page-info__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Form */
.contact-page-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px;
}
.contact-page-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-page-field {
  display: block;
  margin-bottom: 14px;
}
.contact-page-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.contact-page-field input,
.contact-page-field select,
.contact-page-field textarea {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: #fff;
  transition: all .2s;
}
.contact-page-field input::placeholder,
.contact-page-field textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.contact-page-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}
.contact-page-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-page-field select option {
  background: #14141a;
  color: #fff;
}
.contact-page-field input:focus,
.contact-page-field select:focus,
.contact-page-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 3px rgba(251,146,60,.12);
}
.contact-page-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  margin-top: 4px;
}
.contact-page-form__submit:hover {
  background: var(--accent-deep, #ea7c1d);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(251,146,60,.32);
}
.contact-page-form__submit .material-symbols-rounded { font-size: 18px; }
.contact-page-form__hint {
  margin: 12px 0 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* Staff directory on contact page */
.contact-page-staff {
  padding: 30px 0 80px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.contact-page-staff__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.contact-page-staff__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.22);
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-page-staff__eyebrow .material-symbols-rounded { font-size: 15px; }
.contact-page-staff h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}
.contact-page-staff h2 .accent {
  color: var(--accent);
  font-style: italic;
}
.contact-page-staff__head p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.contact-page-staff__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  transition: all .2s;
}
.contact-page-staff__all:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.contact-page-staff__all .material-symbols-rounded { font-size: 16px; }

.contact-page-staff__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.contact-page-staff__pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all .2s;
}
.contact-page-staff__pill:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.contact-page-staff__pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.contact-page-staff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.contact-staff-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  color: inherit;
  transition: all .22s;
  position: relative;
}
.contact-staff-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(251,146,60,.28);
  transform: translateY(-2px);
}
.contact-staff-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep, #ea7c1d));
}
.contact-staff-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-staff-card__body {
  min-width: 0;
  flex: 1;
}
.contact-staff-card__body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-staff-card__role {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-staff-card__dept {
  font-size: .72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  font-weight: 600;
}
.contact-staff-card__chip {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,146,60,.1);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-staff-card__chip .material-symbols-rounded { font-size: 16px; }

@media (max-width: 760px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-page-form { padding: 22px; }
  .contact-page-form__row { grid-template-columns: 1fr; }
  .contact-page-staff__head { flex-direction: column; align-items: flex-start; }
  .contact-page-hero { padding: 120px 0 32px; }
  .section-page-hero { padding: 120px 0 28px; }
  .section-nav__pill { font-size: .78rem; padding: 7px 12px; }
}


/* ===========================================================
   SITE-WIDE LIVE CHIP  (live-status.js)
   Floating chip that appears on every public page when AzuraCast
   reports a live broadcast. Plus a subtle red→orange aura on the
   page edges so the whole site "feels" different when live.
   =========================================================== */
.cirya-live-chip {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 24px) scale(.94);
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 32px);
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, rgba(239,68,68,.22), rgba(251,146,60,.22));
  border: 1px solid rgba(239,68,68,.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 14px 38px rgba(0,0,0,.45),
    0 0 36px rgba(239,68,68,.3),
    inset 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .35s cubic-bezier(.16,1,.3,1),
    transform .45s cubic-bezier(.16,1,.3,1);
}
.cirya-live-chip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
.cirya-live-chip:hover {
  border-color: rgba(239,68,68,.7);
  box-shadow:
    0 18px 44px rgba(0,0,0,.5),
    0 0 50px rgba(239,68,68,.4),
    inset 0 0 0 1px rgba(255,255,255,.06);
  transform: translate(-50%, -2px) scale(1);
}
.cirya-live-chip__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(239,68,68,.7);
  animation: cirya-live-chip-pulse 1.4s ease-out infinite;
}
@keyframes cirya-live-chip-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0    rgba(239,68,68,0); }
}
.cirya-live-chip__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.cirya-live-chip__label strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.cirya-live-chip__sub {
  font-size: .72rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.cirya-live-chip__icon {
  font-size: 22px !important;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

/* Subtle red→orange site-edge glow when live */
html.is-cirya-live::before,
html.is-cirya-live::after {
  content: '';
  position: fixed;
  z-index: 8000;
  pointer-events: none;
  height: 4px;
  left: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,.7) 25%, rgba(251,146,60,.7) 50%, rgba(239,68,68,.7) 75%, transparent);
  background-size: 200% 100%;
  animation: cirya-live-edge 3.5s linear infinite;
  opacity: .9;
}
html.is-cirya-live::before { top: 0; }
html.is-cirya-live::after  { bottom: 0; }
@keyframes cirya-live-edge {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Shift the radio-player mini bar up so it doesn't sit under the chip */
html.is-cirya-live .radio-player { bottom: 90px; }

@media (max-width: 540px) {
  .cirya-live-chip { padding: 9px 14px 9px 12px; gap: 10px; }
  .cirya-live-chip__label strong { font-size: .76rem; letter-spacing: .06em; }
  .cirya-live-chip__sub { font-size: .68rem; max-width: 180px; }
  .cirya-live-chip__icon { font-size: 18px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .cirya-live-chip__pulse,
  html.is-cirya-live::before,
  html.is-cirya-live::after { animation: none; }
}


/* ===========================================================
   PUBLIC SONG-REQUEST PAGE  (/request)
   =========================================================== */
.req-hero {
  padding: 140px 0 36px;
  background:
    radial-gradient(circle at 20% 0%, rgba(251,146,60,.14), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(168,85,247,.10), transparent 55%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.req-hero__inner { max-width: 720px; }
.req-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.22);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.req-hero__eyebrow .material-symbols-rounded { font-size: 16px; }
.req-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
}
.req-hero h1 .accent { color: var(--accent); font-style: italic; }
.req-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 580px;
}
.req-hero p code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .92em;
  background: rgba(251,146,60,.12);
  border: 1px solid rgba(251,146,60,.25);
  color: #fb923c;
  padding: 1px 6px;
  border-radius: 5px;
}

/* ---- Form wrapper ---- */
.req-form-wrap { padding: 30px 0 80px; }
.req-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 22px;
  max-width: 760px;
}

/* ---- Search input ---- */
.req-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.35);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color .2s, box-shadow .2s;
}
.req-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251,146,60,.14);
}
.req-search > .material-symbols-rounded {
  font-size: 22px;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.req-search input {
  flex: 1;
  height: 52px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.02rem;
  font-family: inherit;
}
.req-search input::placeholder { color: rgba(255,255,255,.35); }
.req-search__spinner {
  display: inline-flex;
  color: var(--accent);
}
.req-search__spinner .material-symbols-rounded {
  font-size: 22px;
  animation: req-spin 1s linear infinite;
}
@keyframes req-spin { to { transform: rotate(360deg); } }

/* ---- Results ---- */
.req-results {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.req-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 48px 18px;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.req-empty .material-symbols-rounded {
  font-size: 2.4rem;
  opacity: .35;
  margin-bottom: 6px;
}
.req-empty p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.7); }
.req-empty p strong { color: #fff; }
.req-empty small { color: rgba(255,255,255,.4); font-size: .8rem; }
.req-empty--error .material-symbols-rounded { color: #ef4444; opacity: .6; }

.req-result {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: inherit;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: all .15s;
}
.req-result:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(251,146,60,.45);
  transform: translateY(-1px);
}
.req-result.is-disabled {
  opacity: .5;
  pointer-events: none;
}
.req-result__art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(251,146,60,.18), rgba(168,85,247,.18));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.req-result__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.req-result__art .material-symbols-rounded { color: rgba(251,146,60,.7); font-size: 24px; }
.req-result__body { min-width: 0; }
.req-result__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.req-result__artist {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.req-result__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.req-result__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2px 8px;
  border-radius: 999px;
}
.req-result__chip .material-symbols-rounded { font-size: 12px; }
.req-result__chip--album {
  text-transform: none;
  letter-spacing: 0;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
}
.req-result__chip--explicit {
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.32);
  color: #f87171;
}
.req-result__send {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .15s;
}
.req-result:hover .req-result__send {
  background: var(--accent-deep, #ea7c1d);
  box-shadow: 0 8px 22px rgba(251,146,60,.32);
}
.req-result__send .material-symbols-rounded { font-size: 16px; }

/* ---- Requester name input ---- */
.req-requester {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.req-requester label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.req-requester input {
  width: 100%;
  background: rgba(0,0,0,.3);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .94rem;
  color: #fff;
  outline: none;
  transition: all .2s;
}
.req-requester input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251,146,60,.12);
}
.req-requester input::placeholder { color: rgba(255,255,255,.35); }

/* ---- Status ---- */
.req-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.req-status.is-success {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.32);
  color: #6ee7b7;
}
.req-status.is-error {
  background: rgba(239,68,68,.1);
  border-color: rgba(239,68,68,.32);
  color: #fca5a5;
}

/* ---- Fineprint ---- */
.req-fineprint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.18);
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  line-height: 1.55;
  max-width: 760px;
}
.req-fineprint .material-symbols-rounded {
  font-size: 18px;
  color: #a5b4fc;
  flex-shrink: 0;
  margin-top: 1px;
}
.req-fineprint code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .82em;
  padding: 1px 6px;
  background: rgba(99,102,241,.18);
  border-radius: 4px;
  color: #c4b5fd;
}

@media (max-width: 540px) {
  .req-hero { padding: 120px 0 28px; }
  .req-result { grid-template-columns: 48px 1fr; }
  .req-result__art { width: 48px; height: 48px; }
  .req-result__send { display: none; }
}
