:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-400: #f87171;
  --orange-400: #fb923c;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.26);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, var(--slate-50) 0%, #ffffff 46%, #f8fafc 100%);
}

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: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-800), var(--slate-700), var(--slate-800));
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand {
  font-size: 24px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 13px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-400));
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.32);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 9px 13px;
  color: #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--white);
  background: rgba(239, 68, 68, 0.92);
  transform: translateY(-1px);
}

.header-search {
  margin-left: auto;
  width: min(330px, 34vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.24);
}

.header-search input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

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

.header-search button {
  height: 40px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  cursor: pointer;
  background: var(--red-500);
}

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
  gap: 8px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: var(--white);
  background: var(--slate-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 68, 68, 0.32), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(251, 146, 60, 0.22), transparent 26%),
    linear-gradient(135deg, #020617 0%, #111827 48%, #1e293b 100%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: 56px;
  padding: 48px 0 78px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

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

.hero-kicker,
.page-hero span,
.quick-search-card span,
.section-heading span,
.rank-panel-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fecaca;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

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

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

.hero-tags span,
.hero-mini-tags span,
.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: #fee2e2;
  font-size: 13px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
}

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

.btn-primary,
.btn-ghost,
.watch-banner a,
.full-link,
.section-more,
.search-page-form button,
.quick-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.watch-banner a,
.search-page-form button,
.quick-search button {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  box-shadow: 0 16px 28px rgba(239, 68, 68, 0.28);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-ghost:hover,
.watch-banner a:hover,
.full-link:hover,
.section-more:hover,
.search-page-form button:hover,
.quick-search button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  width: min(380px, 100%);
  justify-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  transform: rotate(1.2deg);
}

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

.hero-controls {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
  width: 32px;
  background: var(--red-500);
}

.hero-category-strip {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.hero-category-strip a {
  padding: 9px 13px;
  color: #e5e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

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

.quick-search-section {
  padding: 46px 0 12px;
}

.quick-search-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-search-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(24px, 3vw, 34px);
}

.quick-search {
  display: flex;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: var(--slate-50);
}

.quick-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
}

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

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

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--slate-600);
  line-height: 1.8;
}

.section-more,
.full-link {
  color: var(--red-600);
  background: #fee2e2;
}

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

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

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

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

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.28);
  box-shadow: var(--shadow-soft);
}

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

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

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

.movie-score {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-400));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
}

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

.movie-card p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  color: var(--red-600);
  font-size: 12px;
  background: #fff1f2;
}

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

.rank-panel {
  padding: 22px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-strong);
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: rgba(239, 68, 68, 0.18);
}

.rank-no {
  color: #fecaca;
  font-weight: 900;
}

.rank-item img {
  width: 48px;
  height: 66px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-text strong,
.rank-text em {
  display: block;
}

.rank-text strong {
  font-size: 14px;
  color: var(--white);
}

.rank-text em {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.rank-score {
  color: #fed7aa;
  font-weight: 900;
}

.full-link {
  width: 100%;
  margin-top: 18px;
}

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

.category-tile {
  min-height: 250px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.category-posters {
  height: 112px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.category-posters img {
  width: 76px;
  height: 108px;
  object-fit: cover;
  margin-left: -18px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.category-tile h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.category-tile p {
  margin: 0;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
}

.watch-banner {
  padding: 44px;
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--red-600), #b91c1c 58%, var(--slate-900));
  box-shadow: var(--shadow-strong);
}

.watch-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.watch-banner p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #fee2e2;
  line-height: 1.8;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 30%, rgba(239, 68, 68, 0.28), transparent 26%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.filter-bar {
  margin-bottom: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 220px;
  gap: 14px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-bar input,
.filter-bar select,
.search-page-form input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  outline: none;
  background: var(--slate-50);
}

.filter-bar input:focus,
.filter-bar select:focus,
.search-page-form input:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.detail-breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #64748b;
  font-size: 14px;
}

.detail-breadcrumb a:hover {
  color: var(--red-600);
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  grid-template-areas:
    "player poster"
    "copy poster";
  gap: 24px;
}

.player-section {
  grid-area: player;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  text-align: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.78));
}

.play-icon {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  padding-left: 5px;
  color: var(--white);
  font-size: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-400));
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.36);
}

.player-overlay strong {
  max-width: 80%;
  font-size: clamp(20px, 3vw, 32px);
}

.detail-poster-card {
  position: relative;
  grid-area: poster;
  align-self: start;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.detail-score {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-400));
}

.detail-copy {
  grid-area: copy;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-kicker {
  margin-bottom: 12px;
  color: var(--red-600);
  font-weight: 800;
}

.detail-copy h1 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 18px;
  color: #475569;
  font-size: 18px;
  line-height: 1.85;
}

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

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

.detail-meta-grid span,
.detail-meta-grid strong {
  display: block;
}

.detail-meta-grid span {
  color: #64748b;
  font-size: 13px;
}

.detail-meta-grid strong {
  margin-top: 5px;
  color: var(--slate-900);
  font-size: 14px;
}

.detail-text-section {
  padding-top: 34px;
}

.article-content {
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.article-content h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 26px;
}

.article-content p {
  margin: 0 0 24px;
  color: #475569;
  font-size: 17px;
  line-height: 2;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.search-page-form {
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-page-form input {
  border-radius: 18px 0 0 18px;
  background: var(--white);
}

.search-status {
  min-height: 24px;
  margin: 18px 0;
  color: #64748b;
}

.site-footer {
  margin-top: 40px;
  color: #cbd5e1;
  background: var(--slate-950);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 30px;
}

.footer-brand {
  color: var(--white);
  font-size: 22px;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

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

.footer-links a:hover {
  color: var(--red-400);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-panel {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow: auto;
}

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

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

  .split-section,
  .rank-page-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
    max-height: none;
  }
}

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

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

  .mobile-nav.open {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 34px;
  }

  .hero-poster {
    width: min(260px, 78vw);
    justify-self: start;
  }

  .hero-controls {
    bottom: 16px;
  }

  .quick-search-card,
  .filter-bar,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-areas:
      "player"
      "copy"
      "poster";
  }

  .detail-poster-card {
    max-width: 320px;
  }

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

@media (max-width: 640px) {
  .nav-wrap {
    height: 62px;
  }

  .brand {
    font-size: 19px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -0.03em;
  }

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

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

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

  .movie-card p {
    font-size: 13px;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    margin-top: 14px;
  }

  .quick-search,
  .search-page-form {
    display: grid;
  }

  .quick-search input,
  .search-page-form input {
    min-height: 48px;
  }

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

  .rank-score {
    display: none;
  }

  .watch-banner {
    padding: 30px 20px;
  }

  .detail-copy,
  .article-content {
    padding: 22px;
  }

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