/* ==========================================================================
   ShortCima — Premium Cinematic Design System v3.0
   Mobile-First | Dark OLED | Glassmorphism | Micro-animations
   ========================================================================== */

/* ── Design Tokens ── */
:root {
  --bg-deep:        #060810;
  --bg-surface:     #0c0e18;
  --bg-card:        rgba(16, 19, 32, 0.72);
  --bg-card-hover:  rgba(24, 28, 48, 0.9);
  --bg-glass:       rgba(10, 12, 22, 0.82);

  --primary:        #E8192C;
  --primary-hover:  #ff2236;
  --primary-dark:   #a50e1c;
  --primary-glow:   rgba(232, 25, 44, 0.45);

  --gold:           #f59e0b;
  --gold-light:     #fde68a;
  --cyan:           #22d3ee;
  --green:          #10b981;
  --purple:         #8b5cf6;

  --text-white:     #ffffff;
  --text-main:      #e2e8f0;
  --text-muted:     #94a3b8;
  --text-dim:       #4b5563;

  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(255,255,255,0.14);
  --border-active:  rgba(232, 25, 44, 0.45);

  --font-ar:  'Cairo', system-ui, -apple-system, sans-serif;
  --font-en:  'Outfit', sans-serif;

  --shadow-sm:   0 4px 16px rgba(0,0,0,0.35);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.65);
  --shadow-glow: 0 0 30px var(--primary-glow);

  --t-fast:   0.18s cubic-bezier(0.4,0,0.2,1);
  --t-smooth: 0.32s cubic-bezier(0.4,0,0.2,1);
  --t-bounce: 0.4s cubic-bezier(0.34,1.56,0.64,1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-ar);
  direction: rtl;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  position: relative;
  padding-bottom: 72px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(232,25,44,0.4); border-radius: 99px; }

/* ── Ambient Background Glows ── */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 12s ease-in-out infinite;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.16) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation-delay: 0s;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, transparent 70%);
  bottom: 10%; left: -120px;
  animation-delay: -6s;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-smooth), box-shadow var(--t-smooth);
}
.site-header.scrolled {
  background: rgba(6,8,16,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 18px var(--primary-glow);
  transition: box-shadow var(--t-fast);
}
.brand-logo:hover .logo-icon { box-shadow: 0 0 30px var(--primary-glow); }
.accent-text { color: var(--primary); }
.logo-badge {
  font-size: 0.6rem;
  font-weight: 900;
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid rgba(245,158,11,0.35);
  vertical-align: middle;
  letter-spacing: 0.5px;
}

/* Desktop Nav */
.header-left { display: flex; align-items: center; gap: 2rem; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: all var(--t-smooth);
  transform: translateX(50%);
}
.nav-link:hover, .nav-link.active { color: var(--text-white); }
.nav-link.active::after, .nav-link:hover::after { width: 60%; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.search-box { position: relative; display: flex; align-items: center; }
.search-icon {
  position: absolute; right: 12px;
  width: 17px; height: 17px;
  stroke: var(--text-dim);
  pointer-events: none;
  transition: stroke var(--t-fast);
}
.search-box:focus-within .search-icon { stroke: var(--primary); }
.search-box input {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.5rem 2.4rem 0.5rem 1rem;
  border-radius: 50px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.88rem;
  width: 230px;
  transition: all var(--t-smooth);
}
.search-box input::placeholder { color: var(--text-dim); }
.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  width: 290px;
  background: rgba(0,0,0,0.55);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.12);
}
.btn-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all var(--t-fast);
}
.btn-icon svg { width: 18px; height: 18px; }
.btn-icon:hover { color: var(--text-white); background: rgba(255,255,255,0.1); border-color: var(--border-hover); }
.badge-dot {
  position: absolute; top: 8px; left: 8px;
  width: 9px; height: 9px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  animation: pulseDot 2.5s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.btn-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 18px var(--primary-glow);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-gradient-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232,25,44,0.6); }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  padding: 10px;
  transition: all var(--t-fast);
}
.hamburger-btn span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-muted);
  border-radius: 99px;
  transition: all var(--t-smooth);
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--primary); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--primary); }

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed;
  top: 62px; left: 0; right: 0; bottom: 0;
  background: rgba(6,8,16,0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 850;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  display: none;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--t-smooth), opacity var(--t-smooth);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  animation: slideInMenu 0.28s ease-out;
}
@keyframes slideInMenu {
  from { transform: translateY(-16px); opacity: 0.5; }
  to   { transform: translateY(0); opacity: 1; }
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--text-white);
  background: rgba(232,25,44,0.08);
  border-color: rgba(232,25,44,0.2);
}
.mobile-nav-link .nav-emoji { font-size: 1.2rem; width: 28px; text-align: center; }
.mobile-search {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-search input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
}
.mobile-search input::placeholder { color: var(--text-dim); }
.mobile-search input:focus { outline: none; border-color: var(--primary); }
.mobile-login-btn {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  width: 100%;
  box-shadow: 0 4px 22px var(--primary-glow);
  transition: all var(--t-fast);
}
.mobile-login-btn:active { transform: scale(0.97); }

/* ==========================================================================
   BOTTOM NAVIGATION — Mobile Only
   ========================================================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid var(--border);
  padding: 6px 0;
  padding-bottom: env(safe-area-inset-bottom, 6px);
}
.bottom-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 56px;
  transition: all var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.bn-item svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.bn-item.active { color: var(--primary); }
.bn-item.active svg { filter: drop-shadow(0 0 5px var(--primary-glow)); }
.bn-item-center {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  border-radius: 18px;
  padding: 0.55rem 1rem;
  margin-top: -16px;
  box-shadow: 0 -6px 24px var(--primary-glow);
}
.bn-item-center svg { stroke: #fff; width: 26px; height: 26px; }
.bn-item-center span { color: #fff !important; }

/* ==========================================================================
   MAIN LAYOUT
   ========================================================================== */
.page-main { flex: 1; position: relative; z-index: 1; padding-bottom: 2rem; }
.main-container { max-width: 1440px; margin: 0 auto; padding: 1.5rem 1.25rem; }

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0,0,0,0.8);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
.hero-backdrop {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.1);
  transform: scale(1.03);
  transition: transform 0.8s ease;
}
.hero-banner:hover .hero-backdrop { transform: scale(1.08); }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg-deep) 0%, rgba(6,8,16,0.75) 40%, rgba(6,8,16,0.05) 100%),
    linear-gradient(90deg, rgba(6,8,16,0.55) 0%, transparent 65%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 700px;
  width: 100%;
}
.hero-badge-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.hero-tag { font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.85rem; border-radius: 50px; letter-spacing: 0.2px; }
.hero-tag.trending {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 0 18px var(--primary-glow);
}
.hero-tag.rating {
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.45);
  color: var(--gold);
}
.hero-tag.ep-count {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-hover);
  color: #fff;
}
.tag { font-size: 0.72rem; font-weight: 700; padding: 0.22rem 0.7rem; border-radius: 50px; }
.tag-live { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.35); color: var(--green); }
.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.hero-synopsis {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.85;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.btn-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px var(--primary-glow);
  transition: all var(--t-bounce);
}
.btn-hero-play:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(232,25,44,0.65);
}
.btn-hero-details {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-hover);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  transition: all var(--t-fast);
}
.btn-hero-details:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

/* ==========================================================================
   CATEGORY FILTER BAR
   ========================================================================== */
.category-filter-section { margin-bottom: 2.5rem; }
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.filter-btn:hover { color: #fff; background: rgba(255,255,255,0.1); border-color: var(--border-hover); }
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 3px 16px var(--primary-glow);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.section-title-wrap { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.section-icon { font-size: 1.4rem; }
.section-title { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1.2; }
.section-count {
  font-size: 0.78rem; color: var(--gold);
  background: rgba(245,158,11,0.1);
  padding: 2px 8px; border-radius: 6px;
  font-weight: 700; margin-right: 0.3rem;
}
.section-link { color: var(--primary); font-size: 0.88rem; font-weight: 700; transition: color var(--t-fast); white-space: nowrap; }
.section-link:hover { color: var(--primary-hover); text-decoration: underline; }
.sort-selector { font-size: 0.82rem; color: var(--text-dim); }

/* ==========================================================================
   REELS GRID — 9:16
   ========================================================================== */
.reels-section { margin-bottom: 3rem; }
.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  transition: all var(--t-smooth);
  -webkit-tap-highlight-color: transparent;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 18px 44px rgba(232,25,44,0.3);
}
.reel-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.15);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.reel-card:hover .reel-poster { transform: scale(1.08); filter: brightness(0.5) saturate(1.2); }
.reel-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  z-index: 1;
}
.reel-content { position: relative; z-index: 2; }
.reel-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 5px;
  margin-bottom: 0.35rem;
}
.reel-title {
  font-size: 0.85rem; font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-meta { font-size: 0.7rem; color: #94a3b8; display: flex; justify-content: space-between; }

/* ==========================================================================
   SERIES CARDS GRID
   ========================================================================== */
.catalog-section { margin-bottom: 3rem; }
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.series-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-smooth);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.series-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232,25,44,0.45);
  box-shadow: 0 22px 50px rgba(0,0,0,0.8), 0 0 28px rgba(232,25,44,0.18);
  background: var(--bg-card-hover);
}
.card-poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-surface);
}
.card-poster { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.series-card:hover .card-poster { transform: scale(1.09); }

/* Card Badges */
.card-badge-top {
  position: absolute; top: 10px; right: 10px;
  z-index: 2; display: flex; flex-direction: column; gap: 4px;
}
.badge-ep {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 2px 7px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.badge-res {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  color: #38bdf8; font-size: 0.62rem; font-weight: 800;
  padding: 1px 6px; border-radius: 4px;
}
.card-rating-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold); font-size: 0.72rem; font-weight: 800;
  padding: 2px 8px; border-radius: 6px;
  z-index: 2; display: flex; align-items: center; gap: 3px;
}

/* Play Hover Overlay */
.card-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
  z-index: 3;
}
.play-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px var(--primary-glow);
  transform: scale(0.72);
  transition: transform var(--t-bounce);
}
.play-circle svg { width: 22px; height: 22px; fill: #fff; margin-right: -2px; }
.series-card:hover .card-hover-overlay { opacity: 1; }
.series-card:hover .play-circle { transform: scale(1); }

/* Card Info */
.card-info { padding: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-title {
  font-size: 0.9rem; font-weight: 800; color: #fff; line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--t-fast);
}
.series-card:hover .card-title { color: var(--primary); }
.card-subtext {
  font-size: 0.75rem; color: var(--text-dim);
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.card-genre { color: var(--text-muted); }
.card-year { color: var(--text-dim); }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination-section {
  display: flex; justify-content: center; align-items: center;
  gap: 0.4rem; margin: 1rem 0 3.5rem; flex-wrap: wrap;
}
.page-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-fast);
}
.page-btn:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: var(--border-hover); }
.page-btn.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 4px 18px var(--primary-glow);
}
.page-dots { color: var(--text-dim); padding: 0 0.3rem; }

/* ==========================================================================
   SEO SECTION
   ========================================================================== */
.homepage-seo-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem; margin-bottom: 3.5rem;
  backdrop-filter: blur(16px);
}
.homepage-seo-section .article-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.28);
  color: var(--cyan); padding: 0.28rem 0.85rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1rem;
}
.homepage-seo-section .article-badge svg { width: 13px; height: 13px; }
.homepage-seo-section h2 { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.4; }
.homepage-seo-section p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 1rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030509;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
  position: relative; z-index: 1;
}
.footer-container { max-width: 1440px; margin: 0 auto; padding: 0 1.25rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.85; margin-top: 1rem; max-width: 400px; }
.footer-links-col h5 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 1.2rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col a { color: var(--text-dim); font-size: 0.85rem; transition: color var(--t-fast); }
.footer-links-col a:hover { color: var(--primary); }
.footer-bottom { padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: var(--text-dim); }

/* ==========================================================================
   WATCH PAGE — Breadcrumbs
   ========================================================================== */
.breadcrumb-nav {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-dim);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .separator { color: var(--text-dim); }
.breadcrumb-nav .current { color: #fff; font-weight: 600; }

/* ==========================================================================
   WATCH PAGE — Watch Section
   ========================================================================== */
.watch-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  margin-bottom: 2.5rem;
}
.watch-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.meta-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.6rem; }
.tag {
  font-size: 0.72rem; font-weight: 700;
  padding: 0.22rem 0.7rem; border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag-primary { background: rgba(232,25,44,0.15); border-color: rgba(232,25,44,0.3); color: #ff5252; }
.tag-gold { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.3); color: var(--gold); }
.entry-title { font-size: 1.55rem; font-weight: 800; line-height: 1.3; color: #fff; }
.action-buttons-group { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; }
.btn-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: #fff; padding: 0.5rem 1rem;
  border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  transition: all var(--t-fast);
}
.btn-pill svg { width: 17px; height: 17px; }
.btn-pill:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.btn-glow {
  background: linear-gradient(135deg, var(--green), #059669);
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.btn-glow:hover { box-shadow: 0 6px 24px rgba(16,185,129,0.5); }

/* Servers Bar */
.servers-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(0,0,0,0.4);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem; flex-wrap: wrap;
}
.servers-title { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--text-muted); }
.servers-title svg { width: 15px; height: 15px; stroke: var(--gold); }
.server-tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.server-tab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.38rem 0.85rem;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all var(--t-fast);
}
.server-tab:hover { background: rgba(255,255,255,0.1); color: #fff; }
.server-tab.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 2px 12px var(--primary-glow);
}
.status-indicator { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.server-tab.active .status-indicator { background: #fff; }

/* Player */
.player-wrapper {
  position: relative; background: #000;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 55px rgba(0,0,0,0.9);
  margin: 0 auto 1.5rem;
  transition: max-width var(--t-smooth), aspect-ratio var(--t-smooth);
}
.player-wrapper.portrait { max-width: 440px; aspect-ratio: 9 / 16; }
.player-wrapper.landscape { max-width: 100%; aspect-ratio: 16 / 9; }
.player-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  display: none; align-items: center; justify-content: center; z-index: 10;
}
.player-overlay.loading { display: flex; }
.player-loader { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: #fff; font-weight: 600; }
.spinner {
  width: 42px; height: 42px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.player-container, .responsive-iframe-holder { width: 100%; height: 100%; }
.responsive-iframe-holder iframe { width: 100%; height: 100%; border: none; display: block; }
.player-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 0.8rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--text-muted); pointer-events: none;
}
.quality-badge { display: flex; align-items: center; gap: 0.5rem; }
.pulse-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  70%  { transform: scale(1); box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* Episodes */
.episodes-card { background: rgba(0,0,0,0.28); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; }
.episodes-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.75rem; }
.ep-header-title { display: flex; align-items: center; gap: 0.45rem; font-weight: 700; color: #fff; font-size: 0.92rem; }
.ep-header-title svg { width: 17px; height: 17px; stroke: var(--primary); }
.ep-search input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 0.33rem 0.8rem; border-radius: 6px;
  color: #fff; font-family: inherit; font-size: 0.8rem; width: 150px;
}
.episodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 0.55rem; }
.ep-btn {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.45rem 0.2rem;
  border-radius: 8px; font-family: inherit; font-size: 0.83rem;
  font-weight: 600; cursor: pointer; transition: all var(--t-fast); text-align: center;
}
.ep-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.ep-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; box-shadow: 0 2px 10px var(--primary-glow); }
.ep-btn.ep-all { grid-column: span 2; background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(232,25,44,0.18)); border-color: var(--gold); color: #ffedd5; }

/* Content Grid */
.content-grid-wrapper { display: grid; grid-template-columns: 1fr 330px; gap: 2rem; }
.seo-article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.2rem;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(16px);
}
.article-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.28);
  color: var(--cyan); padding: 0.28rem 0.85rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700; margin-bottom: 1rem;
}
.article-badge svg { width: 13px; height: 13px; }
.article-main-title { font-size: 1.45rem; font-weight: 800; line-height: 1.4; color: #fff; margin-bottom: 1.2rem; }
.article-lead { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-bottom: 2rem; }
.spec-box {
  background: rgba(0,0,0,0.35); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.9rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.spec-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; }
.spec-value { font-size: 0.9rem; color: #fff; font-weight: 700; }
.highlight-gold { color: var(--gold); }
.article-body h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 1.8rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.article-body h3::before { content: ''; display: inline-block; width: 4px; height: 1.1em; background: var(--primary); border-radius: 2px; }
.article-body p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 1rem; }
.quote-callout {
  background: linear-gradient(90deg, rgba(232,25,44,0.1), transparent);
  border-right: 4px solid var(--primary);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0; font-style: italic;
}
.quote-callout p { margin: 0; color: #fff; font-size: 1rem; font-weight: 600; }
.styled-list { list-style: none; margin: 1rem 0 2rem; }
.styled-list li { position: relative; padding-right: 1.5rem; margin-bottom: 0.7rem; color: var(--text-muted); font-size: 0.92rem; }
.styled-list li::before { content: '✔'; position: absolute; right: 0; color: var(--green); font-weight: bold; }

/* FAQ */
.faq-container { margin: 2rem 0; }
.faq-item {
  background: rgba(0,0,0,0.3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 0.7rem;
  overflow: hidden; transition: border-color var(--t-fast);
}
.faq-item.active { border-color: rgba(232,25,44,0.4); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; background: none; border: none; color: #fff;
  font-family: inherit; font-size: 0.92rem; font-weight: 700;
  cursor: pointer; text-align: right;
}
.faq-icon { font-size: 1.2rem; transition: transform var(--t-fast); color: var(--text-dim); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { display: none; padding: 0 1.2rem 1rem; color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }
.faq-item.active .faq-answer { display: block; }

/* Tags Cloud */
.tags-cloud { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.tag-cloud-title { font-size: 0.82rem; font-weight: 700; color: #fff; margin-left: 0.5rem; }
.cloud-tag {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-muted); padding: 0.28rem 0.75rem;
  border-radius: 50px; font-size: 0.78rem; transition: all var(--t-fast);
}
.cloud-tag:hover { background: rgba(232,25,44,0.18); border-color: var(--primary); color: #fff; }

/* Sidebar */
.sidebar-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem; backdrop-filter: blur(16px);
}
.sidebar-heading { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.4rem; }
.trending-list { display: flex; flex-direction: column; gap: 0.85rem; }
.trend-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.55rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02); border: 1px solid transparent;
  transition: all var(--t-fast);
}
.trend-item:hover { background: rgba(255,255,255,0.06); border-color: var(--border); transform: translateX(-3px); }
.trend-poster { position: relative; width: 60px; height: 85px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.trend-poster img { width: 100%; height: 100%; object-fit: cover; }
.trend-rank { position: absolute; top: 4px; right: 4px; background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 800; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.trend-info { display: flex; flex-direction: column; gap: 0.22rem; flex: 1; }
.trend-title { font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.35; }
.trend-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text-dim); }
.badge-mini { background: rgba(255,255,255,0.08); padding: 1px 6px; border-radius: 4px; color: var(--text-muted); }
.trend-rating { font-size: 0.78rem; font-weight: 700; color: var(--gold); }
.community-banner {
  background: linear-gradient(135deg, #0369a1, #1d4ed8);
  border-radius: var(--radius-md); padding: 1.5rem;
  color: #fff; text-align: center;
  box-shadow: 0 8px 30px rgba(3,105,161,0.38);
}
.banner-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.community-banner h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.community-banner p { font-size: 0.82rem; opacity: 0.92; line-height: 1.65; margin-bottom: 1.2rem; }
.btn-community {
  display: inline-block; background: #fff; color: #1d4ed8;
  font-weight: 800; font-size: 0.85rem;
  padding: 0.58rem 1.4rem; border-radius: 50px;
  transition: all var(--t-fast);
}
.btn-community:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-backdrop.active { display: flex; }
.modal-card {
  background: var(--bg-surface); border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl); width: 100%; max-width: 540px;
  padding: 2rem; box-shadow: var(--shadow-lg);
  position: relative; animation: modalIn 0.22s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.93) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.modal-title { display: flex; align-items: center; gap: 0.55rem; font-size: 1.1rem; font-weight: 800; color: #fff; }
.modal-title svg { width: 20px; height: 20px; stroke: var(--green); }
.modal-close { background: none; border: none; font-size: 1.7rem; color: var(--text-dim); cursor: pointer; line-height: 1; }
.modal-close:hover { color: #fff; }
.modal-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.download-links-list { display: flex; flex-direction: column; gap: 0.75rem; }
.dl-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  padding: 0.9rem 1.2rem; border-radius: var(--radius-sm); transition: all var(--t-fast);
}
.dl-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(16,185,129,0.4); }
.dl-info { display: flex; flex-direction: column; gap: 0.18rem; }
.dl-quality { font-weight: 800; font-size: 0.92rem; color: #fff; }
.q-1080 { color: #34d399; } .q-720 { color: #60a5fa; } .q-480 { color: #fbbf24; }
.dl-meta { font-size: 0.72rem; color: var(--text-dim); }
.btn-dl { background: var(--green); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 0.48rem 1.2rem; border-radius: 8px; transition: all var(--t-fast); }
.btn-dl:hover { background: #059669; transform: translateY(-2px); }
.dl-tip { margin-top: 1.5rem; background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.22); padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.8rem; color: #fde68a; line-height: 1.6; }

/* ==========================================================================
   RESPONSIVE — Tablet ≤1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(4, 1fr); }
  .series-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .content-grid-wrapper { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { padding: 2.2rem; }
}

/* ==========================================================================
   RESPONSIVE — Mobile ≤768px
   ========================================================================== */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }

  /* Header */
  .header-container { height: 58px; padding: 0 1rem; }
  .main-nav { display: none; }
  .search-box { display: none; }
  .btn-gradient-primary { display: none; }
  .hamburger-btn { display: flex; }

  /* Bottom nav */
  .bottom-nav { display: block; }

  /* Hero */
  .hero-banner { border-radius: var(--radius-lg); min-height: 380px; margin-bottom: 1.5rem; }
  .hero-content { padding: 1.5rem; }
  .hero-title { font-size: 1.6rem; }
  .hero-synopsis { font-size: 0.85rem; -webkit-line-clamp: 2; margin-bottom: 1.2rem; }
  .hero-badge-row { gap: 0.35rem; margin-bottom: 0.7rem; }
  .hero-tag { font-size: 0.68rem; padding: 0.25rem 0.65rem; }
  .btn-hero-play { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
  .btn-hero-details { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

  /* Reels */
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

  /* Series */
  .series-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .series-grid .series-card:nth-child(n+7) { display: none; }

  /* Filter */
  .filter-btn { padding: 0.42rem 0.9rem; font-size: 0.82rem; }

  /* Section */
  .section-title { font-size: 1.1rem; }
  .section-count { font-size: 0.72rem; }
  .main-container { padding: 1rem; }

  /* Watch */
  .watch-section { padding: 1rem; border-radius: var(--radius-lg); }
  .entry-title { font-size: 1.15rem; }
  .player-wrapper.portrait { max-width: 100%; }
  .btn-pill { padding: 0.42rem 0.8rem; font-size: 0.8rem; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .site-footer { padding: 2.5rem 0 1.5rem; }

  /* SEO */
  .homepage-seo-section { padding: 1.5rem; border-radius: var(--radius-lg); }
  .homepage-seo-section h2 { font-size: 1.1rem; }

  /* Pagination */
  .page-btn { width: 38px; height: 38px; font-size: 0.82rem; }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile ≤480px
   ========================================================================== */
@media (max-width: 480px) {
  .hero-banner { min-height: 330px; border-radius: var(--radius-md); }
  .hero-title { font-size: 1.35rem; }
  .hero-synopsis { display: none; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .series-grid { gap: 0.65rem; }
  .card-info { padding: 0.7rem; }
  .card-title { font-size: 0.82rem; }
  .brand-logo { font-size: 1.35rem; }
  .logo-badge { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}
