:root {
  --site-bg: #f8fafc;
  --panel: #ffffff;
  --panel-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --accent: #7c3aed;
  --gold: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--site-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.content-section,
.page-hero,
.watch-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111827;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.logo-text {
  white-space: nowrap;
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
  color: #334155;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-toggle:hover {
  color: var(--brand);
  background: #eff6ff;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #475569;
  font-weight: 700;
}

.dropdown-menu a:hover {
  color: var(--brand);
  background: #eff6ff;
}

.header-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  cursor: pointer;
  font-weight: 800;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: #0f172a;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search input {
  padding: 11px 14px;
}

.mobile-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: #334155;
  font-weight: 800;
  background: #f8fafc;
}

.mobile-link.is-active {
  color: var(--brand);
  background: #eff6ff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #ffffff;
  background: #020617;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.38), transparent 34%), radial-gradient(circle at 70% 20%, rgba(124, 58, 237, 0.32), transparent 30%);
  z-index: 1;
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  opacity: 0.4;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.74) 46%, rgba(2, 6, 23, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 126px;
}

.hero-copy {
  max-width: 760px;
}

.hero-label,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.22);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-eyebrow {
  color: var(--brand);
  background: #eff6ff;
}

.hero h1,
.hero h2,
.page-hero h1,
.watch-info h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.hero h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.hero p,
.page-hero p,
.watch-info p {
  margin: 22px 0 0;
  max-width: 720px;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 12px;
}

.tag-row span,
.detail-meta span {
  padding: 6px 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-soft {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.3);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.content-section {
  padding: 64px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-more {
  flex: none;
  color: var(--brand);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.movie-card.is-hidden {
  display: none;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e2e8f0;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.05);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), #ef4444);
  font-weight: 950;
  box-shadow: 0 12px 20px rgba(239, 68, 68, 0.25);
}

.card-body {
  padding: 17px;
}

.card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.card-kicker span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fafc;
}

.movie-card h3 {
  margin: 12px 0 8px;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 950;
}

.movie-card h3 a:hover {
  color: var(--brand);
}

.movie-card p {
  min-height: 3.6em;
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.movie-card .tag-row {
  margin-top: 14px;
}

.card-action {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #0f172a;
  font-weight: 950;
}

.rank-panel-head a {
  color: var(--brand);
  font-size: 0.9rem;
}

.rank-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.rank-row {
  display: grid;
  grid-template-columns: 32px 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
}

.rank-row:hover {
  color: var(--brand);
  background: #f8fafc;
}

.rank-num {
  color: var(--brand);
  font-weight: 950;
}

.rank-row img {
  width: 48px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #e2e8f0;
}

.rank-title {
  overflow: hidden;
  color: #0f172a;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-meta {
  grid-column: 3;
  color: #64748b;
  font-size: 0.82rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 18px;
  border-radius: var(--radius);
  color: #ffffff;
  background: #020617;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.16);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  transition: transform 0.35s ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  margin-top: 132px;
  font-size: 1.25rem;
  font-weight: 950;
}

.category-tile strong {
  margin-top: 8px;
  color: #dbeafe;
  font-size: 0.88rem;
  line-height: 1.65;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.page-hero {
  margin-top: 32px;
  padding: 52px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.55), transparent 32%), linear-gradient(135deg, #0f172a, #1e1b4b 55%, #172554);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.small-hero p,
.category-hero p,
.ranking-hero p,
.search-hero p {
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #bfdbfe;
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.category-overview {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-cover {
  overflow: hidden;
  border-radius: 22px;
  background: #e2e8f0;
}

.category-cover img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 4px 0 10px;
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.category-overview-card p {
  color: #64748b;
  line-height: 1.8;
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.sample-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: #eff6ff;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 14px;
}

.category-movie-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ranking-layout {
  grid-template-columns: 330px minmax(0, 1fr);
}

.rank-panel-large {
  position: sticky;
  top: 96px;
}

.search-page-form {
  max-width: 740px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.search-page-form input {
  min-height: 48px;
  padding: 0 18px;
}

.watch-section {
  padding-top: 34px;
}

.watch-section .breadcrumb {
  color: #64748b;
}

.watch-section .breadcrumb a:hover {
  color: var(--brand);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 32px;
  background: #020617;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24);
}

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #020617;
  object-fit: contain;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.68));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.34);
  font-size: 2.2rem;
}

.player-overlay span:last-child {
  font-size: 1.1rem;
  font-weight: 950;
}

.watch-info {
  padding: 28px;
  border-radius: 32px;
  color: #ffffff;
  background: linear-gradient(145deg, #0f172a, #1e1b4b 58%, #172554);
  box-shadow: var(--shadow);
}

.watch-info h1 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.watch-info p {
  color: #dbeafe;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span,
.detail-tags span {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.14);
}

.detail-tags {
  margin-top: 16px;
}

.article-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.article-card h2:not(:first-child) {
  margin-top: 28px;
}

.article-card p {
  margin: 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.9;
}

.site-footer {
  margin-top: 72px;
  padding: 52px 0;
  color: #cbd5e1;
  background: #020617;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 1.1fr;
  gap: 28px;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.2rem;
}

.footer-inner p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links,
.footer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a,
.footer-cats a {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a:hover,
.footer-cats a:hover {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.4);
}

@media (max-width: 1120px) {
  .movie-grid,
  .category-movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-content,
  .watch-layout,
  .split-section,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .rank-panel,
  .rank-panel-large {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .header-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .hero,
  .hero-slider {
    min-height: 620px;
  }

  .hero-content {
    padding: 90px 0 120px;
  }

  .movie-grid,
  .compact-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 34px 24px;
  }

  .player-shell,
  .video-player {
    min-height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .footer-inner,
  .content-section,
  .page-hero,
  .watch-section {
    width: min(100% - 22px, 1180px);
  }

  .logo-text {
    font-size: 0.98rem;
  }

  .hero,
  .hero-slider {
    min-height: 620px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p,
  .page-hero p,
  .watch-info p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .category-movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 15px;
  }

  .watch-info,
  .article-card {
    padding: 22px;
  }

  .player-shell,
  .video-player {
    min-height: 260px;
  }
}
