:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --amber: #f59e0b;
  --amber-2: #f97316;
  --blue: #38bdf8;
  --purple: #c084fc;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 28rem),
    linear-gradient(180deg, #0f172a 0%, #020617 52%, #000 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #ea580c);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fde68a, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-subtitle {
  color: #cbd5e1;
  font-size: 12px;
  margin-top: 2px;
}

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

.nav-link {
  padding: 9px 14px;
  border-radius: 12px;
  color: #d1d5db;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(245, 158, 11, 0.95);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.hero-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  color: #fff;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  padding: 11px 13px;
  min-width: 0;
}

.header-search input {
  width: 230px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.search-page-form button,
.filter-panel button {
  border: none;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  padding: 11px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.search-page-form button:hover,
.filter-panel button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.12);
  color: #fff;
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
  background: #0f172a;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-search {
  margin-top: 14px;
}

.mobile-search input {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, #020617 0%, transparent 38%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 112px;
  width: min(760px, calc(100% - 48px));
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
}

.hero-content h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  width: min(680px, 100%);
  margin: 0;
  color: #d1d5db;
  font-size: 18px;
}

.hero-meta,
.detail-meta,
.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-meta {
  margin-top: 20px;
  color: #e2e8f0;
}

.hero-meta span,
.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid var(--line);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.58);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--amber);
}

.hero-search {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 38px;
  z-index: 4;
  width: min(460px, calc(100% - 48px));
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-band {
  max-width: none;
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.44), rgba(15, 23, 42, 0.5));
}

.section-band > .section-heading,
.section-band > .movie-grid,
.section-band > .ranking-list {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.heading-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.heading-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.18);
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.section-heading p {
  margin: 3px 0 0;
  color: var(--muted);
}

.section-more {
  color: #fbbf24;
  font-weight: 700;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 26px 60px rgba(245, 158, 11, 0.18);
}

.card-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.card-poster img,
.detail-poster img,
.detail-backdrop,
.ranking-row img,
.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-poster img {
  transition: transform 0.36s ease;
}

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

.card-category,
.card-duration {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: #fff;
}

.card-category {
  left: 12px;
  background: var(--amber);
}

.card-duration {
  right: 12px;
  background: rgba(0, 0, 0, 0.72);
}

.card-play,
.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  background: var(--amber);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .card-play,
.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta-row {
  color: #cbd5e1;
  font-size: 13px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.card-tags span,
.detail-tags span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 8px;
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.82);
  font-size: 12px;
}

.movie-card-horizontal {
  display: flex;
  min-height: 172px;
}

.horizontal-poster {
  width: 44%;
  aspect-ratio: auto;
  min-height: 172px;
  flex: 0 0 44%;
}

.movie-card-horizontal .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.movie-card-compact {
  display: grid;
  grid-template-columns: 52px 96px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.movie-card-compact img {
  width: 96px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.compact-index,
.ranking-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  font-weight: 900;
}

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

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

.category-tile,
.category-overview-card {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 72px;
  margin-bottom: 16px;
}

.category-thumbs img {
  border-radius: 10px;
  background: #111827;
}

.category-tile h3,
.category-overview-card h3 {
  margin: 0 0 8px;
}

.category-tile p,
.category-overview-card p {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 14px;
}

.category-tile span,
.category-count {
  color: #fbbf24;
  font-weight: 800;
}

.category-overview-title {
  display: inline-flex;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.category-samples a {
  color: #cbd5e1;
  font-size: 14px;
}

.plain-page,
.detail-page {
  min-height: 70vh;
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 24px 18px;
}

.small-hero span {
  display: inline-flex;
  padding: 7px 12px;
  color: #fff;
  background: var(--amber);
  border-radius: 999px;
  font-weight: 800;
}

.small-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.small-hero p {
  max-width: 820px;
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a {
  color: #fbbf24;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #cbd5e1;
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
}

.filter-panel strong {
  padding: 11px 0;
  white-space: nowrap;
  color: #fbbf24;
}

.detail-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  margin-top: 22px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.02);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, var(--bg), transparent 45%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 540px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 18px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.html5-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.player-overlay.hidden {
  display: none;
}

.player-play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  font-size: 30px;
  box-shadow: 0 20px 46px rgba(245, 158, 11, 0.35);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-main-card,
.detail-side-card {
  padding: 26px;
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid var(--line);
}

.detail-main-card h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-main-card p {
  margin: 0 0 24px;
  color: #d1d5db;
  font-size: 16px;
}

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

.detail-side-card dt {
  color: var(--muted);
}

.detail-side-card dd {
  margin: 0;
}

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 56px 112px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(4px);
  border-color: rgba(245, 158, 11, 0.5);
}

.ranking-row img {
  height: 70px;
  border-radius: 12px;
  background: #111827;
}

.ranking-copy {
  display: grid;
  gap: 4px;
}

.ranking-copy strong {
  font-size: 18px;
}

.ranking-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.ranking-score {
  color: #fbbf24;
  font-weight: 900;
  font-size: 18px;
}

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

.search-page-form input {
  flex: 1;
}

.search-summary {
  margin-bottom: 18px;
  color: #cbd5e1;
}

.site-footer {
  margin-top: 40px;
  color: #cbd5e1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), #000);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fbbf24;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

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

.footer-column a:hover {
  color: #fbbf24;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 14px;
}

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

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

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

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

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

@media (max-width: 820px) {
  .header-inner {
    height: auto;
    min-height: 66px;
  }

  .desktop-nav {
    display: none;
  }

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

  .site-logo {
    min-width: auto;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero-stage {
    height: 560px;
  }

  .hero-content {
    bottom: 150px;
  }

  .hero-search {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-card-horizontal {
    display: block;
  }

  .horizontal-poster {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

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

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

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

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

@media (max-width: 560px) {
  .header-inner,
  .content-section,
  .page-hero,
  .breadcrumb,
  .detail-hero-inner,
  .footer-inner,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-stage {
    height: 520px;
  }

  .hero-content {
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-search {
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta,
  .detail-meta {
    gap: 8px;
    font-size: 13px;
  }

  .four-grid,
  .horizontal-grid,
  .category-grid,
  .category-overview-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

  .ranking-row {
    grid-template-columns: 42px 82px 1fr;
  }

  .ranking-score {
    grid-column: 3;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
