/* ================================================
   ИЗВНЕ — Main Stylesheet 2026
   Минимализм. Тёмная тема. Bebas Neue + Manrope.
   ================================================ */

:root {
  --bg-0: #080b0f;
  --bg-1: #0d1117;
  --bg-2: #131921;
  --bg-3: #1c2430;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --accent: #e63946;
  --accent-2: #ff6b6b;
  --accent-glow: rgba(230,57,70,0.25);
  --text-primary: #f0f4f8;
  --text-secondary: #8b95a1;
  --text-muted: #4a5568;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 40px rgba(230,57,70,0.2);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--accent); color: #fff;
  padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,11,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner {
  display: flex; align-items: center;
  gap: 32px; height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-badge {
  background: var(--accent);
  color: #fff; font-size: 10px; font-weight: 800;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.05em;
}
.logo-title {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.12em;
  color: var(--white); line-height: 1;
}
.logo-sub {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: none;
}
@media(min-width:768px) { .logo-sub { display: block; } }

.main-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
@media(max-width:767px) { .main-nav { display: none; } }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-3);
}
.nav-link.season-4 { color: var(--accent-2); }
.nav-link.season-4:hover { background: rgba(230,57,70,0.12); color: var(--accent-2); }

.badge-new {
  background: var(--accent);
  color: #fff; font-size: 9px; font-weight: 800;
  padding: 1px 5px; border-radius: 3px;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.burger {
  display: none; color: var(--text-primary);
  font-size: 20px; padding: 8px; margin-left: auto;
}
@media(max-width:767px) { .burger { display: flex; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 280px; background: var(--bg-1);
  border-left: 1px solid var(--border);
  z-index: 200; padding: 80px 24px 24px;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--text-secondary); font-size: 22px; padding: 8px;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--text-primary); }
.mobile-nav-link.season-4 { color: var(--accent-2); }

/* ================================================
   HERO / MAIN PLAYER SECTION
   ================================================ */
.page-top { padding-top: 64px; }

.hero-section {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.hero-badge {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-badge.hd {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.hero-year { color: var(--text-muted); font-size: 13px; }
.hero-rating {
  display: flex; align-items: center; gap: 4px;
  color: #fbbf24; font-size: 13px; font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 8px;
}
.hero-title-en {
  font-size: 14px; color: var(--text-muted);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 15px; color: var(--text-secondary);
  max-width: 640px; line-height: 1.7;
  margin-bottom: 28px;
}

/* Player wrapper */
.player-wrap {
  position: relative;
  width: 100%; max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7), var(--shadow-accent);
  background: #000;
}
.player-wrap::before {
  content: '';
  display: block; padding-top: 56.25%; /* 16:9 */
}
.player-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.player-border {
  position: absolute; inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none; z-index: 2;
}

/* ================================================
   SEASON SELECTOR
   ================================================ */
.season-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 32px 0 16px;
}
.season-tab {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer; background: var(--bg-2);
}
.season-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.season-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ================================================
   EPISODES GRID
   ================================================ */
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.06em; color: var(--white);
  margin-bottom: 24px;
}
.section-desc {
  font-size: 14px; color: var(--text-secondary);
  max-width: 700px; margin-bottom: 32px;
  line-height: 1.7;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.episode-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
  cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.episode-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  opacity: 0; transition: var(--transition);
}
.episode-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.episode-card:hover::before { opacity: 1; }
.episode-card.active {
  border-color: var(--accent);
  background: rgba(230,57,70,0.08);
}
.episode-card.active::before { opacity: 1; }

.ep-num {
  font-family: var(--font-display);
  font-size: 32px; color: var(--text-muted);
  line-height: 1; letter-spacing: 0.05em;
}
.episode-card.active .ep-num { color: var(--accent); }
.ep-title {
  font-size: 12px; font-weight: 600;
  color: var(--text-primary); line-height: 1.4;
}
.ep-meta {
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.ep-meta i { font-size: 10px; }

/* ================================================
   INFO SECTION
   ================================================ */
.info-section { padding: 56px 0; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media(max-width:900px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.06em; color: var(--white);
  margin-bottom: 16px;
}
.info-text p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 16px;
}
.info-text p:last-child { margin-bottom: 0; }

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 20px;
}
.info-row {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-label {
  color: var(--text-muted); width: 120px; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.info-row-label i { width: 14px; color: var(--accent); }
.info-row-value { color: var(--text-primary); font-weight: 500; }

/* ================================================
   ALL SEASONS OVERVIEW
   ================================================ */
.seasons-overview { padding: 48px 0; }
.seasons-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.season-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.season-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.season-card.season-4-card {
  border-color: rgba(230,57,70,0.3);
  background: rgba(230,57,70,0.05);
}
.season-card-num {
  font-family: var(--font-display);
  font-size: 64px; color: var(--bg-3);
  position: absolute; right: 16px; bottom: -8px;
  line-height: 1; letter-spacing: 0.05em;
  pointer-events: none;
}
.season-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.season-card-title {
  font-size: 18px; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.season-card-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 16px;
}
.season-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  transition: var(--transition);
}
.season-card-link:hover { gap: 10px; }

/* ================================================
   FAQ / SEO TEXT BLOCK
   ================================================ */
.faq-section { padding: 48px 0; border-top: 1px solid var(--border); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  cursor: pointer; transition: var(--transition);
  background: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 0 20px 18px;
}

/* ================================================
   SEASON PAGE SPECIFIC
   ================================================ */
.season-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-bottom: 1px solid var(--border);
}
.season-hero-inner { display: flex; flex-direction: column; gap: 24px; }

/* ================================================
   EPISODE PAGE
   ================================================ */
.episode-page { padding: 32px 0 48px; }
.episode-nav {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
  align-items: center;
}
.episode-nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-2);
  transition: var(--transition);
}
.episode-nav-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.episode-nav-btn.primary {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 48px;
}
.footer-inner { }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px; margin-bottom: 40px;
}
@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:580px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7;
}
.footer-heading {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: var(--text-secondary);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent); }
.footer-about {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 16px;
}
.footer-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.footer-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
}
.footer-meta i { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11px; color: var(--text-muted); opacity: 0.6; }

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 50%; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; z-index: 50;
  opacity: 0; transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible {
  opacity: 1; transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}

/* ================================================
   ADMIN
   ================================================ */
.admin-body {
  background: var(--bg-0); min-height: 100vh;
  padding: 0 0 48px;
}
.admin-header {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; gap: 16px;
}
.admin-header h1 {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.1em; color: var(--white);
}
.admin-logout {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.admin-logout:hover { color: var(--accent); border-color: var(--accent); }

.admin-main { padding: 32px 24px; max-width: 1200px; margin: 0 auto; }
.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 32px;
}
@media(max-width:900px) { .admin-grid { grid-template-columns: repeat(2,1fr); } }

.admin-stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.admin-stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.admin-stat-value {
  font-family: var(--font-display);
  font-size: 36px; color: var(--white); letter-spacing: 0.05em;
}

.admin-table-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; overflow-x: auto;
}
.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  background: var(--bg-3);
  padding: 12px 16px; text-align: left;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary); vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-3); color: var(--text-primary); }
.admin-table .views-badge {
  background: rgba(230,57,70,0.1);
  color: var(--accent); font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  font-size: 12px;
}
.admin-input {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-primary);
  padding: 6px 10px; font-size: 12px; width: 100%; max-width: 280px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.admin-input:focus {
  outline: none; border-color: var(--accent);
}
.admin-btn {
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.admin-btn:hover { background: var(--accent-2); }
.admin-btn.secondary {
  background: var(--bg-3); color: var(--text-secondary);
  border: 1px solid var(--border);
}
.admin-btn.secondary:hover { color: var(--text-primary); border-color: var(--border-hover); }

.admin-login {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 24px;
}
.admin-login-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  width: 100%; max-width: 380px;
}
.admin-login-box h2 {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.08em;
  color: var(--white); margin-bottom: 24px; text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-input {
  width: 100%; background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary); padding: 12px 14px;
  font-size: 14px; font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-input:focus { outline: none; border-color: var(--accent); }
.form-submit {
  width: 100%; background: var(--accent);
  color: #fff; border: none;
  border-radius: var(--radius-sm);
  padding: 13px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body); letter-spacing: 0.05em;
}
.form-submit:hover { background: var(--accent-2); }
.form-error {
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--accent); font-size: 13px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.form-success {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  color: #34d399; font-size: 13px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

/* ================================================
   UTILITIES
   ================================================ */
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Divider */
.divider {
  height: 1px; background: var(--border); margin: 48px 0;
}

/* Glow line */
.glow-line {
  height: 1px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  max-width: 400px;
}

/* Loading shimmer */
@keyframes shimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}
.loading {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%);
  background-size: 936px 100%;
  animation: shimmer 1.4s infinite linear;
}

/* Responsive */
@media(max-width:640px) {
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-list { grid-template-columns: 1fr; }
  .hero-section { padding: 32px 0 28px; }
}
