/*
Theme Name: Bingebaaz Theme
Theme URI: https://bingebaaz.com
Author: BingeBaaz
Author URI: https://bingebaaz.com
Description: A premium, cinematic dark-mode WordPress theme for Bingebaaz – the ultimate OTT review and ending explained destination.
Version: 2.0.8
License: GNU General Public License v2 or later
Text Domain: bingebaaz
*/

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --purple-bg: #0e0720;
  --purple-card: #1a0e36;
  --purple-header: #1c0c3a;
  --yellow: #FFB200;
  --orange: #FF8C00;
  --cyan: #00D2D3;
  --white: #F3F4F6;
  --muted: #9CA3AF;
  --black: #06020f;
}

/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--purple-bg);
  color: var(--white);
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--yellow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.15;
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  background: var(--purple-header);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .5);
  border-bottom: 2px solid rgba(255, 178, 0, .12);
}

/* Circular logo image — bundled inside theme folder */
.site-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-img,
.custom-logo-link img,
.custom-logo {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid var(--yellow) !important;
  box-shadow: 0 0 12px rgba(255, 178, 0, .45) !important;
}

/* Wordmark next to logo */
.site-title-text {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--yellow);
  text-decoration: none;
}

.site-title-text span {
  color: var(--cyan);
}

/* Fallback text-only logo (no image) */
.site-title {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.site-title a {
  color: var(--yellow);
}

.site-title a span {
  color: var(--cyan);
}

/* Logo icon circle fallback */
.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-bg);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 10px rgba(255, 178, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Nav menu */
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  color: var(--white);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
}

.main-navigation a:hover {
  color: var(--yellow);
}

.main-navigation .current-menu-item>a {
  color: var(--yellow);
}

/* =====================
   PLATFORM STRIP
   ===================== */
.platform-strip {
  background: var(--purple-card);
  padding: .75rem 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  scrollbar-width: none;
}

.platform-strip::-webkit-scrollbar {
  display: none;
}

.platform-strip__label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.platform-badge:hover {
  background: rgba(255, 178, 0, .15);
  border-color: var(--yellow);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red {
  background: #E50914;
}

.dot-blue {
  background: #00A8E1;
}

.dot-purple {
  background: #9B59B6;
}

.dot-teal {
  background: #00D2D3;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #1c0646 0%, #0e0720 60%);
  padding: 5rem 5% 4rem;
  text-align: center;
  border-bottom: 3px solid rgba(255, 178, 0, .18);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 210, 211, .08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: #000;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: .9rem;
}

.hero h1 .highlight {
  color: var(--yellow);
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  background: var(--yellow);
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 178, 0, .35);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--cyan);
  color: #000;
}

.btn-read-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-read-more:hover {
  color: var(--yellow);
}

/* =====================
   MAIN CONTENT WRAPPER
   ===================== */
.site-main {
  width: 100%;
}

section {
  padding: 3rem 5%;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 22px;
  background: var(--cyan);
  border-radius: 3px;
}

.view-all {
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.view-all:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* =====================
   CARDS
   ===================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: var(--purple-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .25s, box-shadow .25s;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 210, 211, .14);
}

.post-thumbnail {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 3px solid var(--yellow);
}

.post-thumb-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #2a1657 0%, #0e1a2e 100%);
  border-bottom: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.post-body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.cat-tag {
  display: inline-block;
  background: var(--cyan);
  color: #000;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: .5rem;
}

.cat-tag.yellow {
  background: var(--yellow);
}

.cat-tag.orange {
  background: var(--orange);
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.post-title a {
  color: var(--white);
}

.post-title a:hover {
  color: var(--cyan);
}

.post-meta {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: .8rem;
}

.star-rating {
  color: var(--yellow);
  font-size: .9rem;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}

/* =====================
   FEATURED GRID
   ===================== */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.featured-card {
  background: var(--purple-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 178, 0, .18);
  transition: transform .25s, box-shadow .25s;
  grid-row: span 2;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 178, 0, .12);
}

.featured-thumb {
  width: 100%;
  height: 280px;
  background: linear-gradient(160deg, #2d1266 0%, #0e162e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 4px solid var(--yellow);
}

.featured-body {
  padding: 1.5rem;
}

.featured-title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.featured-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* =====================
   YOUTUBE SECTION
   ===================== */
.yt-wrap {
  background: var(--purple-card);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .07);
}

.yt-embed-box {
  background: linear-gradient(135deg, #1a0e36, #0d0d1a);
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  height: 360px;
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 2px solid rgba(255, 0, 0, .25);
  cursor: pointer;
  transition: border-color .2s;
}

.yt-embed-box:hover {
  border-color: rgba(255, 0, 0, .6);
}

.yt-play-btn {
  width: 70px;
  height: 70px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* =====================
   INSTAGRAM STRIP
   ===================== */
.insta-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: none;
}

.insta-strip::-webkit-scrollbar {
  display: none;
}

.insta-post {
  min-width: 130px;
  height: 130px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #2a1657, #1a2e1a);
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s;
}

.insta-post:hover {
  border-color: var(--cyan);
  transform: scale(1.05);
}

/* =====================
   SINGLE POST
   ===================== */
.single-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.single-header {
  text-align: center;
  margin-bottom: 2rem;
}

.single-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--yellow);
  margin-bottom: .5rem;
}

.single-meta {
  color: var(--muted);
  font-size: .85rem;
}

.single-thumbnail {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid var(--purple-card);
}

.single-content {
  font-size: 1.08rem;
  line-height: 1.8;
}

.single-content h2 {
  color: var(--cyan);
  margin: 2rem 0 .75rem;
}

.single-content p {
  margin-bottom: 1.2rem;
}

.single-content img {
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--purple-card);
  padding: 3rem 5% 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-logo .binge {
  color: var(--yellow);
}

.footer-logo .baaz {
  color: var(--cyan);
}

.social-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  transition: transform .2s, box-shadow .2s;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.yt-btn {
  background: #FF0000;
  color: #fff;
}

.ig-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .82rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.site-info {
  color: var(--muted);
  font-size: .78rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 1rem 5%;
    gap: .75rem;
  }

  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BINGEBAAZ SOURCE REDESIGN ===== */
.archive-main, .single-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 72px;
}
.archive-hero, .single-hero { padding: 56px 0 28px; }
.archive-kicker {
  display: inline-block; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,178,0,0.12); color: var(--yellow);
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.archive-title, .single-post-title { margin-top: 18px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }
.archive-description, .single-intro { max-width: 760px; margin-top: 18px; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }
.archive-grid-wrap { padding: 0; }
.archive-grid { margin-top: 12px; }
.archive-card, .empty-state-card { min-height: 100%; }
.archive-pagination { margin-top: 32px; }
.single-wrap { max-width: none; width: 100%; margin: 0; padding: 32px 0 0; }
.single-meta { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.single-media { margin: 24px 0 28px; }
.single-post-thumbnail { width: 100%; border-radius: 22px; max-height: 560px; object-fit: cover; }
.single-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.single-post-content { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 30px; }
.single-post-content p, .single-post-content li { color: var(--white); font-size: 1rem; line-height: 1.95; }
.single-post-content h2, .single-post-content h3 { margin: 28px 0 14px; }
.single-post-content ul, .single-post-content ol { padding-left: 22px; margin: 14px 0; }
.single-post-content > * + .wp-block-embed, .single-post-content > * + figure.wp-block-embed { margin-top: 34px; }
.single-post-content .wp-block-embed, .single-post-content figure.wp-block-embed { margin-bottom: 34px; }
.single-post-content iframe { border-radius: 16px; }
.single-sidebar { display: flex; flex-wrap: wrap; gap: 18px; }
.single-sidebar .sidebar-card { width: min(100%, 360px); }
.sidebar-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 24px; }
.sidebar-card h3 { margin-bottom: 12px; }
.sidebar-card p, .sidebar-card li, .sidebar-card a { color: var(--muted); line-height: 1.8; }
.sidebar-card ul { list-style: none; padding-left: 0; }
.sidebar-card li + li { margin-top: 8px; }
@media (max-width: 980px) { .single-layout { grid-template-columns: 1fr; } }

.single-wrap .sharedaddy,
.single-wrap .sd-block,
.single-wrap .jp-relatedposts {
  display: none !important;
}

/* ===== BINGEBAAZ CARD REFINEMENTS ===== */
.card-topline, .single-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.platform-tags { display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 14px; }
.platform-chip { display:inline-flex; align-items:center; padding:5px 10px; border-radius:999px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); color:var(--muted); font-size:0.72rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.platform-chip:hover { color: var(--yellow); border-color: rgba(255,178,0,0.5); background: rgba(255,178,0,0.12); }
.review-score-badge { display:inline-flex; align-items:center; justify-content:center; min-width:74px; padding:6px 12px; border-radius:999px; background:linear-gradient(135deg,var(--yellow),#ffd26c); color:#111; font-weight:800; font-size:0.78rem; }
.large-score { min-width:92px; font-size:0.95rem; }
.bb-card-release .post-thumb-placeholder, .bb-card-release .post-thumbnail { border-bottom-color:#f5b942; }
.bb-card-review .post-thumb-placeholder, .bb-card-review .post-thumbnail { border-bottom-color:#00d2d3; }
.bb-card-explainer .post-thumb-placeholder, .bb-card-explainer .post-thumbnail { border-bottom-color:#22c55e; }
.bb-card-list .post-thumb-placeholder, .bb-card-list .post-thumbnail { border-bottom-color:#9b59b6; }
.feature-grid .post-thumb-placeholder { font-size:3rem; }
.section-grid { align-items:stretch; }
.archive-card .featured-excerpt, .bb-card .featured-excerpt { margin-top:10px; }
.single-topline { margin-bottom:12px; }
.single-hero .platform-tags { justify-content:flex-start; }

.single-sidebar .sidebar-card:first-child { display: none; }
.single-wrap .single-post-content { max-width: none; }
.single-main { width: min(1380px, calc(100% - 32px)); }


.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.main-navigation ul::-webkit-scrollbar,
.platform-strip::-webkit-scrollbar {
  display: none;
}

.post-body p,
.featured-excerpt {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 1rem 5%;
    gap: .9rem;
    align-items: stretch;
  }

  .site-branding {
    justify-content: center;
  }

  .main-navigation {
    width: 100%;
  }

  .main-navigation ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: .65rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-navigation a {
    white-space: nowrap;
    font-size: .76rem;
    padding: .58rem .85rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    display: inline-flex;
    align-items: center;
  }

  .platform-strip {
    gap: .65rem;
    padding: .8rem 5%;
  }

  .platform-strip__label,
  .platform-badge {
    flex: 0 0 auto;
  }

  .hero {
    padding: 3.5rem 5% 3rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero p {
    max-width: none;
    font-size: .98rem;
    margin-bottom: 1.35rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 2.2rem 5%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }

  .section-title {
    font-size: 1.18rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .post-thumbnail,
  .post-thumb-placeholder {
    height: 176px;
  }

  .post-body {
    padding: 1rem;
  }

  .archive-main,
  .single-main {
    width: min(100%, calc(100% - 20px));
  }

  .archive-title,
  .single-post-title {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .single-post-content {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .single-post-content p,
  .single-post-content li {
    font-size: .98rem;
    line-height: 1.82;
  }

  .single-sidebar .sidebar-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .site-title-text {
    font-size: 1.45rem;
  }

  .hero {
    padding: 3rem 5% 2.6rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero p,
  .archive-description,
  .single-post-content p,
  .single-post-content li {
    font-size: .94rem;
  }

  .platform-badge,
  .main-navigation a {
    font-size: .72rem;
  }

  .post-thumbnail,
  .post-thumb-placeholder {
    height: 164px;
  }
}


.imdb-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5c518;
  color: #111;
  font-weight: 800;
  font-size: 0.82rem;
  margin: 0 8px 8px 0;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  margin: 0 8px 8px 0;
}

.availability-line a {
  color: var(--cyan);
}


/* ===== BINGEBAAZ ARCHIVE EDITORIAL UPGRADE ===== */
.archive-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 30px;
}

.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 42%);
  pointer-events: none;
}

.archive-hero--ott {
  background: linear-gradient(135deg, rgba(0, 210, 211, 0.16), rgba(14, 7, 32, 0));
}

.archive-hero--theatrical {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(14, 7, 32, 0));
}

.archive-hero--reviews {
  background: linear-gradient(135deg, rgba(255, 178, 0, 0.18), rgba(14, 7, 32, 0));
}

.archive-hero--explained {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(14, 7, 32, 0));
}

.archive-hero--lists {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.18), rgba(14, 7, 32, 0));
}

.archive-hero--features {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.20), rgba(15, 23, 42, 0.72));
}

.archive-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.archive-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.archive-meta-pill--muted {
  color: var(--muted);
  font-weight: 600;
}

.archive-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 8px 0 10px;
}

.archive-lead-card,
.archive-support-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
}

.archive-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 100%;
}

.archive-lead-card--ott {
  box-shadow: 0 16px 40px rgba(0, 210, 211, 0.08);
}

.archive-lead-card--reviews {
  box-shadow: 0 16px 40px rgba(255, 178, 0, 0.08);
}

.archive-lead-card--explained {
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.10);
}

.archive-lead-card--lists {
  box-shadow: 0 16px 40px rgba(155, 89, 182, 0.08);
}

.archive-lead-card--features {
  box-shadow: 0 18px 46px rgba(59, 130, 246, 0.12);
  border-color: rgba(147, 197, 253, 0.18);
}

.archive-lead-card--theatrical {
  box-shadow: 0 16px 40px rgba(255, 140, 0, 0.08);
}

.archive-lead-media,
.archive-support-media {
  display: block;
  background: linear-gradient(160deg, #2d1266 0%, #0e162e 100%);
}

.archive-lead-thumb,
.archive-support-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-lead-thumb {
  min-height: 100%;
}

.archive-lead-placeholder,
.archive-support-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', system-ui, sans-serif;
}

.archive-lead-placeholder {
  min-height: 100%;
  font-size: 4rem;
  padding: 3rem;
}

.archive-support-placeholder {
  min-height: 100%;
  font-size: 2.2rem;
}

.archive-lead-content,
.archive-support-body {
  padding: 24px;
}

.archive-panel-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 178, 0, 0.12);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.archive-lead-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 10px;
}

.archive-lead-title a,
.archive-support-title a {
  color: var(--white);
}

.archive-lead-title a:hover,
.archive-support-title a:hover {
  color: var(--cyan);
}

.archive-lead-excerpt {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-top: 12px;
}

.archive-lead-cta {
  margin-top: 18px;
}

.archive-support-stack {
  display: grid;
  gap: 18px;
}

.archive-support-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 182px;
}

.archive-support-thumb,
.archive-support-placeholder {
  height: 100%;
}

.archive-support-title {
  font-size: 1rem;
  margin: 10px 0 8px;
}

.archive-section-header {
  margin: 24px 0 18px;
}

.archive-grid {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .archive-showcase,
  .archive-lead-card {
    grid-template-columns: 1fr;
  }

  .archive-support-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .archive-support-stack {
    grid-template-columns: 1fr;
  }

  .archive-support-card {
    grid-template-columns: 1fr;
  }

  .archive-support-media {
    min-height: 180px;
  }

  .archive-hero {
    padding-top: 44px;
  }
}

/* ===== BINGEBAAZ HOMEPAGE + NAV POLISH 2026-05 ===== */
.site-header {
  gap: 1.4rem;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}
.bb-primary-menu {
  gap: 1.35rem !important;
}
.main-navigation a {
  font-size: .8rem;
  letter-spacing: .08em;
}
.bb-header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.bb-header-search input {
  width: 150px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: .78rem;
  outline: none;
}
.bb-header-search input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,178,0,.12);
}
.bb-header-search button {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--yellow);
  color: #09020f;
  font-weight: 800;
  font-size: .76rem;
  cursor: pointer;
}
.platform-strip {
  padding-top: .62rem;
  padding-bottom: .62rem;
}
.platform-badge .dot {
  display: inline-block;
}
.home-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  gap: 2rem;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 10%, rgba(0,210,211,.12), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(255,178,0,.12), transparent 24%),
    linear-gradient(135deg, #1c0646 0%, #0e0720 62%);
  padding: 4.4rem 5% 3.4rem;
  border-bottom: 3px solid rgba(255, 178, 0, .18);
}
.home-hero-copy {
  max-width: 760px;
}
.home-hero-v2 h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.8rem);
  letter-spacing: -.05em;
  max-width: 820px;
  margin-bottom: 1rem;
}
.home-hero-v2 p {
  color: #c8c2d6;
  font-size: 1.08rem;
  max-width: 660px;
  margin-bottom: 1.8rem;
}
.hero-feature-card {
  align-self: center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  position: relative;
  overflow: hidden;
}
.hero-feature-card::before {
  content: '';
  position: absolute;
  inset: -40% -30% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255,178,0,.16);
  filter: blur(6px);
}
.hero-feature-label {
  display: inline-flex;
  color: #000;
  background: var(--yellow);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.hero-feature-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-bottom: .8rem;
}
.hero-feature-card h2 a { color: var(--white); }
.hero-feature-card p { color: #c8c2d6; margin-bottom: 1rem; }
.trending-rail {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.compact-header { margin-bottom: 1rem; }
.trend-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .9rem;
}
.trend-pill {
  display: block;
  padding: .95rem 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
}
.trend-pill span {
  display: block;
  color: var(--yellow);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.section-kicker {
  color: var(--muted);
  margin-top: .35rem;
  font-size: .92rem;
}
.latest-grid-v2 .post-card:first-child {
  grid-column: span 2;
}
.coverage-strip {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.coverage-card {
  display: block;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,178,0,.08), rgba(0,210,211,.045));
  color: var(--white);
}
.coverage-card span {
  color: var(--yellow);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.coverage-card strong {
  display: block;
  font-size: 1.1rem;
  margin-top: .5rem;
}
.coverage-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  margin-top: .35rem;
  font-size: .9rem;
}
.empty-state-card {
  display: none;
}
@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    padding-top: .85rem;
    padding-bottom: .85rem;
  }
  .main-navigation {
    order: 3;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .main-navigation::-webkit-scrollbar { display: none; }
  .bb-primary-menu {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    min-width: max-content;
  }
  .bb-header-search {
    margin-left: auto;
  }
  .home-hero-v2 {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }
}
@media (max-width: 700px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    gap: .8rem;
  }
  .site-title-text { font-size: 1.35rem; }
  .site-logo-img,
  .custom-logo-link img,
  .custom-logo {
    width: 42px !important;
    height: 42px !important;
  }
  .bb-header-search input { width: 112px; }
  .bb-header-search button { padding: 8px 10px; }
  .platform-strip { gap: .65rem; }
  .home-hero-v2 { padding: 2.7rem 5% 2.4rem; }
  .home-hero-v2 h1 { font-size: clamp(2rem, 12vw, 3.2rem); }
  .hero-feature-card { padding: 1.2rem; }
  .latest-grid-v2 .post-card:first-child { grid-column: auto; }
  .section-header { align-items: flex-start; gap: .8rem; }
  .view-all { white-space: nowrap; }
}


/* ===== BINGEBAAZ HOMEPAGE MOBILE QA FIX 2026-05 ===== */
.site-footer ul,
.footer-links {
  list-style: none;
  padding-left: 0;
}
@media (max-width: 700px) {
  .main-navigation {
    width: 100%;
    overflow-x: visible;
  }
  .bb-primary-menu,
  .main-navigation ul {
    min-width: 0 !important;
    width: 100%;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: .5rem !important;
  }
  .main-navigation a {
    padding: 8px 11px;
    font-size: .72rem;
  }
  .site-header {
    padding-left: 4%;
    padding-right: 4%;
  }
  .bb-header-search input {
    width: min(118px, 30vw);
  }
}
@media (max-width: 420px) {
  .site-branding {
    gap: .45rem;
  }
  .site-title-text {
    font-size: 1.18rem;
  }
  .bb-header-search {
    gap: 4px;
  }
  .bb-header-search input {
    width: 96px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bb-header-search button {
    padding: 8px 9px;
  }
  .main-navigation a {
    padding: 8px 10px;
  }
}

/* ===== BINGEBAAZ TYPOGRAPHY REFINEMENT V1 ===== */
:root {
  --bb-copy: #f4f6fb;
  --bb-copy-soft: #c5ccd8;
  --bb-muted-strong: #aeb7c6;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.35vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero p,
.archive-description,
.single-intro {
  color: var(--bb-copy-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.78;
}

.archive-title,
.single-post-title {
  font-size: clamp(2.1rem, 4.25vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 1040px;
}

.archive-title {
  max-width: 900px;
}

.single-post-title {
  font-weight: 850;
}

.section-title {
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.post-body h2,
.post-body h3,
.archive-card h2,
.archive-card h3,
.bb-card h2,
.bb-card h3 {
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.post-body h3,
.archive-card h3,
.bb-card h3 {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.post-body p,
.featured-excerpt,
.archive-card .featured-excerpt,
.bb-card .featured-excerpt,
.empty-state-card p {
  color: var(--bb-copy-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.post-date,
.single-meta,
.card-topline,
.single-topline,
.category-tag,
.platform-chip {
  color: var(--bb-muted-strong);
}

.post-date,
.single-meta {
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-tag,
.platform-chip,
.archive-kicker {
  font-weight: 800;
  letter-spacing: 0.055em;
}

.single-post-content {
  max-width: 920px;
}

.single-post-content p,
.single-post-content li {
  color: var(--bb-copy);
  font-size: clamp(1.02rem, 1.1vw, 1.1rem);
  line-height: 1.88;
}

.single-post-content h2 {
  font-size: clamp(1.45rem, 2.05vw, 1.9rem);
  line-height: 1.22;
  letter-spacing: -0.018em;
  font-weight: 850;
  margin-top: 34px;
}

.single-post-content h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  line-height: 1.3;
  font-weight: 800;
  margin-top: 28px;
}

.single-post-content strong {
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.85rem);
    line-height: 1.1;
  }

  .archive-title,
  .single-post-title {
    font-size: clamp(1.85rem, 7.2vw, 2.75rem);
    line-height: 1.12;
  }

  .archive-description,
  .single-intro,
  .hero p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .post-body p,
  .featured-excerpt,
  .archive-card .featured-excerpt,
  .bb-card .featured-excerpt {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .single-post-content p,
  .single-post-content li {
    font-size: 1rem;
    line-height: 1.82;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.82rem, 8.5vw, 2.25rem);
  }

  .archive-title,
  .single-post-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .single-post-content h2 {
    font-size: 1.32rem;
  }

  .single-post-content h3 {
    font-size: 1.12rem;
  }

  .post-date,
  .single-meta {
    font-size: 0.86rem;
  }
}


/* ===== BINGEBAAZ TYPOGRAPHY REFINEMENT V1.1 CACHE SAFE OVERRIDES ===== */
.home-hero-v2 h1,
.hero h1 {
  font-size: clamp(2.35rem, 4.35vw, 3.65rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  max-width: 780px !important;
}

.home-hero-v2 .home-hero-copy p,
.hero p,
.archive-description,
.single-intro {
  font-size: clamp(1rem, 1.45vw, 1.08rem) !important;
  line-height: 1.72 !important;
  color: var(--bb-copy-soft, #c5ccd8) !important;
}

.archive-title,
.single-post-title {
  font-size: clamp(2.15rem, 4.2vw, 3.45rem) !important;
  line-height: 1.09 !important;
  letter-spacing: -0.035em !important;
}

.home-hero-v2 .hero-feature-card h2,
.section-title {
  line-height: 1.18 !important;
}

.post-body h3,
.post-card h3,
.latest-grid-v2 .post-card h3,
.archive-card h2,
.archive-card h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.22rem) !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

.post-body p,
.featured-excerpt,
.archive-card .featured-excerpt,
.bb-card .featured-excerpt {
  font-size: .96rem !important;
  line-height: 1.72 !important;
  color: var(--bb-copy-soft, #c5ccd8) !important;
}

.single-post-content p,
.single-post-content li {
  font-size: 1.04rem !important;
  line-height: 1.86 !important;
  color: var(--bb-copy, #f4f6fb) !important;
}

.single-post-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.single-post-content h3 {
  font-size: clamp(1.18rem, 2vw, 1.38rem) !important;
  line-height: 1.28 !important;
  font-weight: 800 !important;
}

.post-date,
.single-meta,
.archive-meta {
  color: var(--bb-muted-strong, #aeb7c6) !important;
  font-size: .9rem !important;
}

@media (max-width: 820px) {
  .home-hero-v2 h1,
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.85rem) !important;
    line-height: 1.1 !important;
  }

  .archive-title,
  .single-post-title {
    font-size: clamp(1.85rem, 7.2vw, 2.75rem) !important;
    line-height: 1.12 !important;
  }

  .single-post-content p,
  .single-post-content li {
    font-size: 1rem !important;
    line-height: 1.82 !important;
  }
}

@media (max-width: 480px) {
  .home-hero-v2 h1,
  .hero h1 {
    font-size: clamp(1.82rem, 8.5vw, 2.25rem) !important;
  }

  .archive-title,
  .single-post-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem) !important;
  }

  .home-hero-v2 .home-hero-copy p,
  .hero p,
  .archive-description,
  .single-post-content p,
  .single-post-content li {
    font-size: .98rem !important;
  }
}


/* ===== BINGEBAAZ ARCHIVE CARD TYPOGRAPHY V1 ===== */
.archive-lead-title {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.018em !important;
  font-weight: 850 !important;
}

.archive-support-title {
  font-size: clamp(1.02rem, 1.15vw, 1.14rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  font-weight: 800 !important;
}

.archive-lead-excerpt,
.archive-support-body .featured-excerpt {
  font-size: .98rem !important;
  line-height: 1.72 !important;
  color: var(--bb-copy-soft, #c5ccd8) !important;
}

.archive-panel-label,
.cat-tag,
.platform-chip {
  letter-spacing: .045em !important;
}

@media (max-width: 820px) {
  .archive-lead-title {
    font-size: clamp(1.42rem, 5.6vw, 1.9rem) !important;
    line-height: 1.22 !important;
  }

  .archive-support-title {
    font-size: 1.04rem !important;
    line-height: 1.32 !important;
  }
}



/* ===== BINGEBAAZ OTT TAG BROWSE HUB ===== */
.section-subtitle { margin-top: 10px; color: var(--muted); max-width: 760px; }
.ott-platform-hub { margin: 18px 0 6px; }
.ott-platform-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.ott-platform-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.ott-platform-card span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.ott-platform-card strong { font-size: 1.06rem; color: var(--white); }
.ott-platform-card em { font-style: normal; color: var(--cyan); }
.ott-platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,178,0,0.35);
  background: rgba(255,178,0,0.08);
  color: var(--white);
}
@media (max-width: 900px) {
  .ott-platform-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ott-platform-links { grid-template-columns: 1fr; }
}


/* ===== BINGEBAAZ REVIEW FRONTEND V1 ===== */
.bb-card-review {
  position: relative;
  border: 1px solid rgba(255, 178, 0, 0.18);
  background: linear-gradient(180deg, rgba(255, 178, 0, 0.08), rgba(17, 11, 34, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.bb-card-review::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
}

.bb-card-review:hover {
  box-shadow: 0 18px 48px rgba(255, 178, 0, 0.16);
}

.bb-card-review .post-body {
  padding-top: 1.2rem;
}

.bb-card-review .review-score-badge {
  background: linear-gradient(135deg, #ffe39a, #ffb200);
  color: #161008;
}

.bb-card-review .post-title a:hover {
  color: var(--yellow);
}

.single-hero-panel {
  display: block;
}

.single-wrap--review .single-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 211, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(255, 178, 0, 0.14), rgba(20, 11, 42, 0.96));
  border: 1px solid rgba(255, 178, 0, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.single-wrap--review .single-post-title {
  color: var(--white);
}

.single-wrap--review .single-intro {
  max-width: 900px;
}

.single-review-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-review-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 178, 0, 0.14), rgba(16, 9, 32, 0.96));
  border: 1px solid rgba(255, 178, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 32px rgba(0, 0, 0, 0.28);
  min-height: 100%;
}

.single-review-panel__label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.single-review-score {
  color: var(--white);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.single-review-score--pending {
  color: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2rem);
}



.single-wrap--review .single-post-content {
  border-color: rgba(255, 178, 0, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
}

@media (max-width: 900px) {
  .single-wrap--review .single-hero-panel {
    grid-template-columns: 1fr;
  }

  .single-review-panel {
    min-height: 0;
  }
}

/* ===== BINGEBAAZ ARCHIVE DISCOVERY UX V1 ===== */
.archive-subcategory-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.archive-subcategory-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-subcategory-chip,
.archive-page-summary a,
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.archive-subcategory-chip:hover,
.archive-page-summary a:hover,
.archive-pagination a.page-numbers:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 102, 0.55);
  background: rgba(255, 214, 102, 0.14);
  color: var(--white);
}

.archive-page-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 28, 0.46);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.archive-page-summary span {
  color: var(--white);
}

.archive-pagination {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.archive-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  border-color: transparent;
  color: #120916;
  box-shadow: 0 14px 30px rgba(255, 77, 148, 0.18);
}

.archive-pagination .prev,
.archive-pagination .next {
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 700px) {
  .archive-page-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-page-summary a,
  .archive-pagination .page-numbers {
    width: 100%;
  }

  .archive-pagination .nav-links {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===== BINGEBAAZ HOMEPAGE SECTION ARCHIVE LINKS V1 ===== */
.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.section-more-row {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.section-more-link {
  border-color: rgba(255, 214, 102, 0.32);
  background: rgba(255, 214, 102, 0.08);
}

@media (max-width: 700px) {
  .section-more-row {
    align-items: stretch;
  }

  .section-more-link {
    width: 100%;
    justify-content: center;
  }
}



/* ===== BINGEBAAZ ARCHIVE GRID VISIBILITY FIX 2026-05 ===== */
.archive-main > .archive-grid-wrap,
body main.site-main section.archive-grid-wrap {
  display: block !important;
}


/* ===== BINGEBAAZ ARCHIVE HERO SPACING + TAG CONSISTENCY 2026-05 ===== */
.archive-main > .archive-hero {
  box-sizing: border-box;
  padding: 58px clamp(24px, 4vw, 52px) 34px !important;
  margin: 28px 0 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-main > .archive-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .archive-main > .archive-hero {
    padding: 38px 20px 26px !important;
    margin-top: 18px;
    border-radius: 20px;
  }
}


/* ===== BINGEBAAZ ARCHIVE HERO THEME BACKGROUNDS 2026-05 ===== */
.archive-main > .archive-hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 178, 0, 0.14), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(0, 210, 211, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(28, 12, 58, 0.96), rgba(14, 7, 32, 0.98)) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.archive-main > .archive-hero--ott {
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 210, 211, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(0, 210, 211, 0.16), rgba(26, 14, 54, 0.96) 48%, rgba(14, 7, 32, 0.98)) !important;
}

.archive-main > .archive-hero--reviews {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 178, 0, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 178, 0, 0.16), rgba(26, 14, 54, 0.96) 48%, rgba(14, 7, 32, 0.98)) !important;
}

.archive-main > .archive-hero--gossip {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 77, 148, 0.24), transparent 31%),
    radial-gradient(circle at 10% 0%, rgba(255, 178, 0, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(255, 77, 148, 0.16), rgba(24, 12, 38, 0.97) 46%, rgba(14, 7, 32, 0.99)) !important;
  border-color: rgba(255, 77, 148, 0.24) !important;
}

.archive-main > .archive-hero--lists {
  background:
    radial-gradient(circle at 88% 8%, rgba(155, 89, 182, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(155, 89, 182, 0.16), rgba(26, 14, 54, 0.96) 48%, rgba(14, 7, 32, 0.98)) !important;
}

.archive-main > .archive-hero--explained {
  background:
    radial-gradient(circle at 88% 8%, rgba(163, 230, 53, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(7, 29, 22, 0.96) 48%, rgba(14, 7, 32, 0.98)) !important;
}

.archive-main > .archive-hero--theatrical {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 140, 0, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(26, 14, 54, 0.96) 48%, rgba(14, 7, 32, 0.98)) !important;
}


/* ===== BINGEBAAZ ARCHIVE CARD THEME ALIGNMENT 2026-05 ===== */
.archive-lead-card--ott,
.archive-support-card--release {
  background: linear-gradient(180deg, rgba(0,210,211,0.12), rgba(9,26,34,0.96)) !important;
  border-color: rgba(0,210,211,0.22) !important;
}

.archive-lead-card--reviews,
.archive-support-card--review {
  background: linear-gradient(180deg, rgba(255,178,0,0.12), rgba(30,18,28,0.96)) !important;
  border-color: rgba(255,178,0,0.24) !important;
}

.archive-lead-card--explained,
.archive-support-card--explainer {
  background: linear-gradient(180deg, rgba(34,197,94,0.14), rgba(7,29,22,0.96)) !important;
  border-color: rgba(34,197,94,0.28) !important;
}

.archive-lead-card--lists,
.archive-support-card--list {
  background: linear-gradient(180deg, rgba(155,89,182,0.15), rgba(22,12,42,0.96)) !important;
  border-color: rgba(155,89,182,0.26) !important;
}

.archive-lead-card--gossip,
.archive-support-card--feature {
  background: linear-gradient(180deg, rgba(255,77,148,0.13), rgba(24,12,38,0.96)) !important;
  border-color: rgba(255,77,148,0.22) !important;
}

.archive-lead-card--theatrical {
  background: linear-gradient(180deg, rgba(255,140,0,0.14), rgba(34,20,9,0.96)) !important;
  border-color: rgba(255,140,0,0.24) !important;
}

.archive-lead-card--lists .cat-tag.yellow,
.archive-support-card--list .cat-tag.yellow { background:#9b59b6 !important; color:#fff !important; }
.archive-lead-card--gossip .cat-tag.yellow,
.archive-support-card--feature .cat-tag.yellow { background:#ff4d94 !important; color:#fff !important; }
.archive-lead-card--explained .cat-tag.yellow,
.archive-support-card--explainer .cat-tag.yellow { background:#22c55e !important; color:#04120a !important; }
.archive-lead-card--ott .cat-tag.yellow,
.archive-support-card--release .cat-tag.yellow { background:#00d2d3 !important; color:#041216 !important; }
.archive-lead-card--reviews .cat-tag.yellow,
.archive-support-card--review .cat-tag.yellow { background:#ffb200 !important; color:#151008 !important; }

/* ===== BINGEBAAZ ENDING EXPLAINED GREEN THEME V1 ===== */
.archive-main > .archive-hero--explained {
  background:
    radial-gradient(circle at 88% 8%, rgba(163, 230, 53, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.17), rgba(7, 29, 22, 0.97) 48%, rgba(14, 7, 32, 0.98)) !important;
}
.post-card.bb-card-explainer,
.archive-lead-card--explained,
.archive-support-card--explainer {
  background: linear-gradient(180deg, rgba(34,197,94,0.14), rgba(7,29,22,0.96)) !important;
  border-color: rgba(34,197,94,0.30) !important;
}
.post-card.bb-card-explainer::before {
  background: linear-gradient(90deg, #22c55e, #a3e635) !important;
}
.post-card.bb-card-explainer:hover,
.archive-lead-card--explained:hover,
.archive-support-card--explainer:hover {
  box-shadow: 0 18px 48px rgba(34,197,94,0.17) !important;
}
.post-card.bb-card-explainer .cat-tag.yellow,
.archive-lead-card--explained .cat-tag.yellow,
.archive-support-card--explainer .cat-tag.yellow,
.archive-lead-card--explained .archive-panel-label,
.archive-support-card--explainer .archive-panel-label {
  background:#22c55e !important;
  color:#04120a !important;
}
.post-card.bb-card-explainer .post-thumb-placeholder,
.post-card.bb-card-explainer .post-thumbnail,
.archive-lead-card--explained .archive-lead-media,
.archive-support-card--explainer .archive-support-media {
  border-bottom-color:#22c55e !important;
}


/* ===== BINGEBAAZ MOVIE FEATURES THEME V1 ===== */
.archive-hero--features {
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 28px;
  padding-left: clamp(24px, 4vw, 52px) !important;
  padding-right: clamp(24px, 4vw, 52px) !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(147, 197, 253, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(30, 64, 175, 0.34), rgba(15, 23, 42, 0.90)) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.36);
}
.archive-hero--features .archive-kicker,
.archive-showcase--features .archive-panel-label,
.archive-lead-card--features .archive-panel-label,
.archive-support-card--features .archive-panel-label {
  background: rgba(147, 197, 253, 0.14);
  color: #bfdbfe;
  border: 1px solid rgba(147, 197, 253, 0.24);
}
.archive-lead-card--features,
.archive-support-card--features {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.10), rgba(15, 23, 42, 0.96));
  border-color: rgba(147, 197, 253, 0.16);
}
.archive-lead-card--features .archive-lead-media,
.archive-support-card--features .archive-support-media {
  background: linear-gradient(160deg, #1e3a8a 0%, #0f172a 100%);
}
.bb-card-feature .post-thumb-placeholder,
.bb-card-feature .post-thumbnail {
  border-bottom-color: #60a5fa;
}
.bb-card-feature .cat-tag,
.archive-hero--features .archive-meta-pill {
  border-color: rgba(147, 197, 253, 0.22);
}


/* ===== BINGEBAAZ MOVIE FEATURES SPECIFICITY FIX V1 ===== */
.archive-main > .archive-hero.archive-hero--features {
  background:
    radial-gradient(circle at 18% 22%, rgba(147, 197, 253, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(30, 64, 175, 0.38), rgba(15, 23, 42, 0.92)) !important;
  border-color: rgba(147, 197, 253, 0.16) !important;
}
.archive-support-card--feature,
.bb-card-feature {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.10), rgba(15, 23, 42, 0.96));
  border-color: rgba(147, 197, 253, 0.16);
}
.archive-support-card--feature .archive-support-media {
  background: linear-gradient(160deg, #1e3a8a 0%, #0f172a 100%);
}


/* ===== BINGEBAAZ MOVIE FEATURES SUPPORT OVERRIDE V1 ===== */
.archive-main .archive-support-card.archive-support-card--feature,
.archive-main .bb-card.bb-card-feature {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.10), rgba(15, 23, 42, 0.96)) !important;
  border-color: rgba(147, 197, 253, 0.18) !important;
}

/* ===== BINGEBAAZ AVAILABILITY LINE DARK THEME V1 — 2026-08-05 ===== */
body.single-post .single-post-content .availability-line {
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #111827, #0b1220) !important;
  color: #e5e7eb !important;
  border: 1px solid #334155 !important;
  border-left: 4px solid #14b8a6 !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18) !important;
}
body.single-post .single-post-content .availability-line strong {
  color: #fbbf24 !important;
}
body.single-post .single-post-content .availability-line a {
  color: #5eead4 !important;
}
/* ===== END BINGEBAAZ AVAILABILITY LINE DARK THEME V1 ===== */
