:root {
  color-scheme: dark;
  --bg: #07090f;
  --bg-soft: #10131c;
  --panel: rgba(17, 24, 39, 0.82);
  --panel-solid: #111827;
  --text: #f8fafc;
  --muted: #a8b0c2;
  --soft: #667085;
  --line: rgba(255, 255, 255, 0.1);
  --red: #dc2626;
  --red-dark: #7f1d1d;
  --red-glow: rgba(220, 38, 38, 0.34);
  --gold: #fde68a;
  --orange: #fb923c;
  --green: #22c55e;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(220, 38, 38, 0.22), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(251, 146, 60, 0.14), transparent 24%),
    linear-gradient(180deg, #030712 0%, #0b0f19 42%, #090b12 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.98), rgba(185, 28, 28, 0.96), rgba(127, 29, 29, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #facc15, #dc2626);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fef3c7, #fff);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: #fecaca;
  font-size: 12px;
}

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

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fee2e2;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.11);
}

.header-search {
  display: flex;
  align-items: center;
  width: 290px;
  padding: 4px;
  border: 1px solid rgba(254, 202, 202, 0.22);
  border-radius: 999px;
  background: rgba(69, 10, 10, 0.35);
}

.header-search input {
  flex: 1;
  width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 8px 10px;
  font-size: 14px;
}

.header-search input::placeholder {
  color: #fecaca;
}

.header-search button,
.search-page-form button,
.big-search button,
.filter-bar button {
  border: 0;
  cursor: pointer;
  color: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #f97316);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel.open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fee2e2;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 760px;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
}

.hero-overlay,
.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(220, 38, 38, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.94) 0%, rgba(23, 7, 12, 0.82) 42%, rgba(3, 7, 18, 0.42) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.42), #07090f 94%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: center;
  padding: 100px 0 180px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero p,
.page-hero p,
.detail-one-line {
  margin: 24px 0 0;
  max-width: 710px;
  color: #d6d9e3;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
}

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

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

.hero-tags span,
.tag-row span {
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.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 20px;
  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: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 18px 35px rgba(251, 146, 60, 0.22);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.55), rgba(17, 24, 39, 0.9));
  box-shadow: var(--shadow), 0 0 80px var(--red-glow);
  transform: rotate(2deg);
  transition: 0.25s ease;
}

.hero-poster:hover {
  transform: translateY(-6px) rotate(0deg);
}

.hero-poster img {
  height: 500px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  height: 42px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.9);
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 30px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dot.active {
  background: linear-gradient(90deg, #fde68a, #dc2626);
}

.hero-search-card {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-search-card form,
.big-search,
.search-page-form {
  display: flex;
  gap: 10px;
}

.hero-search-card input,
.big-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: 0;
  color: #fff;
  background: rgba(2, 6, 23, 0.68);
  padding: 14px 18px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.quick-links a,
.footer-links a,
.category-samples a {
  display: inline-flex;
  border-radius: 999px;
  color: #fecaca;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  font-size: 13px;
  transition: 0.2s ease;
}

.quick-links a:hover,
.footer-links a:hover,
.category-samples a:hover {
  color: #fff;
  background: rgba(220, 38, 38, 0.42);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-lift {
  margin-top: -8px;
}

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

.section-head h2,
.panel-card h2,
.content-card h2,
.side-card h2,
.related-channel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.035em;
}

.section-more,
.text-link {
  color: #fecaca;
  font-weight: 800;
}

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

.category-chip {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 10%, rgba(220, 38, 38, 0.22), transparent 28%),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 113, 113, 0.4);
}

.category-chip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.category-chip span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 113, 113, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #7f1d1d);
}

.poster-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.poster-play {
  position: absolute;
  inset: auto 12px 12px auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #fb923c);
}

.movie-card-body {
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fecaca;
  font-size: 12px;
}

.movie-card h3 {
  margin: 9px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card p {
  margin: 0 0 13px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.movie-card.compact .movie-card-body {
  padding: 13px;
}

.movie-card.compact h3 {
  font-size: 16px;
}

.movie-card.compact p {
  display: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.panel-card,
.content-card,
.side-card,
.player-card,
.category-overview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 28px;
}

.glow-panel {
  background:
    radial-gradient(circle at 85% 15%, rgba(220, 38, 38, 0.27), transparent 32%),
    rgba(15, 23, 42, 0.78);
}

.glow-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.rank-row:hover {
  background: rgba(220, 38, 38, 0.26);
}

.mini-rank {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 10%, rgba(220, 38, 38, 0.2), transparent 32%),
    linear-gradient(180deg, #111827, #07090f);
}

.page-hero > div {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 54px;
}

.simple-hero h1 {
  max-width: 860px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #fecaca;
  font-size: 14px;
}

.crumbs a:hover {
  color: #fff;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
}

.category-cover {
  min-height: 240px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-color: #1f2937;
}

.category-overview-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.filter-section {
  padding-top: 40px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 170px;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.72);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: 0;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  padding: 12px 14px;
}

.empty-state {
  display: none;
  padding: 48px 18px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
}

.empty-state.show {
  display: block;
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 70px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1f2937, #7f1d1d);
  box-shadow: var(--shadow), 0 0 80px var(--red-glow);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  color: #e5e7eb;
}

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

.detail-section {
  padding-top: 40px;
}

.player-card {
  padding: 16px;
  overflow: hidden;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(220, 38, 38, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.72));
}

.video-cover.is-hidden {
  display: none;
}

.video-play-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #7f1d1d;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
  font-size: 34px;
}

.video-cover strong {
  font-size: clamp(20px, 3vw, 34px);
}

.video-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(127, 29, 29, 0.86);
}

.video-message.show {
  display: block;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  margin-top: 22px;
}

.content-card,
.side-card {
  padding: 28px;
}

.content-card p {
  color: #d6d9e3;
  line-height: 2;
  font-size: 16px;
}

.content-card h2 + p {
  margin-top: 14px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 18px 0 0;
}

.side-card dt {
  color: #fecaca;
}

.side-card dd {
  margin: 0;
  color: #e5e7eb;
}

.related-channel {
  padding-top: 20px;
}

.footer-links,
.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.82);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px;
  text-align: center;
  color: var(--soft);
}

.search-page-form {
  max-width: 760px;
  margin-top: 26px;
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 280px;
    gap: 34px;
  }

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

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

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

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

  .hero {
    min-height: 860px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 260px;
  }

  .hero-poster {
    max-width: 260px;
    min-height: auto;
    transform: none;
  }

  .hero-poster img {
    height: 380px;
  }

  .hero-controls {
    bottom: 150px;
  }

  .section-head,
  .split-section,
  .detail-content-grid,
  .footer-grid,
  .overview-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

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

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

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

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

  .category-cover {
    min-height: 280px;
  }

  .detail-poster {
    max-width: 260px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 64px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-search-card form,
  .big-search,
  .search-page-form {
    flex-direction: column;
  }

  .category-grid,
  .large-grid,
  .compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p,
  .tag-row {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .rank-row {
    grid-template-columns: 34px 1fr;
  }

  .rank-meta {
    grid-column: 2;
  }

  .video-play-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}
