:root {
  --bg: #101218;
  --bg-alt: #181b23;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(217, 185, 137, 0.18);
  --text: #f3efe8;
  --muted: #a6a09a;
  --gold-light: #f8eac3;
  --gold: #d9b989;
  --gold-deep: #8a6f52;
  --silver: #b7bcc4;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, .brand-name {
  font-family: 'Playfair Display', serif;
}

.impact {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.08em;
}

/* Ambient glows */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow-1 {
  width: 520px; height: 520px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.glow-2 {
  width: 480px; height: 480px;
  bottom: -200px; right: -140px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
}

/* Broadcast spotlight beams */
.spotlight {
  position: fixed;
  top: -10%;
  width: 260px;
  height: 140%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(217, 185, 137, 0.14), transparent 70%);
  clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
  animation: sway 9s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.spotlight-1 { left: 8%; animation-delay: 0s; opacity: 0.5; }
.spotlight-2 { left: 46%; animation-delay: 1.4s; opacity: 0.35; }
.spotlight-3 { left: 80%; animation-delay: 2.8s; opacity: 0.45; }

@keyframes sway {
  from { transform: rotate(-6deg); }
  to { transform: rotate(6deg); }
}

/* Marquee ticker */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  padding: 8px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll-left 26s linear infinite;
}
.marquee span {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: #17140f;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--panel-border);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  background: linear-gradient(120deg, var(--silver), #f0f2f5, var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--panel-border);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(217, 185, 137, 0.08);
  box-shadow: 0 0 24px rgba(217, 185, 137, 0.25);
}

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 185, 137, 0.08), transparent 55%),
    var(--bg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4vh 6vw 14vh;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-up 1s ease both;
}

.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 1px var(--panel-border),
    0 0 60px rgba(217, 185, 137, 0.25);
}

/* Election tag pill (static — no flashing) */
.election-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217, 185, 137, 0.08);
  border: 1px solid var(--panel-border);
  color: var(--gold-light);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  padding: 7px 18px 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.flag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: conic-gradient(#198a00 0deg 90deg, #de2010 90deg 180deg, #111 180deg 270deg, #ef7d00 270deg 360deg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Thin Zambian-flag accent stripe between hero and the content below */
.flag-stripe {
  position: relative;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, #198a00 0%, #198a00 33%, #de2010 33%, #de2010 55%, #111214 55%, #111214 77%, #ef7d00 77%, #ef7d00 100%);
  opacity: 0.85;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.15;
  color: var(--text);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 0 36px;
}

.btn {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: #17140f;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(217, 185, 137, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 185, 137, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--panel-border);
  box-shadow: none;
  margin-top: 26px;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(217, 185, 137, 0.08);
  box-shadow: 0 0 24px rgba(217, 185, 137, 0.2);
}

.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 460px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-l {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.stat-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
}

main { position: relative; z-index: 2; padding: 0 6vw 8vh; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--gold);
  margin: 0 0 8px;
}

.section-head { margin-bottom: 26px; }
.section-head h2 { margin: 0; font-size: 1.7rem; }

/* --- Featured / hero video --- */
.featured-section { margin-top: -8vh; margin-bottom: 8vh; }

.featured-card {
  cursor: pointer;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}

.featured-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-thumb { transform: scale(1.04); }

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: #17140f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(217, 185, 137, 0.4);
  transition: transform 0.25s ease;
}

.featured-card:hover .play-btn { transform: scale(1.08); }

.duration-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--text);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.featured-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-category {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--gold);
  margin: 0 0 10px;
}

.featured-info h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.featured-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* --- Episode grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-wrap img { transform: scale(1.06); }

.play-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 18, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}

.video-card:hover .play-overlay { opacity: 1; }

.video-info {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.video-category {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  color: var(--gold);
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

/* --- Shorts strip --- */
.shorts-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.shorts-strip::-webkit-scrollbar { height: 6px; }
.shorts-strip::-webkit-scrollbar-thumb { background: var(--panel-border); border-radius: 999px; }

.short-card {
  all: unset;
  cursor: pointer;
  flex: 0 0 auto;
  width: 150px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.short-thumb-wrap {
  position: relative;
  width: 150px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--panel-border);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.short-card:hover .short-thumb-wrap { border-color: var(--gold); transform: translateY(-3px); }

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

.short-thumb-wrap .play-overlay { width: 36px; height: 36px; }
.short-card:hover .play-overlay { opacity: 1; }

.short-title {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episodes-section, .shorts-section { margin-bottom: 10vh; }

/* --- Video modal / lightbox --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(4px);
}

.modal-body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--panel-border);
}

.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: 1px solid var(--panel-border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold-light); }

.about {
  max-width: 640px;
  margin: 14vh auto 0;
  text-align: center;
}

.about-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about h2 { margin-bottom: 14px; font-size: 1.6rem; }
.about p { color: var(--muted); }

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px 40px;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  opacity: 0.9;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile & touch refinements ---------- */

.nav {
  padding-top: calc(28px + env(safe-area-inset-top));
}

footer {
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { padding-left: 5vw; padding-right: 5vw; gap: 10px; }
  .brand { gap: 10px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 0.85rem; letter-spacing: 0.1em; }
  .brand-sub { font-size: 0.55rem; }
  .nav-cta { padding: 9px 16px; font-size: 0.78rem; }

  .hero-content { padding-top: 2vh; padding-bottom: 10vh; }
  .election-tag { font-size: 0.7rem; padding: 6px 14px 6px 11px; margin-bottom: 18px; }
  .hero-logo { width: 96px; height: 96px; margin-bottom: 20px; }
  .eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; }
  .hero-sub { font-size: 1rem; }
  .btn { padding: 14px 30px; width: 100%; text-align: center; }
  .stat-strip { gap: 12px; margin-top: 30px; padding-top: 22px; }
  .stat-n { font-size: 1.1rem; }
  .stat-l { font-size: 0.58rem; }

  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-info { padding: 22px; }
  .featured-info h2 { font-size: 1.2rem; }
  .short-card, .short-thumb-wrap { width: 120px; }

  .about { margin-top: 10vh; }

  .marquee span { font-size: 0.72rem; letter-spacing: 0.12em; }

  /* Trim ambient effects so they don't overwhelm small screens or tank scroll perf */
  .glow-1, .glow-2 { width: 320px; height: 320px; filter: blur(60px); }
  .spotlight { width: 160px; }
}

@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.9rem; }
}

/* Respect users who'd rather not see motion */
@media (prefers-reduced-motion: reduce) {
  .spotlight, .marquee-track, .hero-content {
    animation: none !important;
  }
}

/* Touch target sizing */
.video-card, .short-card, .btn, .nav-cta, .modal-close {
  min-height: 44px;
}
