:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --accent: #dc2626;
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.32);
  font-size: 15px;
}

.brand__text,
.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong,
.footer-brand strong {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.brand small,
.footer-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #374151;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 20px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  color: #374151;
  font-weight: 700;
}

.hero {
  position: relative;
  background: #0f172a;
}

.hero-stage {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
}

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

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

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(234, 88, 12, 0.3), transparent 35%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.66) 46%, rgba(15, 23, 42, 0.16) 100%);
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: none;
  color: #ffffff;
}

.hero-slide__label,
.detail-info__label,
.page-hero span {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-slide h1 {
  width: min(760px, 100%);
  margin: 20px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-slide p {
  width: min(700px, 100%);
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
  color: #ffffff;
  font-weight: 700;
}

.hero-slide__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-actions,
.detail-info .btn {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  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) scale(1.02);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.34);
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  width: 38px;
  background: var(--primary);
}

.hero-search-panel {
  width: min(1180px, calc(100% - 32px));
  margin: -52px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 22px;
}

.hero-search-panel span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-search {
  display: flex;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  font-size: 16px;
}

.hero-search button {
  border: 0;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  cursor: pointer;
}

.hero-category-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-category-links a,
.footer-tags a,
.category-cta a,
.movie-card__tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #ffedd5;
  font-size: 13px;
  font-weight: 800;
}

.content-section,
.ranking-panel,
.detail-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

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

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

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading a,
.tool-link {
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.16);
}

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

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

.movie-card:hover .movie-card__poster img,
.category-card:hover img,
.rank-card:hover img {
  transform: scale(1.06);
}

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.62), transparent 55%);
}

.movie-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(234, 88, 12, 0.95);
  font-size: 12px;
  font-weight: 900;
}

.movie-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.movie-card__content {
  padding: 18px;
}

.movie-card__eyebrow {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-card__title:hover,
.ranking-list a:hover,
.category-card a:hover {
  color: var(--primary);
}

.movie-card p,
.rank-card p,
.category-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

.movie-card__meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3f4f6;
}

.movie-card__tags,
.detail-tags,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.movie-card--horizontal {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card--horizontal .movie-card__poster {
  height: 100%;
  aspect-ratio: auto;
}

.category-cta {
  margin: 44px 0;
  padding: 72px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.category-cta__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.category-cta__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
}

.category-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.05em;
}

.category-cta p {
  margin: 0 auto 28px;
  max-width: 720px;
  color: #ffedd5;
  font-size: 19px;
  line-height: 1.7;
}

.category-cta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-cta a {
  color: var(--primary-dark);
  background: #ffffff;
}

.ranking-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.ranking-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.ranking-list span,
.ranking-item__number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.ranking-list a {
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  padding: 94px 16px 78px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 20%, rgba(234, 88, 12, 0.44), transparent 32%),
    linear-gradient(135deg, #111827, #7c2d12 54%, #991b1b);
  overflow: hidden;
}

.page-hero--light {
  color: #111827;
  background:
    radial-gradient(circle at 20% 10%, rgba(251, 146, 60, 0.28), transparent 30%),
    linear-gradient(135deg, #fff7ed, #ffffff 70%);
  border-bottom: 1px solid #fed7aa;
}

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

.page-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: currentColor;
  opacity: 0.78;
  font-size: 19px;
  line-height: 1.8;
}

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

.category-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

.category-card__image {
  overflow: hidden;
  background: #111827;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card__body {
  padding: 24px;
}

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

.category-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-card__links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #ffedd5;
  font-size: 13px;
  font-weight: 800;
}

.tool-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.tool-bar label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #374151;
  font-weight: 900;
}

.tool-bar input,
.tool-bar select {
  min-height: 44px;
  min-width: 220px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  outline: 0;
  padding: 0 14px;
  color: #111827;
  background: #ffffff;
  font-size: 15px;
}

.tool-bar input:focus,
.tool-bar select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.13);
}

.empty-state {
  margin: 34px 0 0;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--muted);
  background: #f9fafb;
  text-align: center;
}

.ranking-stack {
  display: grid;
  gap: 16px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: stretch;
  gap: 14px;
  padding: 12px;
  background: #ffffff;
}

.ranking-item__number {
  margin: auto;
}

.rank-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 130px;
  box-shadow: none;
}

.rank-card__image {
  overflow: hidden;
  background: #111827;
}

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

.rank-card__body {
  padding: 14px 18px;
}

.rank-card__title {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 900;
}

.rank-card__meta {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-hero__backdrop {
  position: absolute;
  inset: 0;
}

.detail-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: blur(18px);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.74));
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: #fed7aa;
  font-size: 14px;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  background: #111827;
}

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

.detail-info h1 {
  margin: 22px 0 16px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.detail-info p {
  max-width: 760px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section {
  background: #0f172a;
  padding: 44px 16px;
}

.player-shell {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.35), rgba(2, 6, 23, 0.66));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay__button {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 22px 48px rgba(234, 88, 12, 0.4);
  font-size: 32px;
}

.player-overlay strong {
  max-width: min(760px, calc(100% - 48px));
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.2;
}

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

.detail-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.detail-content p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 54px 0 36px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: #d1d5db;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-tags a {
  color: #fed7aa;
  background: rgba(251, 146, 60, 0.16);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  text-align: center;
}

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

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

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

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

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .mobile-nav {
    display: block;
  }

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

  .hero-stage {
    height: 68vh;
    min-height: 520px;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

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

  .movie-card--horizontal,
  .category-card,
  .detail-layout,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .movie-card--horizontal .movie-card__poster {
    aspect-ratio: 16 / 10;
  }

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

  .ranking-list {
    grid-template-columns: 1fr;
  }

  .ranking-list li {
    grid-template-columns: 42px 1fr;
  }

  .ranking-list em {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-slide__content {
    justify-content: flex-end;
    padding-bottom: 120px;
  }

  .hero-search {
    border-radius: 18px;
    flex-direction: column;
  }

  .hero-search input {
    min-height: 50px;
  }

  .hero-search button {
    min-height: 48px;
  }

  .content-section,
  .ranking-panel,
  .detail-content {
    padding: 48px 0;
  }

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

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

  .tool-bar label,
  .tool-bar input,
  .tool-bar select {
    width: 100%;
    min-width: 0;
  }

  .rank-card,
  .ranking-item {
    grid-template-columns: 1fr;
  }

  .ranking-item__number {
    margin: 0;
  }

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