:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-soft: #eef6ff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --cyan: #06b6d4;
  --pink: #f43f5e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #eef5ff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 48%, #0891b2 100%);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.25);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--brand);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  font-size: 22px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 15px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.big-search,
.search-page-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.header-search input,
.mobile-search input,
.big-search input,
.search-page-form input {
  width: 260px;
  min-width: 0;
  padding: 11px 16px;
  color: #ffffff;
  border: 0;
  outline: none;
  background: transparent;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button,
.big-search button,
.search-page-form button {
  padding: 11px 18px;
  color: var(--brand-dark);
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mobile-links,
.mobile-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile-cats a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-visual {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.74) 42%, rgba(15, 23, 42, 0.16) 100%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(8, 145, 178, 0.22)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), #f8fbff 96%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding: 86px 0 118px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  color: #0c4a6e;
  background: linear-gradient(90deg, #dff7ff, #eef6ff);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
}

.hero h1,
.hero h2 {
  margin: 24px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

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

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

.hero-tags span,
.movie-tags span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #eef6ff;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

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

.primary-btn,
.ghost-btn,
.text-link,
.panel-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.34);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.panel-more:hover {
  transform: translateY(-2px);
}

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

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.82);
  border-radius: 999px;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

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

.quick-search-band {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}

.quick-search-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quick-search-inner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.quick-search-inner p {
  margin: 0;
  color: var(--muted);
}

.big-search,
.search-page-form {
  border-color: var(--line);
  background: #ffffff;
}

.big-search input,
.search-page-form input {
  flex: 1;
  width: auto;
  color: var(--text);
}

.big-search button,
.search-page-form button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.content-section,
.page-main {
  padding: 58px 0;
}

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

.section-heading h2,
.page-hero h1,
.rank-panel h2,
.story-block h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.story-block p,
.detail-one-line {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading a,
.text-link,
.panel-more {
  color: var(--brand-dark);
  background: #eaf2ff;
}

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

.category-tile,
.category-card-large,
.movie-card,
.rank-panel,
.story-block,
.detail-info,
.filter-bar,
.page-hero {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.category-tile {
  overflow: hidden;
  padding: 16px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.category-covers img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.category-tile strong {
  display: block;
  font-size: 19px;
  margin-bottom: 6px;
}

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

.movie-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

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

.page-grid {
  grid-template-columns: repeat(5, 1fr);
}

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.76));
}

.poster-badge,
.rank-number {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.poster-badge {
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  background: rgba(37, 99, 235, 0.86);
  font-size: 12px;
}

.rank-number {
  left: 10px;
  bottom: 10px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f43f5e, #f97316);
  font-style: normal;
}

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

.movie-title {
  display: block;
  min-height: 48px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
}

.movie-title:hover {
  color: var(--brand);
}

.movie-meta,
.movie-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.movie-desc {
  min-height: 64px;
}

.movie-tags {
  margin-top: 12px;
}

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

.rank-panel {
  padding: 22px;
  border-radius: var(--radius);
}

.rank-panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

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

.rank-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas: "num title" "num meta";
  column-gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fbff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-list a:hover {
  background: #eaf2ff;
  transform: translateX(2px);
}

.rank-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  font-weight: 900;
}

.rank-list strong {
  grid-area: title;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-list em {
  grid-area: meta;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-style: normal;
}

.panel-more {
  width: 100%;
  margin-top: 18px;
}

.seo-block {
  margin-bottom: 70px;
  padding: 34px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  box-shadow: var(--shadow);
}

.seo-block h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.seo-block p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 800;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #94a3b8;
}

.breadcrumb.light {
  color: rgba(255, 255, 255, 0.74);
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 70%);
}

.page-hero > * {
  position: relative;
}

.small-hero,
.category-hero,
.rank-hero,
.search-hero {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.96), rgba(236, 254, 255, 0.92));
}

.filter-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.filter-input,
.filter-select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  outline: none;
}

.filter-input {
  flex: 1;
  padding: 0 18px;
}

.filter-select {
  padding: 0 16px;
  color: var(--text);
}

.category-list-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card-large {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card-cover {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.category-card-cover img {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
}

.category-card-large h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

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

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 92px;
}

.search-page-form {
  max-width: 680px;
  margin-top: 24px;
}

.search-results {
  margin-top: 30px;
}

.detail-main {
  background: linear-gradient(180deg, #0f172a 0, #0f172a 420px, var(--bg) 421px);
}

.player-section {
  padding: 28px 0 48px;
  color: #ffffff;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.84)),
    radial-gradient(circle at center, rgba(37, 99, 235, 0.24), transparent 48%);
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-button {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--brand-dark);
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  transition: transform 0.2s ease;
}

.play-layer:hover .play-button,
.play-button:hover {
  transform: scale(1.08);
}

.play-layer strong {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
}

.play-layer span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.detail-content {
  padding-bottom: 70px;
}

.detail-info {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: -20px;
  padding: 24px;
  border-radius: 30px;
}

.detail-cover img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.detail-meta div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fbff;
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.story-block {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius);
}

.story-block p {
  color: #334155;
  font-size: 17px;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  color: #dbeafe;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
}

.site-footer p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.82);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 9px;
  min-width: 150px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(219, 234, 254, 0.74);
  text-align: center;
}

.is-hidden-card {
  display: none !important;
}

.empty-state {
  padding: 34px;
  color: var(--muted);
  border: 1px dashed #bfdbfe;
  border-radius: var(--radius);
  background: #ffffff;
  text-align: center;
}

@media (max-width: 1180px) {
  .movie-grid,
  .page-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-search input {
    width: 100%;
  }

  .hero-inner,
  .quick-search-inner,
  .split-layout,
  .ranking-layout,
  .detail-info,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
    padding-top: 68px;
  }

  .hero-poster {
    max-width: 320px;
    justify-self: center;
  }

  .category-grid,
  .category-list-page {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .detail-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
  }

  .hero h1,
  .hero h2 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .quick-search-band {
    margin-top: -24px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .page-grid,
  .category-grid,
  .category-list-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

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

  .movie-title {
    min-height: 42px;
    font-size: 14px;
  }

  .movie-desc {
    min-height: auto;
    display: none;
  }

  .movie-meta {
    font-size: 12px;
  }

  .movie-tags span:nth-child(n + 3) {
    display: none;
  }

  .page-hero,
  .story-block,
  .detail-info {
    padding: 22px;
    border-radius: 22px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .play-button {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .compact-grid,
  .page-grid,
  .category-grid,
  .category-list-page {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }
}
