:root {
  color-scheme: dark;
  --bg-950: #020617;
  --bg-925: #07111f;
  --bg-900: #0f172a;
  --bg-850: #111c31;
  --bg-800: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.22);
  --emerald: #10b981;
  --emerald-light: #34d399;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-950) 0%, var(--bg-900) 48%, var(--bg-950) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 8%, rgba(16, 185, 129, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.16), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.6), transparent 42%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
}

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

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

.brand-name {
  font-size: clamp(20px, 2.2vw, 28px);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--emerald), #059669);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.28);
  font-size: 15px;
  padding-left: 2px;
}

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

.nav-link,
.mobile-link {
  color: var(--soft);
  font-weight: 650;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--emerald-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.mobile-link {
  display: block;
  padding: 12px 0;
}

.main-content {
  min-height: 70vh;
}

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

.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

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

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.62) 48%, rgba(2, 6, 23, 0.18));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 35%;
  background: linear-gradient(180deg, transparent, var(--bg-950));
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-panel {
  width: min(680px, 100%);
  padding-top: 36px;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.22);
  color: #a7f3d0;
  font-size: 13px;
  line-height: 1;
  padding: 7px 10px;
}

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

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  color: #dbeafe;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 9px 12px;
  backdrop-filter: blur(8px);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.hero-search button,
.filter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary,
.hero-search button,
.filter-panel button {
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: white;
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.28);
}

.btn-primary:hover,
.hero-search button:hover,
.filter-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(16, 185, 129, 0.38);
}

.btn-secondary {
  color: white;
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.28);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 211, 153, 0.48);
  background: rgba(15, 23, 42, 0.92);
}

.hero-search {
  display: flex;
  width: min(610px, 100%);
  gap: 10px;
  margin-top: 22px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(12px);
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  outline: none;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.86);
  color: white;
  padding: 0 14px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.56);
  color: white;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.hero-control:hover {
  background: rgba(2, 6, 23, 0.82);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.22s ease, background 0.22s ease;
}

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

.section {
  padding: 74px 0;
}

.section-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.52);
  box-shadow: var(--shadow);
}

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

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.lead {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-more {
  color: var(--emerald-light);
  font-weight: 750;
  white-space: nowrap;
}

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

.category-tile {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.28), transparent 34%);
}

.category-tile h2,
.category-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
}

.category-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.gradient-a {
  background: linear-gradient(135deg, #059669, #0f766e);
}

.gradient-b {
  background: linear-gradient(135deg, #2563eb, #0f172a);
}

.gradient-c {
  background: linear-gradient(135deg, #7c3aed, #312e81);
}

.gradient-d {
  background: linear-gradient(135deg, #db2777, #7f1d1d);
}

.gradient-e {
  background: linear-gradient(135deg, #ea580c, #431407);
}

.gradient-f {
  background: linear-gradient(135deg, #e11d48, #831843);
}

.gradient-g {
  background: linear-gradient(135deg, #ca8a04, #713f12);
}

.gradient-h {
  background: linear-gradient(135deg, #0891b2, #164e63);
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.movie-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(5, 150, 105, 0.18));
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(0.82);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-frame::after {
  opacity: 1;
}

.duration-pill,
.rating-pill {
  position: absolute;
  z-index: 2;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.duration-pill {
  left: 12px;
  background: rgba(2, 6, 23, 0.72);
}

.rating-pill {
  right: 12px;
  background: rgba(245, 158, 11, 0.92);
}

.play-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding-left: 3px;
  box-shadow: 0 20px 46px rgba(16, 185, 129, 0.34);
}

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

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
  transition: color 0.22s ease;
}

.movie-card:hover h3 {
  color: var(--emerald-light);
}

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

.movie-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta {
  margin-top: auto;
  justify-content: space-between;
}

.highlight-panel {
  border-radius: 30px;
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.72));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

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

.rank-card {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-card:hover {
  transform: translateX(4px);
  border-color: rgba(52, 211, 153, 0.36);
  background: rgba(30, 41, 59, 0.84);
}

.rank-card-link {
  display: grid;
  grid-template-columns: 58px 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.14);
  color: var(--emerald-light);
  font-weight: 900;
}

.rank-card img {
  width: 112px;
  height: 68px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
}

.rank-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.page-hero-card {
  border-radius: 32px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(15, 23, 42, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.22), transparent 36%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

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

.page-hero p {
  max-width: 760px;
  color: var(--soft);
  font-size: 18px;
  margin: 16px 0 0;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px 140px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.empty-state {
  padding: 42px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: 22px;
}

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

.breadcrumb a {
  color: var(--emerald-light);
}

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

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.player-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.76));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  background: rgba(16, 185, 129, 0.95);
  box-shadow: 0 20px 58px rgba(16, 185, 129, 0.38);
  font-size: 30px;
}

.player-title {
  width: min(86%, 640px);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 850;
  text-align: center;
}

.player-message {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 6;
  display: none;
  border-radius: 14px;
  background: rgba(127, 29, 29, 0.86);
  color: white;
  padding: 12px 14px;
  text-align: center;
}

.player-message.is-visible {
  display: block;
}

.detail-title-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 24px 0 12px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.detail-rating {
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--amber);
  color: white;
  font-size: 20px;
  font-weight: 900;
  padding: 10px 14px;
}

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

.detail-tags a,
.detail-tags span {
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--soft);
  padding: 8px 12px;
}

.content-box,
.aside-box {
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: 24px;
  margin-top: 22px;
}

.content-box h2,
.aside-box h2,
.aside-box h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-box p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
}

.aside {
  position: sticky;
  top: 96px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: white;
  font-weight: 700;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-list .movie-card-body p,
.related-list .tag-row {
  display: none;
}

.site-footer {
  margin-top: 72px;
  padding: 54px 0 28px;
  background: rgba(2, 6, 23, 0.74);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

.footer-brand {
  font-size: 22px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.site-footer p,
.site-footer li,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--emerald-light);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

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

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

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

  .hero-panel {
    padding: 92px 0 108px;
  }

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

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

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

  .aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .container,
  .footer-grid,
  .footer-bottom,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-control {
    display: none;
  }

  .hero-search,
  .section-heading,
  .footer-bottom,
  .detail-title-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .rank-card-link {
    grid-template-columns: 44px 84px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .rank-card img {
    width: 84px;
    height: 58px;
  }

  .rank-card p {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    padding-top: 46px;
  }
}
