/*
Theme Name: Fixmode OTT
Theme URI: https://fixmode.com
Author: Fixmode Team
Author URI: https://fixmode.com
Description: A premium Netflix-style OTT streaming platform theme for Indian TV serials. Features YouTube embed player, custom post types for episodes, horizontal scroll sections, mobile-first responsive design, and Google AdSense integration.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: fixmode-ott
Tags: dark, streaming, ott, video, entertainment, responsive
*/

/* ===========================
   GOOGLE FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   CSS VARIABLES / DESIGN TOKENS
   =========================== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #141420;
  --bg-card: #1a1a2e;
  --bg-hover: #222240;
  --bg-glass: rgba(20, 20, 32, 0.85);

  --accent-red: #e50914;
  --accent-red-hover: #b80710;
  --accent-orange: #f97316;
  --accent-gradient: linear-gradient(135deg, #e50914, #f97316);

  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #6b6b80;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px rgba(229, 9, 20, 0.15);
  --shadow-glow: 0 0 30px rgba(229, 9, 20, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --header-height: 70px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===========================
   UTILITY
   =========================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  z-index: 9999;
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(10, 10, 15, 0.98); }

.site-branding { flex-shrink: 0; display: flex; align-items: center; }
.site-branding a { display: flex; align-items: center; }
.site-branding img, .site-branding .custom-logo-link img { max-height: 40px; width: auto; object-fit: contain; }

.d-none-mobile { display: inline; }

.main-navigation { margin-left: 50px; flex-grow: 1; }
.main-navigation ul { display: flex; gap: 28px; }
.main-navigation a {
  color: var(--text-secondary); font-weight: 500; font-size: 14px;
  transition: var(--transition); position: relative; padding: 4px 0;
}
.main-navigation a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent-gradient); border-radius: 2px; transition: var(--transition);
}
.main-navigation a:hover { color: var(--text-primary); }
.main-navigation a:hover::after { width: 100%; }
.main-navigation .current-menu-item a { color: var(--text-primary); }
.main-navigation .current-menu-item a::after { width: 100%; }

.header-actions { display: flex; gap: 12px; align-items: center; }
.header-btn {
  background: none; border: none; color: var(--text-secondary);
  cursor: pointer; padding: 8px; border-radius: 50%;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.header-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
.header-btn svg { width: 20px; height: 20px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; }

/* Search Overlay */
.search-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
  z-index: 10000; display: none; align-items: flex-start; justify-content: center;
  padding-top: 120px;
}
.search-overlay.active { display: flex; }
.search-overlay-inner { width: 90%; max-width: 600px; }
.search-overlay .search-input-wrapper {
  display: flex; align-items: center; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 16px 24px; gap: 12px;
}
.search-overlay .search-input-wrapper svg { width: 24px; height: 24px; color: var(--text-muted); flex-shrink: 0; }
.search-overlay input[type="search"] {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text-primary); font-size: 18px; font-family: 'Inter', sans-serif;
}
.search-overlay input::placeholder { color: var(--text-muted); }
.search-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  color: var(--text-secondary); cursor: pointer; padding: 8px;
}
.search-close svg { width: 28px; height: 28px; }

/* ===========================
   HERO BANNER SLIDER
   =========================== */
.hero-slider-wrap {
  position: relative; height: 85vh; min-height: 550px; max-height: 800px;
  width: 100%; overflow: hidden; margin-top: var(--header-height);
}
.hero-slider-track {
  display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; width: 100%;
}
.hero-slide {
  flex: 0 0 100%; min-width: 100%; height: 100%;
  position: relative; display: flex; align-items: flex-end; padding: 0 40px 80px;
}
.hero-indicators {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 15;
}
.hero-dot {
  width: 10px; height: 10px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.hero-dot.active { background: var(--accent-red); width: 22px; border-radius: 5px; }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center top;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(10,10,15,0.6) 40%, rgba(10,10,15,0.2) 70%, rgba(10,10,15,0.4) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 50%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 550px; }
.hero-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-red); padding: 5px 14px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero-badge.new { background: var(--accent-gradient); }
.hero-tag { color: var(--text-secondary); font-size: 13px; font-weight: 500; }
.hero-title {
  font-size: 52px; font-weight: 900; line-height: 1.05;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 15px; color: var(--text-secondary); margin-bottom: 28px;
  line-height: 1.7; max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn svg { width: 20px; height: 20px; }
.btn-play { background: #fff; color: #000; }
.btn-play:hover { background: rgba(255,255,255,0.85); transform: scale(1.03); }
.btn-info {
  background: rgba(255,255,255,0.15); color: #fff;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1);
}
.btn-info:hover { background: rgba(255,255,255,0.25); }
.btn-red { background: var(--accent-red); color: #fff; }
.btn-red:hover { background: var(--accent-red-hover); transform: scale(1.03); box-shadow: var(--shadow-glow); }

/* ===========================
   ALERT / NOTIFICATION BAR
   =========================== */
.alert-bar {
  margin: 0 40px 40px; padding: 14px 24px;
  background: var(--bg-card); border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-red);
  display: flex; align-items: center; gap: 14px;
  animation: slideInUp 0.5s ease;
}
.alert-count {
  background: var(--accent-gradient); padding: 4px 10px;
  border-radius: var(--radius-sm); font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.alert-text { font-weight: 500; font-size: 14px; }

/* ===========================
   CATEGORY PILLS
   =========================== */
.category-pills-wrap { padding: 0 40px 30px; }
.category-pills {
  display: flex; gap: 10px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
}
.category-pills::-webkit-scrollbar { display: none; }
.pill {
  white-space: nowrap; padding: 9px 20px; border-radius: var(--radius-xl);
  background: var(--bg-card); font-size: 13px; font-weight: 500;
  color: var(--text-secondary); border: 1px solid var(--border-color);
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.pill:hover { color: var(--text-primary); border-color: var(--border-light); background: var(--bg-hover); }
.pill.active { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }

/* ===========================
   CONTENT SECTIONS
   =========================== */
.content-section { padding: 0 40px 50px; }
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.section-title { font-size: 22px; font-weight: 700; }
.section-link {
  font-size: 13px; color: var(--text-muted); font-weight: 500;
  transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.section-link:hover { color: var(--accent-red); }

/* ===========================
   CARD SLIDER (Horizontal Scroll)
   =========================== */
.card-slider {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 8px;
  margin-right: -40px; padding-right: 40px;
}
.card-slider::-webkit-scrollbar { display: none; }

/* ===========================
   EPISODE/SHOW CARDS
   =========================== */
.card {
  flex: 0 0 calc(20% - 16px); min-width: 220px;
  scroll-snap-align: start;
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-card);
  transition: var(--transition); cursor: pointer;
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-light);
}
.card a { display: block; color: inherit; }
.card-poster { position: relative; overflow: hidden; }
.card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img { transform: scale(1.08); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.card:hover .card-overlay { opacity: 1; }
.play-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(229, 9, 20, 0.9); display: flex;
  align-items: center; justify-content: center;
  transform: scale(0.8); transition: var(--transition);
}
.card:hover .play-icon { transform: scale(1); }
.play-icon svg { width: 22px; height: 22px; color: #fff; margin-left: 2px; }

.card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 3; }
.badge {
  padding: 3px 8px; border-radius: 4px; font-size: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new { background: var(--accent-red); }
.badge-hot { background: var(--accent-orange); }
.badge-live { background: #22c55e; }
.badge-hd { background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); }

.card-body { padding: 14px; }
.card-channel {
  font-size: 11px; color: var(--accent-red); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.card-title {
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text-muted);
}
.card-meta svg { width: 12px; height: 12px; margin-right: 3px; }
.meta-item { display: flex; align-items: center; }

/* ===========================
   VIDEO PLAYER PAGE
   =========================== */
.player-page { margin-top: var(--header-height); }
.video-player-wrap {
  width: 100%; max-width: 1000px; margin: 0 auto;
  padding: 30px 40px 20px;
}
.video-container {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: #000; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.video-container iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

.episode-info {
  max-width: 1000px; margin: 0 auto; padding: 20px 40px 40px;
}
.episode-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px; margin-bottom: 20px;
}
.episode-title-wrap {}
.episode-serial-name {
  font-size: 13px; color: var(--accent-red); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.episode-title { font-size: 28px; font-weight: 800; line-height: 1.2; }
.episode-date { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.episode-nav { display: flex; gap: 10px; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-md);
  background: var(--bg-card); color: var(--text-secondary);
  border: 1px solid var(--border-color);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.nav-btn:hover { background: var(--bg-hover); color: var(--text-primary); border-color: var(--border-light); }
.nav-btn svg { width: 16px; height: 16px; }

.episode-desc {
  padding: 20px 0; border-top: 1px solid var(--border-color);
  color: var(--text-secondary); font-size: 14px; line-height: 1.8;
}

/* Episode Grid */
.episodes-grid-section { max-width: 1000px; margin: 0 auto; padding: 0 40px 60px; }
.episodes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.episodes-grid .card { flex: none; min-width: unset; }

/* ===========================
   SERIAL DETAIL PAGE
   =========================== */
.serial-hero {
  position: relative; padding: 60px 40px 40px; margin-top: var(--header-height);
  display: flex; gap: 30px; align-items: flex-start;
}
.serial-poster { width: 200px; border-radius: var(--radius-md); flex-shrink: 0; box-shadow: var(--shadow-card); }
.serial-info { flex: 1; }
.serial-title { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.serial-meta-tags { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.serial-meta-tag {
  padding: 4px 12px; border-radius: var(--radius-xl);
  background: var(--bg-card); border: 1px solid var(--border-color);
  font-size: 12px; color: var(--text-secondary);
}
.serial-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.8; max-width: 600px; }

/* ===========================
   SEARCH RESULTS
   =========================== */
.search-results-page { margin-top: var(--header-height); padding: 40px; }
.search-results-title { font-size: 28px; font-weight: 700; margin-bottom: 30px; }
.search-results-title span { color: var(--accent-red); }
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.results-grid .card { flex: none; min-width: unset; }
.no-results { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.no-results h2 { font-size: 24px; margin-bottom: 10px; color: var(--text-secondary); }

/* ===========================
   ADS PLACEHOLDERS
   =========================== */
.ad-slot {
  background: var(--bg-card); border: 1px dashed var(--border-light);
  border-radius: var(--radius-md); padding: 20px;
  text-align: center; color: var(--text-muted); font-size: 12px;
  margin: 20px 0; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.ad-slot.ad-header { margin: 0 40px 30px; }
.ad-slot.ad-between { margin: 10px 0 30px; }
.ad-slot.ad-sidebar { width: 100%; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--bg-secondary); padding: 60px 40px 30px;
  margin-top: 60px; border-top: 1px solid var(--border-color);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand {}
.footer-logo { max-width: 140px; margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 13px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition); font-size: 14px;
}
.social-icon:hover { background: var(--accent-red); color: #fff; border-color: var(--accent-red); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; }

.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 13px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bottom {
  text-align: center; padding-top: 30px; border-top: 1px solid var(--border-color);
  color: var(--text-muted); font-size: 12px;
}

/* ===========================
   PAGINATION
   =========================== */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span {
  padding: 10px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border-color);
  transition: var(--transition);
}
.pagination a:hover { background: var(--bg-hover); color: var(--text-primary); }
.pagination .current { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn 0.6s ease; }

/* ===========================
   MOBILE MENU DRAWER
   =========================== */
.mobile-drawer {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
  background: var(--bg-secondary); border-left: 1px solid var(--border-color);
  z-index: 10001; padding: 80px 24px 24px; transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-drawer.active { right: 0; }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 0; }
.mobile-drawer ul li a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.mobile-drawer ul li a:hover { color: var(--text-primary); padding-left: 8px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 10000; display: none;
}
.mobile-overlay.active { display: block; }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .card { flex: 0 0 calc(25% - 16px); min-width: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .container { padding: 0 20px; }
  .site-header { padding: 0 16px; }
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: flex; }
  .d-none-mobile { display: none; }
  .download-app-btn { padding: 8px 12px !important; display: flex !important; align-items: center; gap: 4px; border-radius: 4px; font-size: 11px !important; font-weight: bold; }
  .download-app-btn::after { content: "App"; display: inline-block; }
  .header-actions { gap: 10px; }
  .header-btn { padding: 6px; }

  .hero-slider-wrap { height: 70vh; min-height: 450px; }
  .hero-slide { padding: 0 20px 60px; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; }
  .hero-buttons { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 14px; }

  .alert-bar { margin: 0 16px 24px; flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }

  .category-pills-wrap { padding: 0 16px 20px; }
  .content-section { padding: 0 16px 40px; }
  .card-slider { margin-right: -16px; padding-right: 16px; gap: 12px; }
  .card { flex: 0 0 55%; min-width: 180px; }

  .section-title { font-size: 18px; }

  .video-player-wrap { padding: 16px; }
  .video-container { border-radius: var(--radius-md); }
  .episode-info { padding: 16px 16px 30px; }
  .episode-title { font-size: 22px; }
  .episode-header { flex-direction: column; }
  .episode-nav { width: 100%; }
  .episode-nav .nav-btn { flex: 1; justify-content: center; }
  .episodes-grid-section { padding: 0 16px 40px; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .serial-hero { flex-direction: column; padding: 30px 16px; }
  .serial-poster { width: 150px; }
  .serial-title { font-size: 26px; }

  .search-results-page { padding: 24px 16px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .ad-slot.ad-header { margin: 0 16px 20px; }

  .site-footer { padding: 40px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .card { flex: 0 0 65%; min-width: 160px; }
  .episodes-grid { grid-template-columns: 1fr; }
}
