/* ============================================================
   BIGG BOSS 13 — Premium White Luxury Design System
   Ivory surfaces, hairline borders, restrained gold accent.
   ============================================================ */

:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #f0ede6;
  --line: rgba(30, 26, 18, 0.10);
  --line-strong: rgba(30, 26, 18, 0.22);
  --gold: #a5822e;
  --gold-soft: #c8a648;
  --text: #1c1917;
  --muted: #6d675c;
  --faint: #a49d90;
  --prose: #57534a;
  --radius: 10px;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }

::selection { background: var(--gold); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn svg { flex-shrink: 0; }
.btn-gold { background: var(--gold); color: #141414; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: rgba(30, 26, 18, 0.4); }
.play-ico { display: inline-flex; }

.center { text-align: center; margin-top: 36px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text);
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-img {
  height: 30px; width: auto; border-radius: 7px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 2px 8px rgba(30, 26, 18, 0.14);
}
.logo em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em; transition: color 0.2s;
  padding: 6px 0; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 6px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 148px 24px 72px;
  background: linear-gradient(180deg, #fbf6ea 0%, var(--bg) 90%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.hero-logo {
  width: min(320px, 80%); height: auto; border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 44px rgba(30, 26, 18, 0.18);
  margin-bottom: 24px;
}
.hero-kicker {
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 66px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 18px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  color: var(--muted); font-size: 14px; font-weight: 500; margin-bottom: 22px;
}
.hero-meta .dot { color: var(--faint); }
.hero-desc { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 540px; margin-bottom: 32px; }
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-poster { position: relative; }
.poster-frame {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 60px rgba(30, 26, 18, 0.16);
}
.poster-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sections ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 64px 24px; }
.section-head { margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
.gold-line { width: 28px; height: 2px; margin-top: 10px; background: var(--gold); }
.section-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 620px; }

/* ---------- Latest episode card ---------- */
.latest-card {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.latest-thumb {
  position: relative; min-height: 300px; cursor: pointer;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.latest-thumb:hover { background: #e9e6de; }
.big-play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.big-play svg { margin-left: 3px; }
.latest-thumb:hover .big-play { transform: scale(1.06); }
.latest-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.latest-ep-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line);
  color: var(--gold); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 6px;
  z-index: 1;
}
.latest-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.latest-info .lk {
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px;
}
.latest-info h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 12px; }
.latest-info p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.latest-info .btn { align-self: flex-start; }
.latest-locked { color: var(--muted); font-size: 14px; }

/* ---------- Episode toolbar ---------- */
.ep-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  justify-content: space-between; margin-bottom: 28px;
}
.search-wrap { position: relative; flex: 1; min-width: 260px; max-width: 440px; }
.search-ico {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--faint); display: inline-flex;
}
#epSearch {
  width: 100%; padding: 12px 16px 12px 42px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
#epSearch:focus { border-color: var(--line-strong); }
#epSearch::placeholder { color: var(--faint); }
.ep-filters { display: flex; gap: 8px; }
.chip {
  padding: 9px 16px; border-radius: 6px; font-size: 13px; font-weight: 600;
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  cursor: pointer; transition: all 0.2s;
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.active { background: var(--text); color: #fff; border-color: transparent; }

/* ---------- Episode grid ---------- */
.ep-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 16px;
}
.ep-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; transition: border-color 0.2s ease, transform 0.2s ease;
}
.ep-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 14px 34px rgba(30, 26, 18, 0.10); }
.ep-thumb {
  position: relative; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
}
.ep-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ep-thumb.has-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 45%, rgba(0, 0, 0, 0.45));
}
.ep-tag { z-index: 1; }
.ep-body { padding: 14px 16px 16px; }
.ep-body h4 { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.ep-body span { font-size: 12px; color: var(--muted); }
.ep-empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 14px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.about-text p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.about-text em { color: var(--text); font-style: normal; font-weight: 600; }
.about-facts {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 26px;
}
.fact {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.fact:last-child { border-bottom: none; }
.fact span { color: var(--muted); font-size: 13px; }
.fact b { color: var(--text); font-size: 13.5px; font-weight: 600; text-align: right; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 14px 34px rgba(30, 26, 18, 0.10); }
.blog-thumb {
  height: 140px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.blog-thumb span {
  font-size: 40px; font-weight: 800; letter-spacing: -0.02em;
  color: rgba(28, 25, 23, 0.12);
}
.blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.blog-body h3 { font-size: 17px; font-weight: 700; line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: 14px; flex: 1; }
.read-more { color: var(--gold); font-weight: 600; font-size: 13px; margin-top: 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 48px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand .logo-img { height: 34px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.footer-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px 32px;
  border-top: 1px solid var(--line);
}
.footer-legal p { color: var(--faint); font-size: 12px; max-width: 860px; margin-bottom: 8px; }

/* ---------- In-grid ad units (Adsterra 300x250) ---------- */
/* No horizontal scrolling on any viewport (mobile fix) */
html, body { overflow-x: hidden; }

.ad-cell {
  grid-column: 1 / -1;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 10px 0;
}
.ad-cell iframe { border: 0; display: block; max-width: 100%; }

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-hero { padding: 148px 24px 36px; max-width: 760px; margin: 0 auto; }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 44px); font-weight: 700; letter-spacing: -0.02em; }
.blog-hero p { color: var(--muted); font-size: 15.5px; margin-top: 12px; }
.blog-list { max-width: 900px; margin: 0 auto; padding: 24px 24px 80px; }
.blog-list .blog-card { flex-direction: row; margin-bottom: 16px; }
.blog-list .blog-thumb { width: 200px; height: auto; min-height: 170px; flex-shrink: 0; border-bottom: none; border-right: 1px solid var(--line); }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-meta b { color: var(--gold); font-weight: 600; }

.article-page { padding: 136px 24px 80px; max-width: 760px; margin: 0 auto; }
.article-back { color: var(--muted); font-size: 13px; font-weight: 500; display: inline-block; margin-bottom: 28px; transition: color 0.2s; }
.article-back:hover { color: var(--gold); }
.article-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.article-page h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 42px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px;
}
.article-info { color: var(--muted); font-size: 13px; margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.prose p { color: var(--prose); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.prose h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 40px 0 14px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 30px 0 10px; }
.prose ul, .prose ol { color: var(--prose); margin: 0 0 20px 22px; }
.prose li { margin-bottom: 9px; font-size: 15.5px; line-height: 1.7; }
.prose strong { color: var(--text); }
.prose blockquote {
  border-left: 2px solid var(--gold); padding: 6px 0 6px 22px; margin: 28px 0;
  color: var(--text); font-size: 17px; font-style: italic;
}
.article-cta {
  margin-top: 48px; padding: 30px; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
}
.article-cta p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }

/* ---------- Ad slots ---------- */
.ad-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ad-slot {
  min-height: 50px; margin: 28px 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ad-slot span {
  color: var(--faint); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.ad-slot iframe { border: 0; max-width: 100%; }

/* Vertical Adsterra 160x300 banner — reserve height to avoid layout shift */
.ad-slot.ad-vertical { min-height: 300px; margin: 24px auto; width: 160px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--faint); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ---------- Episode watch pages ---------- */
.ep-page { max-width: 1040px; margin: 0 auto; padding: 116px 24px 60px; }
.ep-page-head { margin-bottom: 24px; }
.ep-page-head .season-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 6px;
  text-transform: uppercase; margin-bottom: 14px;
}
.ep-page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
}
.ep-page-head .ep-sub { color: var(--muted); margin-top: 10px; font-size: 15px; }
.player-shell {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #000; box-shadow: 0 22px 50px rgba(30, 26, 18, 0.16);
}

/* Player row — main player + 160x300 vertical ad rail.
   Stacked (ad below player) by default; side-by-side sticky rail
   on wide screens so the ad stays visible while scrolling. */
.player-row { display: block; }
.player-main { min-width: 0; }
.player-rail .ad-slot { margin: 24px auto 0; }
@media (min-width: 1280px) {
  .ep-page { max-width: 1240px; }
  .player-row { display: flex; gap: 24px; align-items: flex-start; }
  .player-main { flex: 1 1 auto; }
  .player-rail { flex: 0 0 160px; }
  .player-rail .ad-slot {
    margin: 0; position: sticky; top: 96px;
  }
}
.player-shell .player-wrap { aspect-ratio: 16 / 9; position: relative; overflow: hidden; }
.player-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; overflow: hidden; }
.player-fallback {
  margin: 12px 2px 0; font-size: 13px; color: var(--muted); text-align: center;
}
.player-fallback a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.ep-parts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 14px; padding: 12px 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.ep-parts .parts-label { font-size: 13px; color: var(--muted); margin-right: 4px; }
.ep-parts .part-btn {
  font: 600 13px var(--font-body); color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: 8px; padding: 7px 16px; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ep-parts .part-btn:hover { border-color: var(--gold); }
.ep-parts .part-btn.active { background: var(--gold); border-color: var(--gold); color: #14100a; }
.coming-soon-box {
  aspect-ratio: 16 / 9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; text-align: center;
  background: var(--surface-2); padding: 24px;
}
.coming-soon-box .big-play { border-color: var(--line-strong); color: var(--faint); }
.coming-soon-box h3 { font-size: 17px; font-weight: 700; letter-spacing: 0.02em; }
.coming-soon-box p { color: var(--muted); font-size: 14px; max-width: 420px; }

/* Episode details grid */
.details-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 10px; margin: 28px 0;
}
.detail-cell {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 14px;
}
.detail-cell span {
  display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px; font-weight: 600;
}
.detail-cell b { font-size: 13.5px; color: var(--text); font-weight: 600; }

/* SEO text + FAQ on episode pages */
.ep-seo-text h2, .ep-faq h2, .related-head, .listing-seo h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 34px 0 12px;
}
.ep-seo-text p { color: var(--prose); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.ep-seo-text a, .listing-seo a { color: var(--gold); }
.ep-faq { margin-top: 36px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 10px;
}
.faq-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.faq-item p { color: var(--muted); font-size: 14px; margin: 0; }

/* Prev / next episode nav */
.ep-pager { display: flex; justify-content: space-between; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.ep-pager .btn { flex: 1; min-width: 200px; }

/* Related episodes strip */
.related-head { margin: 44px 0 16px; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin: 40px 0 10px; flex-wrap: wrap;
}
.pagination a, .pagination span.page-cur {
  min-width: 40px; height: 40px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; font-weight: 600; font-size: 13.5px;
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); transition: all 0.2s;
}
.pagination a:hover { color: var(--text); border-color: var(--line-strong); }
.pagination span.page-cur { background: var(--text); color: #fff; border-color: transparent; }
.pagination span.page-dots { color: var(--faint); padding: 0 4px; }
.listing-seo { margin-top: 44px; }
.listing-seo p { color: var(--prose); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }

/* ---------- Episode highlight tags ---------- */
.ep-tag {
  position: absolute; top: 10px; right: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 4px;
}
.tag-fight    { color: #b91c1c; background: rgba(220, 38, 38, 0.08);   border: 1px solid rgba(220, 38, 38, 0.35); }
.tag-best     { color: #8a6a1f; background: rgba(165, 130, 46, 0.10);  border: 1px solid rgba(165, 130, 46, 0.45); }
.tag-wildcard { color: #6d28d9; background: rgba(124, 58, 237, 0.08);  border: 1px solid rgba(124, 58, 237, 0.35); }
.tag-emotion  { color: #0369a1; background: rgba(2, 132, 199, 0.08);   border: 1px solid rgba(2, 132, 199, 0.35); }
.tag-celeb    { color: #047857; background: rgba(16, 185, 129, 0.08);  border: 1px solid rgba(16, 185, 129, 0.35); }
.tag-story    { color: #c2410c; background: rgba(234, 88, 12, 0.08);   border: 1px solid rgba(234, 88, 12, 0.35); }

.ep-highlight {
  display: inline-block; margin: 0 0 14px; padding: 6px 12px;
  border-radius: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- Season highlights: coloured info cards ---------- */
.hl-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 14px; margin-bottom: 36px;
}
.hl-card {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--hc, var(--gold));
  border-radius: 10px; padding: 16px 18px;
}
.hl-card span {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hc, var(--gold)); margin-bottom: 6px;
}
.hl-card b { font-size: 15px; font-weight: 700; }
.hl-card small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

/* ---------- Storyline cards ---------- */
.story-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
}
.story-card {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--hc, var(--gold));
  border-radius: 12px; padding: 22px;
}
.story-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--hc, var(--gold)); }
.story-card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin-bottom: 14px; }
.story-card ul { list-style: none; }
.story-card li { margin-bottom: 8px; font-size: 13px; line-height: 1.5; }
.story-card a { color: var(--text); transition: color 0.2s; }
.story-card a:hover { color: var(--hc, var(--gold)); }
.story-card .ep-no { color: var(--hc, var(--gold)); font-weight: 700; margin-right: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding-top: 116px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-poster { max-width: 620px; width: 100%; }
  .latest-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-list .blog-card { flex-direction: column; }
  .blog-list .blog-thumb { width: 100%; height: 140px; border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 700px) {
  .nav-links {
    position: fixed; top: 64px; right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: rgba(247, 245, 240, 0.98); border-bottom: 1px solid var(--line);
    display: none; padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .ep-toolbar { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: none; }
  .ep-pager { flex-direction: column; }
  .ad-cell .ad-unit + .ad-unit { display: none; }
}
