:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-50: #fff7ed;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(17, 24, 39, 0.12);
  --shadow-card: 0 12px 28px rgba(120, 53, 15, 0.14);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    linear-gradient(135deg, var(--amber-50), var(--orange-50) 58%, #fff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.94));
  border-bottom: 1px solid rgba(180, 83, 9, 0.12);
  box-shadow: 0 10px 28px rgba(120, 53, 15, 0.10);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.34);
}

.brand-copy strong {
  display: block;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(90deg, var(--amber-700), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--gray-600);
  font-size: 0.75rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--gray-700);
  font-weight: 650;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--amber-600);
  transition: width 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-700);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--amber-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--amber-700);
  border-radius: 999px;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background: var(--gray-900);
}

.hero-track {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.08);
  transform: scale(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.88)),
    radial-gradient(circle at 78% 28%, rgba(245, 158, 11, 0.36), transparent 26rem);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: 620px;
  padding: 72px 0 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy .hero-movie-title {
  margin-top: 14px;
  color: var(--amber-100);
  font-size: clamp(1.55rem, 3.4vw, 3.1rem);
}

.hero-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-tags,
.card-tags,
.detail-tags,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 20px;
}

.hero-tags span,
.card-tags span,
.detail-tags span,
.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.22);
  border: 1px solid rgba(251, 191, 36, 0.34);
}

.hero-meta {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.32);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.btn.full {
  width: 100%;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(1.5deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 0 40px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

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

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

.mini-focus {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.mini-focus img {
  width: 58px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.mini-focus strong,
.mini-focus small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-focus strong {
  color: var(--white);
}

.mini-focus small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.section-block {
  padding: 72px 0;
}

.warm-panel {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(180, 83, 9, 0.08);
  border-bottom: 1px solid rgba(180, 83, 9, 0.08);
}

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

.section-head h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.section-link,
.text-link {
  color: var(--amber-700);
  font-weight: 800;
}

.section-link:hover,
.text-link:hover {
  color: var(--orange-600);
}

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

.category-tile,
.category-cover {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius-lg);
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.category-tile {
  display: flex;
  align-items: end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.tile-overlay,
.category-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.82));
}

.tile-content {
  position: relative;
  z-index: 1;
  display: block;
  padding: 22px;
  color: var(--white);
}

.tile-content strong {
  display: block;
  font-size: 1.35rem;
}

.tile-content small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(180, 83, 9, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(120, 53, 15, 0.08);
}

.search-box {
  display: grid;
  flex: 1 1 280px;
  gap: 6px;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 800;
}

.search-box.compact {
  flex-basis: 160px;
  flex-grow: 0;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid rgba(180, 83, 9, 0.18);
  border-radius: 12px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.filter-clear {
  align-self: end;
  min-height: 44px;
  padding: 0 16px;
  color: var(--amber-700);
  font-weight: 800;
  background: var(--amber-100);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-100);
}

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

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.55));
}

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

.card-tags span {
  color: var(--amber-700);
  background: var(--amber-100);
}

.movie-card h3,
.ranking-copy h3,
.category-overview-card h2 {
  margin: 10px 0 6px;
  color: var(--gray-900);
  font-size: 1.1rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-copy h3 a:hover,
.category-overview-card h2 a:hover {
  color: var(--amber-700);
}

.movie-meta {
  margin: 0 0 8px;
  color: var(--gray-600);
  font-size: 0.86rem;
}

.movie-desc,
.ranking-copy p,
.category-overview-card p {
  color: var(--gray-700);
  font-size: 0.94rem;
}

.page-hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.26), transparent 22rem),
    linear-gradient(135deg, rgba(255, 251, 235, 0.95), rgba(255, 247, 237, 0.98));
  border-bottom: 1px solid rgba(180, 83, 9, 0.10);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--amber-700);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.category-cover {
  display: flex;
  align-items: end;
  min-height: 230px;
}

.category-cover span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.25rem;
}

.category-overview-card ul,
.footer-list {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.category-overview-card li + li,
.footer-list li + li {
  margin-top: 7px;
}

.category-overview-card li a:hover,
.footer-list a:hover {
  color: var(--amber-500);
}

.ranking-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 82px 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.10);
}

.ranking-poster img {
  width: 82px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-500));
  border-radius: 18px;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(217, 119, 6, 0.24);
}

.ranking-copy h3 {
  margin-top: 0;
}

.detail-top {
  padding: 34px 0 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.86));
}

.detail-top .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #050505;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 72vh;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    var(--cover-image) center / cover;
  border: 0;
  cursor: pointer;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-ring {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background: rgba(217, 119, 6, 0.88);
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.play-ring span {
  margin-left: 5px;
  font-size: 2rem;
}

.player-cover strong {
  max-width: 720px;
  font-size: clamp(1.4rem, 4vw, 3rem);
  line-height: 1.15;
}

.detail-section {
  padding-top: 54px;
}

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

.detail-poster-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.detail-copy {
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.detail-copy .lead {
  margin-top: 14px;
  color: var(--gray-700);
  font-size: 1.12rem;
}

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

.detail-meta li {
  padding: 14px;
  background: var(--amber-50);
  border: 1px solid rgba(180, 83, 9, 0.10);
  border-radius: 14px;
}

.detail-meta span {
  display: block;
  color: var(--gray-600);
  font-size: 0.8rem;
}

.detail-meta strong {
  color: var(--gray-900);
}

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

.detail-tags span {
  color: var(--amber-700);
  background: var(--amber-100);
}

.detail-copy h2 {
  margin: 28px 0 10px;
  color: var(--gray-900);
  font-size: 1.45rem;
}

.detail-copy p {
  color: var(--gray-700);
}

.movie-card-small .movie-card-body {
  padding: 15px;
}

.related-block {
  padding-top: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--gray-900);
  margin-top: 24px;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
}

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

.footer-tags span {
  color: var(--amber-100);
  background: rgba(245, 158, 11, 0.16);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

[data-filter-card].is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 14px;
    font-size: 0.94rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 300px;
  }

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 251, 235, 0.98);
    border: 1px solid rgba(180, 83, 9, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px;
  }

  .hero-carousel,
  .hero-track,
  .hero-grid {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 58px 0 28px;
  }

  .hero-poster {
    max-width: 280px;
    transform: none;
  }

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

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

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

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

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

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-block {
    padding: 50px 0;
  }

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

  .hero-focus,
  .category-grid,
  .movie-grid,
  .detail-meta {
    grid-template-columns: 1fr;
  }

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

  .ranking-item {
    grid-template-columns: 66px 48px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .ranking-poster img {
    width: 66px;
  }

  .rank-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .player-shell {
    min-height: 220px;
    border-radius: 20px 20px 0 0;
  }

  .play-ring {
    width: 70px;
    height: 70px;
    border-width: 8px;
  }
}
