:root {
  color-scheme: light;
  --page-bg: #fff8ec;
  --surface: #ffffff;
  --surface-soft: #fff3d9;
  --ink: #241809;
  --muted: #7a6348;
  --line: rgba(181, 126, 34, 0.22);
  --amber: #f59e0b;
  --orange: #f97316;
  --deep: #451a03;
  --shadow: 0 24px 60px rgba(120, 53, 15, 0.16);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.24), transparent 34rem),
    linear-gradient(180deg, #fff7e6 0%, #fffaf1 38%, #fff 100%);
  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 {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--deep);
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}

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

.desktop-nav a,
.mobile-panel a {
  font-weight: 700;
  color: #604313;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--orange);
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.big-search input,
.local-filter-card input {
  width: 100%;
  border: 2px solid rgba(245, 158, 11, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input {
  min-width: 240px;
  padding: 11px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.local-filter-card input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.26);
}

.header-search button,
.mobile-search button {
  padding: 11px 18px;
}

.big-search button,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.34);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff2d7;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep);
  border-radius: 99px;
}

.mobile-panel {
  border-top: 1px solid var(--line);
  padding: 16px;
  background: #fff8ec;
}

.mobile-panel nav {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #1c1207;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-slide img,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 8, 1, 0.86) 0%, rgba(24, 12, 1, 0.62) 44%, rgba(24, 12, 1, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: var(--container);
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 20px 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 950;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

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

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

.hero-meta span,
.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

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

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 38px;
  background: #fff;
}

.hero-category-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(24, 12, 1, 0.54);
  backdrop-filter: blur(16px);
}

.hero-category-strip .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 14px;
}

.hero-category-strip a {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 16px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 72px 0;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 243, 217, 0.78), rgba(255, 255, 255, 0.65));
}

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

.section-head h2,
.search-card h2,
.highlight-panel h2,
.page-hero h1,
.detail-info h1,
.article-block h2,
.detail-side h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-head h2,
.search-card h2,
.highlight-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-head > a,
.inline-head a {
  color: var(--orange);
  font-weight: 900;
}

.search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.search-card p,
.page-hero p,
.highlight-panel p,
.article-block p {
  color: var(--muted);
  line-height: 1.8;
}

.big-search {
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.big-search input {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  background: transparent;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(181, 126, 34, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(120, 53, 15, 0.11);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 26px 54px rgba(120, 53, 15, 0.18);
}

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

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.card-badge,
.card-score,
.rank-mark {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.card-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(245, 158, 11, 0.92);
}

.card-score {
  right: 12px;
  top: 12px;
  padding: 6px 9px;
  background: rgba(15, 23, 42, 0.74);
}

.rank-mark {
  left: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.34);
}

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

.movie-card-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

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

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

.movie-desc {
  display: -webkit-box;
  min-height: 43px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row,
.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span,
.genre-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #8a4a05;
  background: #fff0c7;
  font-size: 12px;
  font-weight: 800;
}

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

.category-tile,
.category-card {
  display: grid;
  min-height: 148px;
  align-content: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 35%),
    linear-gradient(135deg, #92400e, #f59e0b 52%, #f97316);
  box-shadow: 0 20px 44px rgba(146, 64, 14, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px rgba(146, 64, 14, 0.28);
}

.category-tile strong,
.category-card span {
  font-size: 22px;
  font-weight: 950;
}

.category-tile span,
.category-card strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.two-column,
.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.inline-head {
  margin-bottom: 18px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(249, 115, 22, 0.45);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 950;
}

.rank-item img {
  width: 72px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-info em {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-score {
  color: var(--orange);
  font-weight: 950;
}

.highlight-panel {
  min-height: 100%;
  padding: 34px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(145deg, #431407, #92400e 54%, #f97316);
  box-shadow: var(--shadow);
}

.highlight-panel span {
  color: #fed7aa;
  font-weight: 900;
}

.highlight-panel h2,
.highlight-panel p {
  color: #fff;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.36), transparent 40%),
    linear-gradient(135deg, #241007, #78350f 58%, #f59e0b);
}

.page-hero {
  padding: 92px 0 72px;
}

.slim-hero {
  padding-bottom: 54px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

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

.breadcrumb em {
  color: #fff;
  font-style: normal;
}

.category-nav-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 6px;
}

.category-nav-row a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #7c4a03;
  background: #fff;
  font-weight: 850;
}

.category-nav-row a.active,
.category-nav-row a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.local-filter-card {
  margin-bottom: 24px;
}

.local-filter-card input {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  background: #fff;
}

.empty-state {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: #fff;
}

.detail-hero {
  min-height: 640px;
}

.detail-bg,
.detail-mask {
  position: absolute;
  inset: 0;
}

.detail-bg {
  opacity: 0.36;
  filter: blur(2px) saturate(1.12);
  transform: scale(1.02);
}

.detail-mask {
  background:
    linear-gradient(90deg, rgba(23, 10, 3, 0.92), rgba(23, 10, 3, 0.68), rgba(23, 10, 3, 0.36)),
    linear-gradient(180deg, rgba(23, 10, 3, 0.18), #fff8ec 100%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 80px;
}

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

.detail-poster {
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

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

.detail-info h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
}

.detail-line {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.75;
}

.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.detail-info .primary-btn {
  margin-top: 28px;
}

.detail-main {
  padding-top: 0;
  margin-top: -96px;
  position: relative;
  z-index: 4;
}

.player-card,
.detail-side,
.article-block {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.play-trigger {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 46px rgba(249, 115, 22, 0.34);
  font-size: 28px;
}

.play-trigger strong {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 18px;
}

.detail-side {
  padding: 26px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 18px 0;
}

.detail-side dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  font-weight: 900;
}

.article-block {
  padding: 34px;
}

.article-block h2 + p {
  margin-top: 12px;
}

.article-block p {
  font-size: 17px;
}

.site-footer {
  color: #ffedd5;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 34%),
    linear-gradient(135deg, #2a1105, #78350f);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(200px, 0.8fr) minmax(240px, 1fr);
  gap: 34px;
  padding: 52px 0 32px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 520px;
  color: #fed7aa;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

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

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 16px;
  color: #fed7aa;
  text-align: center;
  font-size: 14px;
}

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

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

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

  .header-search {
    display: none;
  }
}

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

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

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

  .search-card,
  .two-column,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .nav-shell {
    min-height: 66px;
  }

  .site-logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .hero-content {
    min-height: 610px;
  }

  .hero-content h1,
  .detail-info h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-content p,
  .detail-line {
    font-size: 16px;
  }

  .section {
    padding: 50px 0;
  }

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

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

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

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

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

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

  .big-search,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .big-search input {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
  }

  .rank-item {
    grid-template-columns: 32px 58px minmax(0, 1fr);
  }

  .rank-item img {
    width: 58px;
    height: 46px;
  }

  .rank-score {
    display: none;
  }

  .detail-hero-inner {
    padding-top: 48px;
  }

  .detail-main {
    margin-top: -52px;
  }

  .article-block,
  .detail-side,
  .search-card,
  .highlight-panel {
    padding: 22px;
    border-radius: 20px;
  }
}
