/*
Theme Name: The Pros Series (WPConvert)
Theme URI: https://wpconvert.ai
Author: WPConvert.ai
Author URI: https://wpconvert.ai
Description: This theme was automatically generated from your original site design using WPConvert.ai. It preserves your layout, colors, typography, header, footer, and page content, and makes it editable in WordPress.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpconvert
Tags: landing page, responsive, custom header, custom footer
*/

/* External Stylesheets - @import statements MUST come before any CSS rules */
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Karla:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* CSS Variables */
:root {
}

/* Inline Styles */

/* From the-pros/css/episodes.css */
/* ==========================================================
   THE PROS — episodes.css
   Episode cards, grids, and featured layouts
   ========================================================== */

/* ---- FEATURED EPISODES GRID (Homepage) ---- */
.episodes-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 20px;
}
}

/* Large card occupies both rows */
.ep-card--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

/* ---- BASE EPISODE CARD ---- */
.ep-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ep-card:hover {
  border-color: rgba(246, 78, 30, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.ep-card.ep-highlight {
  border-color: rgba(246, 78, 30, 0.25);
}

/* ---- EPISODE THUMBNAIL ---- */
.ep-thumb {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-3);
  flex-shrink: 0;
}
.ep-card--large .ep-thumb {
  aspect-ratio: 16/9;
}
.ep-card:not(.ep-card--large) .ep-thumb {
  aspect-ratio: 16/9;
}

.ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.ep-card:hover .ep-thumb img {
  transform: scale(1.05);
}

/* Fallback gradient when image missing */
.ep-thumb--fallback {
  background: linear-gradient(
    135deg,
    var(--charcoal-3) 0%,
    var(--charcoal-4) 40%,
    rgba(246, 78, 30, 0.1) 100%
  );
  min-height: 180px;
}

/* Overlay with play button */
.ep-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.ep-card:hover .ep-thumb-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.ep-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
  box-shadow: 0 4px 20px rgba(246, 78, 30, 0.5);
}
.ep-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.ep-card:hover .ep-play-btn {
  opacity: 1;
  transform: scale(1);
}
.ep-play-btn:hover {
  background: var(--orange-dark);
}

/* Episode number label */
.ep-number {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.65);
  padding: 3px 9px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* Season badge */
.ep-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 3px 9px;
  border-radius: 3px;
}
.ep-badge--new {
  background: var(--gold);
  color: var(--black);
}

/* ---- EPISODE INFO ---- */
.ep-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ep-card--large .ep-info {
  padding: 24px 28px 28px;
}

.ep-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap;
}
.ep-season-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Episode tag/badge */
.ep-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(246, 78, 30, 0.12);
  border: 1px solid rgba(246, 78, 30, 0.2);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.ep-tag--gold {
  color: var(--gold);
  background: rgba(232, 184, 75, 0.1);
  border-color: rgba(232, 184, 75, 0.2);
}

.ep-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
  font-family: var(--font-serif);
}
.ep-card--large .ep-title {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.ep-desc {
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  /* clamp to 3 lines on smaller cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-card--large .ep-desc {
  -webkit-line-clamp: 4;
  font-size: 0.9rem;
}

.ep-meta {
  margin-bottom: 16px;
}
.ep-cast {
  font-size: 0.75rem;
  color: rgba(247, 247, 247, 0.4);
  display: block;
  line-height: 1.5;
}
.ep-cast strong {
  color: rgba(247, 247, 247, 0.55);
  font-weight: 600;
}

/* ---- FEATURED CTA ---- */
.featured-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---- ALL EPISODES GRID (Episodes page) ---- */
.episodes-page {
  background: var(--charcoal);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* List style episode cards */
.ep-list-card {
  flex-direction: row;
  align-items: stretch;
}
.ep-list-card .ep-thumb {
  width: 220px;
  flex-shrink: 0;
  aspect-ratio: unset;
  min-height: 148px;
}
.ep-list-card .ep-thumb img {
  height: 100%;
  object-fit: cover;
}
.ep-list-card .ep-thumb--fallback {
  min-height: 148px;
}
.ep-list-card .ep-info {
  padding: 18px 20px;
}
.ep-list-card .ep-title {
  font-size: 1.05rem;
}
.ep-list-card .ep-desc {
  font-size: 0.82rem;
  -webkit-line-clamp: 2;
}

/* Full-width list layout for episodes page */
@media (min-width: 900px) {
  .episodes-grid {
    grid-template-columns: 1fr;
  }
  .ep-list-card .ep-thumb {
    width: 260px;
    min-height: 160px;
  }
  .ep-list-card .ep-desc {
    -webkit-line-clamp: 3;
  }
}

/* From the-pros/css/hero.css */
/* ==========================================================
   THE PROS — hero.css
   Hero section, field graphics, animations
   ========================================================== */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ---- Hero Background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Field Lines — mimics stadium overhead view */
.hero-field-lines {
  position: absolute;
  inset: 0;
  background:
    /* Center circle */
    radial-gradient(
      ellipse 30% 20% at 50% 50%,
      transparent 55%,
      rgba(255, 255, 255, 0.025) 55.5%,
      transparent 56%
    ),
    /* Vertical yard lines */
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent calc(100% / 10 - 1px),
        rgba(255, 255, 255, 0.035) calc(100% / 10 - 1px),
        rgba(255, 255, 255, 0.035) calc(100% / 10)
      ),
    /* Horizontal hash marks */
      repeating-linear-gradient(
        180deg,
        transparent,
        transparent calc(100% / 6 - 1px),
        rgba(255, 255, 255, 0.018) calc(100% / 6 - 1px),
        rgba(255, 255, 255, 0.018) calc(100% / 6)
      ),
    /* Goal lines */
      linear-gradient(
        90deg,
        transparent 8%,
        rgba(255, 255, 255, 0.04) 8.2%,
        transparent 8.4%,
        transparent 91.6%,
        rgba(255, 255, 255, 0.04) 91.8%,
        transparent 92%
      ),
    /* Base */
      radial-gradient(
        ellipse 120% 80% at 50% 30%,
        rgba(246, 78, 30, 0.08) 0%,
        transparent 60%
      ),
    var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.2) 0%,
    rgba(14, 14, 14, 0.05) 30%,
    rgba(14, 14, 14, 0.05) 65%,
    rgba(14, 14, 14, 0.8) 90%,
    rgba(14, 14, 14, 1) 100%
  );
}

/* Floating particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateY(-10px) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-180px) scale(0.5);
  }
}

/* ---- Hero Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: calc(var(--ticker-h) + 60px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-jersey-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(16rem, 30vw, 28rem);
  color: rgba(246, 78, 30, 0.04);
  line-height: 0.85;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  letter-spacing: -0.05em;
}

/* ---- Hero Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 78, 30, 0.12);
  border: 1px solid rgba(246, 78, 30, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(246, 78, 30, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(246, 78, 30, 0);
  }
}

/* ---- Hero Title ---- */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.title-line {
  display: block;
}
.title-small {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 6px;
}
.title-main {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(246, 78, 30, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-top: 16px;
  border-radius: 2px;
}

/* ---- Hero Subtitle ---- */
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ---- Hero Stats Bar ---- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ---- Hero Actions ---- */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Scroll Indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 1;
  }
  50% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 40px;
    opacity: 0;
  }
}

/* ---- PAGE HERO SHARED ---- */
.page-hero-bg .hero-field-lines {
  opacity: 0.6;
}
.page-hero-bg .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.45) 0%,
    rgba(14, 14, 14, 0.6) 100%
  );
}

/* ---- SEASON TABS BAR ---- */
.season-tabs-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(14, 14, 14, 0.97);
  border-bottom: 1px solid var(--charcoal-3);
  backdrop-filter: blur(12px);
}
.season-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.season-tabs::-webkit-scrollbar {
  display: none;
}
.season-tab {
  flex-shrink: 0;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.season-tab:hover {
  color: var(--white);
}
.season-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.tab-count {
  font-size: 0.68rem;
  color: var(--white-dim);
  margin-left: 6px;
  font-weight: 400;
}

/* ---- SEASON SECTION ---- */
.season-section {
  margin-bottom: 72px;
  transition: opacity 0.3s ease;
}
.season-section.hidden {
  display: none;
}
.season-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--charcoal-3);
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.season-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.season-num-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(246, 78, 30, 0.3);
}
.season-num-badge--2 {
  background: var(--charcoal-4);
  box-shadow: none;
}
.season-num-badge--3 {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.season-header h2 {
  font-size: 1.8rem;
  color: var(--white);
}
.season-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 4px;
}
.season-ep-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.ep-count-live {
  color: var(--orange);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* From the-pros/css/main.css */
/* ==========================================================
   THE PROS — main.css
   Base styles, typography, components, layout, sections
   ========================================================== */

/* ---- CSS Variables ---- */
:root {
  --orange: #f64e1e;
  --orange-dark: #d03e10;
  --orange-glow: rgba(246, 78, 30, 0.35);
  --black: #0e0e0e;
  --charcoal: #161616;
  --charcoal-2: #1e1e1e;
  --charcoal-3: #2a2a2a;
  --charcoal-4: #333;
  --white: #f7f7f7;
  --white-dim: rgba(247, 247, 247, 0.7);
  --white-faint: rgba(247, 247, 247, 0.12);
  --gold: #e8b84b;

  --font-serif: 'Old Standard TT', Georgia, serif;
  --font-sans: 'Karla', system-ui, sans-serif;
  --font-display: 'Bebas Neue', var(--font-serif);

  --nav-h: 72px;
  --ticker-h: 40px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.7);
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}
p {
  color: var(--white-dim);
}
em {
  font-style: italic;
  color: var(--orange);
}
strong {
  font-weight: 700;
  color: var(--white);
}

/* ---- Layout ---- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}

/* ---- Section Labels ---- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
  color: var(--white);
}
.section-subtitle {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.section-link:hover {
  opacity: 0.75;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 247, 247, 0.3);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246, 78, 30, 0.06);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  font-size: 0.78rem;
  padding: 8px 18px;
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 36px;
}
.btn-xl {
  font-size: 1.05rem;
  padding: 16px 44px;
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(14, 14, 14, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 400;
}
.logo-text strong {
  color: var(--orange);
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 8px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  border-radius: 4px;
  transition:
    color var(--transition),
    background var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--orange);
  background: var(--white-faint);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- SCORE TICKER ---- */
.score-ticker {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: var(--ticker-h);
  background: rgba(246, 78, 30, 0.9);
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}
.team-badge {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 800;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- TAGLINE BAND ---- */
.tagline-band {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--charcoal-3);
  border-bottom: 1px solid var(--charcoal-3);
}
.tagline-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: taglineScroll 20s linear infinite;
}
.tagline-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--charcoal-4);
}
.tag-dot {
  color: var(--orange) !important;
}
@keyframes taglineScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--charcoal-2);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text p {
  margin-bottom: 16px;
}
.about-strip-text .btn-outline {
  margin-top: 8px;
}
.about-strip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.world-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.world-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.world-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.world-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.world-card p {
  font-size: 0.84rem;
  line-height: 1.5;
}

/* ---- SEASONS OVERVIEW ---- */
.seasons-overview {
  background: var(--black);
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.season-block {
  background: var(--charcoal-2);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.season-block:hover {
  background: var(--charcoal-3);
}
.season-number-bg {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.season-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.season-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.season-block h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.season-block p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.season-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.season-stats span {
  font-size: 0.82rem;
  color: var(--white-dim);
}
.season-stats strong {
  color: var(--orange);
}

/* ---- GALLERY STRIP ---- */
.gallery-strip {
  background: var(--charcoal);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-3);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 3px;
}
.gallery-item--fallback {
  background: var(--charcoal-3);
  min-height: 160px;
}

/* ---- WATCH CTA ---- */
.watch-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.watch-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(246, 78, 30, 0.15) 0%,
      transparent 70%
    ),
    var(--black);
}
.watch-cta .container {
  position: relative;
  z-index: 1;
}
.watch-cta-content {
  max-width: 640px;
  margin: 0 auto;
}
.watch-cta-content h2 {
  margin-bottom: 16px;
}
.watch-cta-content p {
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
.page-hero-content h1 {
  margin: 8px 0 12px;
}
.page-hero-content p {
  font-size: 1.1rem;
}

/* ---- ABOUT PAGE ---- */
.about-overview {
  background: var(--charcoal-2);
}
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-overview-text p {
  margin-bottom: 16px;
}
.lead-text {
  font-size: 1.15rem !important;
  color: var(--white) !important;
  font-family: var(--font-serif);
  margin-bottom: 20px !important;
  line-height: 1.5;
}
.about-overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-4);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-box:hover {
  border-color: var(--orange);
}
.stat-box-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Worlds */
.worlds-section {
  background: var(--black);
}
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.world-detail-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.world-detail-card:hover {
  border-color: rgba(246, 78, 30, 0.4);
  transform: translateY(-4px);
}
.wdc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wdc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.wdc-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.world-detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--white);
}
.world-detail-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.wdc-chars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.char-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--charcoal-3);
  color: var(--white-dim);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--charcoal-4);
}

/* Production section */
.production-section {
  background: var(--charcoal-2);
}
.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.production-text p {
  margin-bottom: 16px;
}
.production-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal-3);
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--charcoal-4);
  transition:
    color var(--transition),
    border-color var(--transition);
}
.social-pill:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Timeline */
.production-season-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
  border-left: 2px solid var(--charcoal-4);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--charcoal-4);
  border: 2px solid var(--charcoal-3);
}
.timeline-dot--active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.timeline-content h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.timeline-content p {
  font-size: 0.88rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-3);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-field-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 6 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 6 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 6)
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-4);
  border-radius: 50%;
  color: var(--white-dim);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(246, 78, 30, 0.1);
}
.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-nav-col ul li {
  margin-bottom: 10px;
}
.footer-nav-col ul li a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer-nav-col ul li a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid var(--charcoal-3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--white-dim);
}
.footer-credits {
  color: rgba(247, 247, 247, 0.35) !important;
}

/* From the-pros/css/responsive.css */
/* ==========================================================
   THE PROS — responsive.css
   Media queries and mobile adaptations
   ========================================================== */

/* ---- Large Desktop (1400px+) ---- */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1100px;
  }
  .about-strip-grid {
    gap: 100px;
  }
}

/* ---- Tablet Landscape / Small Desktop (1100px) ---- */
@media (max-width: 1100px) {
  .about-strip-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-strip-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .seasons-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .season-block {
    padding: 40px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .production-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- Tablet (900px) ---- */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  .section-pad {
    padding: 60px 0;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 32px;
    border-bottom: 1px solid var(--charcoal-3);
    backdrop-filter: blur(16px);
    align-items: flex-start;
    margin-left: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 0;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 12px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* Dropdown on mobile */
  .nav-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--charcoal-3);
    margin: 0;
    border-radius: 0;
    padding: 0 24px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-toggle {
    pointer-events: all;
  }
  .dropdown-menu li a {
    padding: 10px 0;
  }

  /* Hero */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    padding: 12px 20px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Featured episodes grid */
  .episodes-featured-grid {
    grid-template-columns: 1fr;
  }
  .ep-card--large {
    grid-row: span 1;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }

  /* About */
  .about-strip-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .worlds-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    min-height: 280px;
  }
}

/* ---- Mobile (640px) ---- */
@media (max-width: 640px) {
  .section-pad {
    padding: 48px 0;
  }

  /* Ticker */
  .score-ticker {
    display: none;
  }
  .hero-content {
    padding-top: 80px;
  }

  /* Stats bar */
  .hero-stats {
    display: none;
  }

  /* Hero title */
  .title-main {
    letter-spacing: 0.02em;
  }

  /* About strip cards */
  .about-strip-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  /* Episode list cards on mobile */
  .ep-list-card {
    flex-direction: column;
  }
  .ep-list-card .ep-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: unset;
  }

  /* Season block */
  .season-block {
    padding: 32px 24px;
  }

  /* Worlds grid */
  .world-detail-card {
    padding: 28px 24px;
  }

  /* About stats */
  .about-overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA buttons */
  .cta-button-group {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Small Mobile (480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .tagline-band .tagline-track span {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .season-tabs {
    gap: 0;
  }
  .season-tab {
    padding: 14px 16px;
    font-size: 0.74rem;
  }

  .season-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .season-header-left {
    gap: 12px;
  }
  .season-num-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }

  .about-strip-cards {
    grid-template-columns: 1fr;
  }

  .worlds-grid {
    grid-template-columns: 1fr;
  }
  .about-overview-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Print Styles ---- */
@media print {
  .navbar,
  .score-ticker,
  .tagline-band,
  .watch-cta,
  .hero-particles,
  .season-tabs-bar {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .container {
    max-width: 100%;
  }
}

/* Source extracted CSS */

/* From the-pros/css/episodes.css */
/* ==========================================================
   THE PROS — episodes.css
   Episode cards, grids, and featured layouts
   ========================================================== */

/* ---- FEATURED EPISODES GRID (Homepage) ---- */
.episodes-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Large card occupies both rows */
.ep-card--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

/* ---- BASE EPISODE CARD ---- */
.ep-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ep-card:hover {
  border-color: rgba(246, 78, 30, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.ep-card.ep-highlight {
  border-color: rgba(246, 78, 30, 0.25);
}

/* ---- EPISODE THUMBNAIL ---- */
.ep-thumb {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-3);
  flex-shrink: 0;
}
.ep-card--large .ep-thumb {
  aspect-ratio: 16/9;
}
.ep-card:not(.ep-card--large) .ep-thumb {
  aspect-ratio: 16/9;
}

.ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.ep-card:hover .ep-thumb img {
  transform: scale(1.05);
}

/* Fallback gradient when image missing */
.ep-thumb--fallback {
  background: linear-gradient(
    135deg,
    var(--charcoal-3) 0%,
    var(--charcoal-4) 40%,
    rgba(246, 78, 30, 0.1) 100%
  );
  min-height: 180px;
}

/* Overlay with play button */
.ep-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.ep-card:hover .ep-thumb-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.ep-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
  box-shadow: 0 4px 20px rgba(246, 78, 30, 0.5);
}
.ep-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}
.ep-card:hover .ep-play-btn {
  opacity: 1;
  transform: scale(1);
}
.ep-play-btn:hover {
  background: var(--orange-dark);
}

/* Episode number label */
.ep-number {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.65);
  padding: 3px 9px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* Season badge */
.ep-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 3px 9px;
  border-radius: 3px;
}
.ep-badge--new {
  background: var(--gold);
  color: var(--black);
}

/* ---- EPISODE INFO ---- */
.ep-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ep-card--large .ep-info {
  padding: 24px 28px 28px;
}

.ep-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
  flex-wrap: wrap;
}
.ep-season-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Episode tag/badge */
.ep-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(246, 78, 30, 0.12);
  border: 1px solid rgba(246, 78, 30, 0.2);
  padding: 3px 10px;
  border-radius: 3px;
}
.ep-tag--gold {
  color: var(--gold);
  background: rgba(232, 184, 75, 0.1);
  border-color: rgba(232, 184, 75, 0.2);
}

.ep-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
  font-family: var(--font-serif);
}
.ep-card--large .ep-title {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.ep-desc {
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  /* clamp to 3 lines on smaller cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-card--large .ep-desc {
  -webkit-line-clamp: 4;
  font-size: 0.9rem;
}

.ep-meta {
  margin-bottom: 16px;
}
.ep-cast {
  font-size: 0.75rem;
  color: rgba(247, 247, 247, 0.4);
  display: block;
  line-height: 1.5;
}
.ep-cast strong {
  color: rgba(247, 247, 247, 0.55);
  font-weight: 600;
}

/* ---- FEATURED CTA ---- */
.featured-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---- ALL EPISODES GRID (Episodes page) ---- */
.episodes-page {
  background: var(--charcoal);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* List style episode cards */
.ep-list-card {
  flex-direction: row;
  align-items: stretch;
}
.ep-list-card .ep-thumb {
  width: 220px;
  flex-shrink: 0;
  aspect-ratio: unset;
  min-height: 148px;
}
.ep-list-card .ep-thumb img {
  height: 100%;
  object-fit: cover;
}
.ep-list-card .ep-thumb--fallback {
  min-height: 148px;
}
.ep-list-card .ep-info {
  padding: 18px 20px;
}
.ep-list-card .ep-title {
  font-size: 1.05rem;
}
.ep-list-card .ep-desc {
  font-size: 0.82rem;
  -webkit-line-clamp: 2;
}

/* Full-width list layout for episodes page */
@media (min-width: 900px) {
  .episodes-grid {
    grid-template-columns: 1fr;
  }
  .ep-list-card .ep-thumb {
    width: 260px;
    min-height: 160px;
  }
  .ep-list-card .ep-desc {
    -webkit-line-clamp: 3;
  }
}

/* From the-pros/css/hero.css */
/* ==========================================================
   THE PROS — hero.css
   Hero section, field graphics, animations
   ========================================================== */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ---- Hero Background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Field Lines — mimics stadium overhead view */
.hero-field-lines {
  position: absolute;
  inset: 0;
  background:
    /* Center circle */
    radial-gradient(
      ellipse 30% 20% at 50% 50%,
      transparent 55%,
      rgba(255, 255, 255, 0.025) 55.5%,
      transparent 56%
    ),
    /* Vertical yard lines */
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent calc(100% / 10 - 1px),
        rgba(255, 255, 255, 0.035) calc(100% / 10 - 1px),
        rgba(255, 255, 255, 0.035) calc(100% / 10)
      ),
    /* Horizontal hash marks */
      repeating-linear-gradient(
        180deg,
        transparent,
        transparent calc(100% / 6 - 1px),
        rgba(255, 255, 255, 0.018) calc(100% / 6 - 1px),
        rgba(255, 255, 255, 0.018) calc(100% / 6)
      ),
    /* Goal lines */
      linear-gradient(
        90deg,
        transparent 8%,
        rgba(255, 255, 255, 0.04) 8.2%,
        transparent 8.4%,
        transparent 91.6%,
        rgba(255, 255, 255, 0.04) 91.8%,
        transparent 92%
      ),
    /* Base */
      radial-gradient(
        ellipse 120% 80% at 50% 30%,
        rgba(246, 78, 30, 0.08) 0%,
        transparent 60%
      ),
    var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.2) 0%,
    rgba(14, 14, 14, 0.05) 30%,
    rgba(14, 14, 14, 0.05) 65%,
    rgba(14, 14, 14, 0.8) 90%,
    rgba(14, 14, 14, 1) 100%
  );
}

/* Floating particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateY(-10px) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-180px) scale(0.5);
  }
}

/* ---- Hero Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: calc(var(--ticker-h) + 60px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-jersey-bg {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(16rem, 30vw, 28rem);
  color: rgba(246, 78, 30, 0.04);
  line-height: 0.85;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  letter-spacing: -0.05em;
}

/* ---- Hero Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 78, 30, 0.12);
  border: 1px solid rgba(246, 78, 30, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(246, 78, 30, 0.6);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(246, 78, 30, 0);
  }
}

/* ---- Hero Title ---- */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.title-line {
  display: block;
}
.title-small {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 6px;
}
.title-main {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: var(--white);
  text-shadow:
    0 0 60px rgba(246, 78, 30, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-top: 16px;
  border-radius: 2px;
}

/* ---- Hero Subtitle ---- */
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ---- Hero Stats Bar ---- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ---- Hero Actions ---- */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Scroll Indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 1;
  }
  50% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 40px;
    opacity: 0;
  }
}

/* ---- PAGE HERO SHARED ---- */
.page-hero-bg .hero-field-lines {
  opacity: 0.6;
}
.page-hero-bg .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.45) 0%,
    rgba(14, 14, 14, 0.6) 100%
  );
}

/* ---- SEASON TABS BAR ---- */
.season-tabs-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(14, 14, 14, 0.97);
  border-bottom: 1px solid var(--charcoal-3);
  backdrop-filter: blur(12px);
}
.season-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.season-tabs::-webkit-scrollbar {
  display: none;
}
.season-tab {
  flex-shrink: 0;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.season-tab:hover {
  color: var(--white);
}
.season-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.tab-count {
  font-size: 0.68rem;
  color: var(--white-dim);
  margin-left: 6px;
  font-weight: 400;
}

/* ---- SEASON SECTION ---- */
.season-section {
  margin-bottom: 72px;
  transition: opacity 0.3s ease;
}
.season-section.hidden {
  display: none;
}
.season-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--charcoal-3);
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.season-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.season-num-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(246, 78, 30, 0.3);
}
.season-num-badge--2 {
  background: var(--charcoal-4);
  box-shadow: none;
}
.season-num-badge--3 {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.season-header h2 {
  font-size: 1.8rem;
  color: var(--white);
}
.season-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 4px;
}
.season-ep-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.ep-count-live {
  color: var(--orange);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* From the-pros/css/main.css */
/* ==========================================================
   THE PROS — main.css
   Base styles, typography, components, layout, sections
   ========================================================== */

/* ---- CSS Variables ---- */
:root {
  --orange: #f64e1e;
  --orange-dark: #d03e10;
  --orange-glow: rgba(246, 78, 30, 0.35);
  --black: #0e0e0e;
  --charcoal: #161616;
  --charcoal-2: #1e1e1e;
  --charcoal-3: #2a2a2a;
  --charcoal-4: #333;
  --white: #f7f7f7;
  --white-dim: rgba(247, 247, 247, 0.7);
  --white-faint: rgba(247, 247, 247, 0.12);
  --gold: #e8b84b;

  --font-serif: 'Old Standard TT', Georgia, serif;
  --font-sans: 'Karla', system-ui, sans-serif;
  --font-display: 'Bebas Neue', var(--font-serif);

  --nav-h: 72px;
  --ticker-h: 40px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.7);
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}
p {
  color: var(--white-dim);
}
em {
  font-style: italic;
  color: var(--orange);
}
strong {
  font-weight: 700;
  color: var(--white);
}

/* ---- Layout ---- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}

/* ---- Section Labels ---- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
  color: var(--white);
}
.section-subtitle {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.section-link:hover {
  opacity: 0.75;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 247, 247, 0.3);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246, 78, 30, 0.06);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  font-size: 0.78rem;
  padding: 8px 18px;
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 36px;
}
.btn-xl {
  font-size: 1.05rem;
  padding: 16px 44px;
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(14, 14, 14, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white);
  font-weight: 400;
}
.logo-text strong {
  color: var(--orange);
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  margin-left: 8px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: var(--shadow);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  border-radius: 4px;
  transition:
    color var(--transition),
    background var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--orange);
  background: var(--white-faint);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- SCORE TICKER ---- */
.score-ticker {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: var(--ticker-h);
  background: rgba(246, 78, 30, 0.9);
  overflow: hidden;
  z-index: 10;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}
.team-badge {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 800;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- TAGLINE BAND ---- */
.tagline-band {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--charcoal-3);
  border-bottom: 1px solid var(--charcoal-3);
}
.tagline-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: taglineScroll 20s linear infinite;
}
.tagline-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--charcoal-4);
}
.tag-dot {
  color: var(--orange) !important;
}
@keyframes taglineScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--charcoal-2);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text p {
  margin-bottom: 16px;
}
.about-strip-text .btn-outline {
  margin-top: 8px;
}
.about-strip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.world-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.world-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.world-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.world-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.world-card p {
  font-size: 0.84rem;
  line-height: 1.5;
}

/* ---- SEASONS OVERVIEW ---- */
.seasons-overview {
  background: var(--black);
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.season-block {
  background: var(--charcoal-2);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.season-block:hover {
  background: var(--charcoal-3);
}
.season-number-bg {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.season-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.season-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.season-block h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.season-block p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.season-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.season-stats span {
  font-size: 0.82rem;
  color: var(--white-dim);
}
.season-stats strong {
  color: var(--orange);
}

/* ---- GALLERY STRIP ---- */
.gallery-strip {
  background: var(--charcoal);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-3);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 3px;
}
.gallery-item--fallback {
  background: var(--charcoal-3);
  min-height: 160px;
}

/* ---- WATCH CTA ---- */
.watch-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.watch-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(246, 78, 30, 0.15) 0%,
      transparent 70%
    ),
    var(--black);
}
.watch-cta .container {
  position: relative;
  z-index: 1;
}
.watch-cta-content {
  max-width: 640px;
  margin: 0 auto;
}
.watch-cta-content h2 {
  margin-bottom: 16px;
}
.watch-cta-content p {
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
.page-hero-content h1 {
  margin: 8px 0 12px;
}
.page-hero-content p {
  font-size: 1.1rem;
}

/* ---- ABOUT PAGE ---- */
.about-overview {
  background: var(--charcoal-2);
}
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-overview-text p {
  margin-bottom: 16px;
}
.lead-text {
  font-size: 1.15rem !important;
  color: var(--white) !important;
  font-family: var(--font-serif);
  margin-bottom: 20px !important;
  line-height: 1.5;
}
.about-overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-4);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-box:hover {
  border-color: var(--orange);
}
.stat-box-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Worlds */
.worlds-section {
  background: var(--black);
}
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.world-detail-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.world-detail-card:hover {
  border-color: rgba(246, 78, 30, 0.4);
  transform: translateY(-4px);
}
.wdc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wdc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.wdc-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.world-detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--white);
}
.world-detail-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.wdc-chars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.char-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--charcoal-3);
  color: var(--white-dim);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--charcoal-4);
}

/* Production section */
.production-section {
  background: var(--charcoal-2);
}
.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.production-text p {
  margin-bottom: 16px;
}
.production-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal-3);
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--charcoal-4);
  transition:
    color var(--transition),
    border-color var(--transition);
}
.social-pill:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Timeline */
.production-season-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
  border-left: 2px solid var(--charcoal-4);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--charcoal-4);
  border: 2px solid var(--charcoal-3);
}
.timeline-dot--active {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.timeline-content h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.timeline-content p {
  font-size: 0.88rem;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-3);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-field-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(100% / 6 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 6 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 6)
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-dim);
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-4);
  border-radius: 50%;
  color: var(--white-dim);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(246, 78, 30, 0.1);
}
.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-nav-col ul li {
  margin-bottom: 10px;
}
.footer-nav-col ul li a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer-nav-col ul li a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid var(--charcoal-3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--white-dim);
}
.footer-credits {
  color: rgba(247, 247, 247, 0.35) !important;
}

/* From the-pros/css/responsive.css */
/* ==========================================================
   THE PROS — responsive.css
   Media queries and mobile adaptations
   ========================================================== */

/* ---- Large Desktop (1400px+) ---- */
@media (min-width: 1400px) {
  .hero-content {
    max-width: 1100px;
  }
  .about-strip-grid {
    gap: 100px;
  }
}

/* ---- Tablet Landscape / Small Desktop (1100px) ---- */
@media (max-width: 1100px) {
  .about-strip-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-strip-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .seasons-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .season-block {
    padding: 40px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .production-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- Tablet (900px) ---- */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  .section-pad {
    padding: 60px 0;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 32px;
    border-bottom: 1px solid var(--charcoal-3);
    backdrop-filter: blur(16px);
    align-items: flex-start;
    margin-left: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 0;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 12px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* Dropdown on mobile */
  .nav-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--charcoal-3);
    margin: 0;
    border-radius: 0;
    padding: 0 24px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-toggle {
    pointer-events: all;
  }
  .dropdown-menu li a {
    padding: 10px 0;
  }

  /* Hero */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    padding: 12px 20px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Featured episodes grid */
  .episodes-featured-grid {
    grid-template-columns: 1fr;
  }
  .ep-card--large {
    grid-row: span 1;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }

  /* About */
  .about-strip-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .worlds-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    min-height: 280px;
  }
}

/* ---- Mobile (640px) ---- */
@media (max-width: 640px) {
  .section-pad {
    padding: 48px 0;
  }

  /* Ticker */
  .score-ticker {
    display: none;
  }
  .hero-content {
    padding-top: 80px;
  }

  /* Stats bar */
  .hero-stats {
    display: none;
  }

  /* Hero title */
  .title-main {
    letter-spacing: 0.02em;
  }

  /* About strip cards */
  .about-strip-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  /* Episode list cards on mobile */
  .ep-list-card {
    flex-direction: column;
  }
  .ep-list-card .ep-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: unset;
  }

  /* Season block */
  .season-block {
    padding: 32px 24px;
  }

  /* Worlds grid */
  .world-detail-card {
    padding: 28px 24px;
  }

  /* About stats */
  .about-overview-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA buttons */
  .cta-button-group {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Small Mobile (480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .tagline-band .tagline-track span {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
  }

  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .season-tabs {
    gap: 0;
  }
  .season-tab {
    padding: 14px 16px;
    font-size: 0.74rem;
  }

  .season-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .season-header-left {
    gap: 12px;
  }
  .season-num-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }

  .about-strip-cards {
    grid-template-columns: 1fr;
  }

  .worlds-grid {
    grid-template-columns: 1fr;
  }
  .about-overview-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Print Styles ---- */
@media print {
  .navbar,
  .score-ticker,
  .tagline-band,
  .watch-cta,
  .hero-particles,
  .season-tabs-bar {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .container {
    max-width: 100%;
  }
}

/* WordPress-specific styles */
.wp-block-group {
  margin-bottom: 1rem;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-button {
  margin-bottom: 1rem;
}

/* CRITICAL: Reset WordPress default constraints that break layouts */
/* WordPress adds default max-width to containers which breaks original layouts */
.entry-content,
.site-content,
.content-area {
  max-width: none !important;
  width: 100% !important;
}

/* EC-CONTAIN-001: Only override .container / section max-width when the site's
   own CSS does NOT define them. Tailwind and Bootstrap sites intentionally set
   .container { max-width: … } — blasting it with !important breaks every section. */
section,
.section {
  max-width: none !important;
}

.container {
  max-width: none !important;
}

/* EC-ANIM-008 / EC-ANIM-009: Scroll-reveal utilities (.scroll-fade-up etc.) start at opacity:0
   and transition to visible when an IntersectionObserver adds .visible (injected in functions.php).
   Carousels inside scroll-reveal wrappers must be forced visible immediately so Embla can measure. */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}

/* EC-SCROLL-001: Auto-scroll marquee CSS (always included - lightweight, no-op if no marquee elements) */

/* EC-SCROLL-001: Auto-scroll gallery marquee animation */
/* Replaces React requestAnimationFrame/scrollLeft with pure CSS animation */
.wpconvert-marquee-container {
  overflow: hidden !important;
}
.wpconvert-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wpconvert-marquee 30s linear infinite;
}
@keyframes wpconvert-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause on hover for accessibility */
.wpconvert-marquee-container:hover .wpconvert-marquee-track {
  animation-play-state: paused;
}
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .wpconvert-marquee-track {
    animation: none;
    overflow-x: auto;
  }
}

/* WPConvert Tabs Component CSS */

/* WPConvert Tabs Component */
.wpconvert-tabs {
  max-width: 64rem;
  margin: 0 auto;
}

.wpconvert-tab-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .wpconvert-tab-nav {
    grid-template-columns: repeat(6, 1fr);
  }
}

.wpconvert-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpconvert-tab-btn:hover {
  border-color: hsl(var(--primary) / 0.5);
  color: hsl(var(--foreground));
}

.wpconvert-tab-btn.active {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.wpconvert-tab-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
}

.wpconvert-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wpconvert-tab-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.wpconvert-tab-viewport {
  position: relative;
  display: flex;
  align-items: center;
}

.wpconvert-tab-content {
  flex: 1;
  position: relative;
}

.wpconvert-tab-panel {
  display: none;
  padding: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    hsl(var(--card)) 0%,
    hsl(var(--muted) / 0.3) 100%
  );
  border: 1px solid hsl(var(--border));
  text-align: center;
  animation: wpconvert-tab-fade-in 0.3s ease;
}

.wpconvert-tab-panel.active {
  display: block;
}

@keyframes wpconvert-tab-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpconvert-tab-icon-large {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpconvert-tab-icon-large svg {
  width: 100%;
  height: 100%;
  color: hsl(var(--primary));
}

.wpconvert-tab-title {
  font-family: var(--font-display, inherit);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-title {
    font-size: 1.875rem;
  }
}

.wpconvert-tab-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.wpconvert-tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.wpconvert-tab-arrow:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.wpconvert-tab-prev {
  left: -1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-prev {
    left: -1.5rem;
  }
}

.wpconvert-tab-next {
  right: -1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-next {
    right: -1.5rem;
  }
}

.wpconvert-tab-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.wpconvert-tab-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: hsl(var(--muted-foreground) / 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpconvert-tab-dot:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

.wpconvert-tab-dot.active {
  background: hsl(var(--primary));
  width: 2rem;
  border-radius: 0.375rem;
}

/* EC-MSTEP-001: Multi-step form wizard CSS */

/* EC-MSTEP-001: Multi-step form wizard */
.wpconvert-multistep-form {
  width: 100%;
}
.wpconvert-step-panel {
  display: none;
}
.wpconvert-step-panel.active {
  display: block;
  animation: wpconvert-step-fade-in 0.25s ease;
}
@keyframes wpconvert-step-fade-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wpconvert-step-progress-fill {
  transition: width 0.4s ease-out;
}
/* Signature canvas */
canvas[data-wpc-sig-init] {
  width: 100%;
  min-height: 150px;
  border: 2px solid var(--border, #e5e7eb);
  border-radius: 1rem;
  background: #fff;
  cursor: crosshair;
  touch-action: none;
}

/* EC-CALC-001: Interactive calculator CSS */

/* EC-CALC-001: Interactive calculator */
[data-wpc-calc] input[type='range'] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
[data-wpc-calc] input[type='range']:focus {
  outline: none;
}
[data-wpc-calc] [data-wpc-calc-toggle].wpc-calc-toggle-active {
  opacity: 1;
}
[data-wpc-calc] [data-wpc-calc-toggle]:not(.wpc-calc-toggle-active) {
  opacity: 0.6;
}

/* CRITICAL FIX: Ensure gradient overlays respect their default hidden state */
/* NOTE: The main fix is in cleanHtmlContent() which corrects captured hover states */
/* These CSS rules are a FALLBACK to ensure overlays stay hidden if any slip through */

/* Keep gradient overlays hidden - they're decorative hover effects */
.group [class*='absolute'][class*='inset-0'][class*='bg-gradient'].opacity-0 {
  opacity: 0 !important;
}

/* Keep bottom accent bars hidden by default */
.group [class*='absolute'][class*='bottom-0'][class*='bg-gradient'].scale-x-0 {
  transform: scaleX(0) !important;
}

/* Reset WordPress default margins that break spacing */
.entry-content > *:first-child,
.site-content > *:first-child {
  margin-top: 0 !important;
}

/* EC-DARK-001: In dark-themed sites (html.dark), containers with explicit bg-white
   backgrounds need dark text. The .dark scope sets --foreground to a light color,
   making text invisible on white cards. Reset to :root-scope (light) variable values. */
.dark .bg-white,
.dark [class*='bg-white'] {
  --foreground: 222.2 84% 4.9%;
  --muted-foreground: 215.4 16.3% 46.9%;
  color: hsl(222.2 84% 4.9%);
}
.dark .bg-white .text-foreground,
.dark [class*='bg-white'] .text-foreground,
.dark .bg-white [class*='text-foreground'],
.dark [class*='bg-white'] [class*='text-foreground'] {
  color: hsl(222.2 84% 4.9%);
}

/* Navigation Menu Styling - Universal for all dropdown patterns */
/* Reset ALL menu items */
.menu-item,
li.menu-item,
li.menu-item-type-post_type,
li.menu-item-type-custom,
li.menu-item-object-page,
li.menu-item-has-children {
  position: relative;
  list-style: none !important;
  margin: 0;
}

/* CRITICAL: Top-level menu MUST be horizontal - Maximum specificity */
/* NOTE: nav ul#wpconvert-primary-ul is NOT included here to avoid conflicting with .main-nav styling */
/* EC-NAV-095: Do NOT set gap here. A fixed gap with !important (previously 0.25rem, briefly 2rem) overrides
   menus.json ulClasses / Tailwind (e.g. gap-8) and breaks diverse nav densities. Spacing comes from ulClasses. */
header ul#wpconvert-primary-ul,
#wpconvert-primary-ul,
#wpconvert-primary-ul.menu,
ul#wpconvert-primary-ul.menu,
ul.menu:not(.submenu):not(.sub-menu) {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

/* CRITICAL: Preserve original .main-nav styling for static sites - MUST come AFTER generic rules */
/* MAXIMUM specificity with header prefix ensures this overrides ALL other rules */
header nav.main-nav ul#wpconvert-primary-ul,
header .main-nav ul#wpconvert-primary-ul,
nav.main-nav ul#wpconvert-primary-ul,
.main-nav #wpconvert-primary-ul,
.main-nav ul#wpconvert-primary-ul {
  /* Inherit the original .main-nav ul styles */
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

/* Preserve original .main-nav link styling */
header nav.main-nav ul#wpconvert-primary-ul a,
header .main-nav ul#wpconvert-primary-ul a,
nav.main-nav ul#wpconvert-primary-ul a,
.main-nav #wpconvert-primary-ul a,
.main-nav ul#wpconvert-primary-ul a {
  text-decoration: none;
  font-weight: 500;
}

/* CRITICAL: Top-level items MUST be inline - Maximum specificity for ALL WordPress classes */
/* NOTE: nav ul#wpconvert-primary-ul > li is NOT included to avoid conflicting with .main-nav */
header ul#wpconvert-primary-ul > li,
#wpconvert-primary-ul > li,
#wpconvert-primary-ul > li.menu-item,
#wpconvert-primary-ul > li.menu-item-type-post_type,
#wpconvert-primary-ul > li.menu-item-type-custom,
#wpconvert-primary-ul > li.menu-item-object-page,
#wpconvert-primary-ul > li.menu-item-object-custom,
#wpconvert-primary-ul > li.menu-item-has-children,
#wpconvert-primary-ul > li.current-menu-item,
#wpconvert-primary-ul > li.current_page_item,
#wpconvert-primary-ul > li.current-menu-ancestor,
#wpconvert-primary-ul.menu > li,
ul.menu:not(.submenu):not(.sub-menu) > li,
body #wpconvert-primary-ul > li {
  display: inline-block !important;
  position: relative !important;
  flex-shrink: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  vertical-align: middle !important;
  float: none !important;
  width: auto !important;
  clear: none !important;
}

/* Top-level links maintain their button appearance */
#wpconvert-primary-ul > .menu-item > a {
  /* Keep original classes for styling */
}

/* Hide submenus by default with high z-index - CRITICAL for all sites */
.menu-item.menu-item-has-children > .submenu,
.menu-item.menu-item-has-children > .sub-menu,
.menu-item-has-children > ul,
li.menu-item-has-children > ul {
  display: none !important; /* Important to override inline-flex and other display classes */
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: rgba(14, 14, 14, 0.95) !important;
  min-width: 200px !important;
  max-width: 500px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  z-index: 9999 !important; /* Higher than content */
  padding: 0.5rem 0 !important;
  list-style: none !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0.375rem !important;
}

/* Show on hover/focus - Maximum specificity to override everything */
.menu-item.menu-item-has-children:hover > .submenu,
.menu-item.menu-item-has-children:hover > .sub-menu,
.menu-item.menu-item-has-children:hover > ul,
.menu-item.menu-item-has-children:focus-within > .submenu,
.menu-item.menu-item-has-children:focus-within > .sub-menu,
.menu-item.menu-item-has-children:focus-within > ul,
li.menu-item-has-children:hover > ul,
li.menu-item-has-children:focus-within > ul {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force submenu items to display as block - Override ALL WordPress and utility classes */
.submenu li,
.submenu .menu-item,
.submenu .menu-item-type-post_type,
.submenu .menu-item-type-custom,
.submenu .menu-item-object-page,
.submenu .menu-item-object-custom,
.submenu .current-menu-item,
.submenu .current_page_item,
ul.sub-menu li,
ul.sub-menu .menu-item,
body .submenu li {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  flex-direction: column !important;
  list-style: none !important;
  float: none !important;
  clear: both !important;
}

.submenu .menu-item a,
.submenu a,
ul.sub-menu a {
  display: block !important;
  width: 100% !important;
  padding: 0.5rem 1rem !important;
  white-space: nowrap !important;
  text-align: left !important;
}

/* Override ANY utility classes that could break submenu layout */
.submenu .menu-item.inline-flex,
.submenu .menu-item.flex,
.submenu .menu-item.grid,
.submenu li.inline-flex,
.submenu li.flex,
.submenu li.grid,
.submenu .inline-flex,
.submenu .flex,
.submenu .grid {
  display: block !important;
  flex-direction: column !important;
}

.submenu .menu-item a.inline-flex,
.submenu .menu-item a.flex,
.submenu .menu-item a.grid,
.submenu a.inline-flex,
.submenu a.flex,
.submenu a.grid {
  display: block !important;
}

/* Ensure submenu container is vertical */
.submenu,
ul.sub-menu {
  flex-direction: column !important;
  display: block !important;
}

/* FLAT NAV ACTIVE STATE - For React/Vite sites converted to wp_nav_menu() */
/* EC-NAV-010: Dynamic current page highlighting */
/* The .wpconvert-active-link class is added by WPConvert_Flat_Menu_Walker to current page links */
.wpconvert-active-link {
  /* Default active styling - will be enhanced by extracted classes if available */
  font-weight: 600;
}

/* EC-NAV-010: When active link has text-primary class, override any text-foreground from base */
/* This ensures the active item shows the highlighted color (text-primary = green/brand color) */
a.wpconvert-active-link.text-primary,
.current-menu-item > a.text-primary,
.current_page_item > a.text-primary {
  color: hsl(var(--primary)) !important;
}

/* EC-NAV-010: Ensure inactive items don't get active color */
/* Links WITHOUT wpconvert-active-link should use text-foreground */
nav a.text-foreground:not(.wpconvert-active-link):not(.text-primary) {
  color: hsl(var(--foreground)) !important;
}

/* Also style current-menu-item for flat navs */
.current-menu-item > a,
.current_page_item > a,
a.current-menu-item,
a.wpconvert-active-link {
  /* The actual active styling comes from extracted activeLinkClasses */
  /* These are fallback styles if extraction doesn't provide specific classes */
}

/* Flat nav submenu styling */
.wpconvert-flat-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  display: none;
  z-index: 9999;
}

.wpconvert-flat-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* Hide Radix UI viewport containers and similar dropdown containers - Universal */
[data-radix-navigation-menu-viewport],
[class*='viewport'][data-state='open'],
[class*='popover'][data-state='open'],
.radix-navigation-menu-viewport,
nav > div[class*='absolute'][class*='top-full'] {
  display: none !important;
  visibility: hidden !important;
}

/* EC-DIALOG-001: Hide Radix Sheet/Dialog overlays and panels that survive into converted themes */
/* These are interactive React components captured in open state during snapshot */
[role='dialog'][class*='fixed'],
[data-radix-dialog-content][class*='fixed'],
div[data-state='open'][class*='fixed'][class*='inset-0'][class*='bg-black'],
div[data-state='open'][class*='fixed'][class*='inset-0'][class*='backdrop'] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .menu-item.menu-item-has-children > .submenu {
    position: static;
    box-shadow: none;
  }
}

/* CRITICAL: Ensure header and navigation are above hero/content sections */
/* Only apply relative positioning if nav is NOT sticky/fixed */
/* Exclude #wpconvert-mobile-nav — it must stay position:fixed as an overlay */
header:not([class*='sticky']):not([class*='fixed']),
.site-header:not([class*='sticky']):not([class*='fixed']),
nav:not([class*='sticky']):not([class*='fixed']):not(#wpconvert-mobile-nav),
[role='banner']:not([class*='sticky']):not([class*='fixed']),
[role='navigation']:not([class*='sticky']):not([class*='fixed']):not(
    #wpconvert-mobile-nav
  ) {
  position: relative !important;
  z-index: 1000 !important;
}

/* Preserve sticky/fixed positioning for navs that have it */
/* CRITICAL: Ensure sticky/fixed actually works - add explicit CSS for common patterns */
nav[class*='sticky'],
nav[class*='fixed'],
header nav[class*='sticky'],
header nav[class*='fixed'],
header[class*='sticky'],
header[class*='fixed'],
.site-header[class*='sticky'],
.site-header[class*='fixed'] {
  z-index: 1000 !important; /* Keep z-index for visibility */
}

/* Explicit sticky positioning support - ensures it works even without Tailwind CSS loaded */
/* Only apply if sticky class is present and no explicit position override */
nav.sticky,
nav[class*='sticky']:not([style*='position']),
header nav.sticky,
header nav[class*='sticky']:not([style*='position']),
header.sticky,
header[class*='sticky']:not([style*='position']) {
  position: sticky !important;
}

/* Explicit fixed positioning support - ensures it works even without Tailwind CSS loaded */
nav.fixed,
nav[class*='fixed']:not([style*='position']),
header nav.fixed,
header nav[class*='fixed']:not([style*='position']),
header.fixed,
header[class*='fixed']:not([style*='position']) {
  position: fixed !important;
}

/* Common Tailwind patterns: sticky top-0, fixed top-0 */
nav[class*='sticky'][class*='top-0'],
nav[class*='fixed'][class*='top-0'],
header nav[class*='sticky'][class*='top-0'],
header nav[class*='fixed'][class*='top-0'],
header[class*='sticky'][class*='top-0'],
header[class*='fixed'][class*='top-0'] {
  top: 0 !important;
}

/* Fixed navs typically need full width */
nav[class*='fixed'][class*='w-full'],
nav[class*='fixed'][class*='top-0'],
header nav[class*='fixed'][class*='w-full'],
header nav[class*='fixed'][class*='top-0'],
header[class*='fixed'][class*='w-full'],
header[class*='fixed'][class*='top-0'] {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* Ensure hero and main content respect header z-index */
section[class*='hero'],
.hero,
main,
.site-main {
  position: relative;
  z-index: 1;
}

/* Theme-specific overrides */
/* Only apply relative if not sticky/fixed */
.site-header:not([class*='sticky']):not([class*='fixed']) {
  position: relative;
}

.site-main {
  margin-top: 0;
  padding-top: 0;
  min-height: 60vh;
}

/* Remove gap between fixed navbar and first content (white band under header).
 * Use :first-of-type (not :first-child): WP templates often have a whitespace text node
 * between <div id="primary"> and <section>, so section is never :first-child and rules
 * would silently fail (EC-NAV-086 follow-up). */
.site-main > section:first-of-type,
.site-main > div:first-of-type > section:first-of-type {
  margin-top: 0;
}

/* EC-NAV-086: Fixed nav + full-viewport hero (Tailwind min-h-screen) — React/Vite SPAs
 * stack the hero at document top with fixed nav overlaid; body/main background shows through
 * any empty band under the bar. Pull the first min-h-screen hero up by the header bar height
 * (--wpconvert-header-bar-height from header.php EC-NAV-100; fallback 4rem) so background layers
 * align with the original SPA.
 * Only on front-page template (body.front-page); skip sections with explicit pt-* / mt-* utilities.
 * :first-of-type required: newline/whitespace between #primary and hero <section> breaks :first-child. */
body.front-page
  .site-main
  #primary
  > section.min-h-screen:first-of-type:not([class*='pt-']):not([class*='mt-']),
body.front-page
  .site-main
  > div:first-of-type
  > section.min-h-screen:first-of-type:not([class*='pt-']):not([class*='mt-']) {
  /* Logged out: --wp-admin--admin-bar--height is unset → 0px. Logged in: WP sets 32px / 46px (782px). */
  margin-top: calc(
    -1 * var(--wpconvert-header-bar-height, 4rem) -
      var(--wp-admin--admin-bar--height, 0px)
  );
}

/* EC-NAV-089: Admin bar is fixed at top:0; in-flow content gets html { margin-top } but fixed nav does not,
 * so the site navbar sits under #wpadminbar. Offset primary fixed nav; exclude full-screen mobile drawer. */
body.admin-bar nav.fixed.top-0:not(#wpconvert-mobile-nav),
body.admin-bar nav.fixed[class*='top-0']:not(#wpconvert-mobile-nav) {
  top: var(--wp-admin--admin-bar--height, 32px) !important;
}

/* EC-NAV-087: Merged / blog / legacy CSS often sets body { padding-top: 5rem+ } as “clearance”
 * for fixed headers. With a fixed overlay nav, that padding does NOT move the bar — it only
 * pushes <main> down while body background shows through → white/cream band (~nav height) under
 * the bar. Stay Boost ships this in bundled style.css; EC-NAV-086 margin alone cannot cancel it. */
body.front-page {
  padding-top: 0 !important;
}

.site-footer {
  margin-top: auto;
}

/* EC-TW4-001: WordPress default style overrides */

body {
  line-height: 1.6;
}
body.wp-admin {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}
/* EC-BTN-104: :where() = 0 specificity so Tailwind text-* utilities always win over these resets.
   Plain "a:hover { color: inherit }" can outrank .text-white on links (0,2,0 vs 0,1,0) and wash out hero CTAs. */
:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a:hover) {
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
:where(button, .btn) {
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
input,
textarea,
select {
  font-family: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

/* Grid Layout & Sidebar Preservation - Ensures Bootstrap and other grid systems work properly */
.grid-layout-container {
  width: 100%;
  max-width: 100%;
}

/* Preserve Bootstrap row structure */
.grid-layout-container .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Ensure Bootstrap columns work */
.grid-layout-container [class*='col-'] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Bootstrap column widths - responsive */
@media (min-width: 768px) {
  .grid-layout-container .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-layout-container .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-layout-container .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-layout-container .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-layout-container .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-layout-container .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Mobile stacking for sidebars */
@media (max-width: 767px) {
  .grid-layout-container [class*='col-'] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Sidebar styling */
.grid-layout-container aside,
.grid-layout-container [class*='sidebar'] {
  padding: 20px;
}

/* CRITICAL: Disable popups marked by WPConvert - Universal for ALL popup libraries */
/* This targets ONLY popups we've marked, regardless of the library used */
/* Users can re-enable by overriding this CSS in Customizer → Additional CSS */
[data-wpconvert-popup-disabled='true'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important;
  position: absolute !important;
  left: -99999px !important;
  transform: scale(0) !important;
}

/* Also hide child elements of disabled popups (for nested structures) */
[data-wpconvert-popup-disabled='true'] * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Disable popup overlay backgrounds (universal) */
[data-wpconvert-popup-disabled='true'].overlay,
[data-wpconvert-popup-disabled='true'][class*='overlay'],
[data-wpconvert-popup-disabled='true'][class*='backdrop'],
[data-wpconvert-popup-disabled='true'][class*='bg'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* CRITICAL: Tailwind Font Override - ensure custom fonts take precedence over Tailwind CDN */
/* Tailwind CDN generates CSS dynamically that can override static CSS, so we use !important */
/* No custom font classes detected */
