:root {
  --page: #fff7ed;
  --page-soft: #fffbeb;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: rgba(245, 158, 11, 0.24);
  --brand: #d97706;
  --brand-deep: #ea580c;
  --brand-soft: #fef3c7;
  --red: #ef4444;
  --shadow: 0 20px 50px rgba(146, 64, 14, 0.12);
  --shadow-card: 0 12px 32px rgba(146, 64, 14, 0.10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 191, 36, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.18), transparent 28rem),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 45%, #ffedd5 100%);
  min-height: 100vh;
}

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;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.26);
  transform: rotate(-5deg);
}

.logo-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #b45309, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: #374151;
  font-weight: 700;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 0.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--brand);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-form {
  position: relative;
}

.search-input {
  width: 16rem;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.72rem 1.05rem 0.72rem 2.55rem;
  color: #1f2937;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.search-input:focus {
  border-color: transparent;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.36);
}

.search-icon {
  position: absolute;
  left: 0.92rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: #9ca3af;
}

.mobile-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.9rem;
  background: #fff7ed;
  color: #92400e;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 1.35rem;
  height: 0.16rem;
  margin: 0.24rem auto;
  border-radius: 999px;
  background: currentColor;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-slider {
  position: relative;
  height: min(70vh, 720px);
  min-height: 34rem;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.55) 42%, rgba(17, 24, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.84) 0%, transparent 48%);
}

.hero-content {
  position: absolute;
  left: max(1.25rem, calc((100vw - 1280px) / 2 + 1.25rem));
  bottom: 4.8rem;
  width: min(42rem, calc(100% - 2.5rem));
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(252, 211, 77, 0.36);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  padding: 0.45rem 0.9rem;
  color: #fde68a;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-title {
  margin: 1.1rem 0 0.85rem;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-desc {
  max-width: 39rem;
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.42rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.badge.light {
  background: var(--brand-soft);
  color: #92400e;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.18rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.30);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.btn-light {
  color: #92400e;
  background: #fff;
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.12);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.30);
}

.hero-prev {
  left: 1.25rem;
}

.hero-next {
  right: 1.25rem;
}

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

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 1.9rem;
  background: #fbbf24;
}

.main {
  padding: 3rem 0 4rem;
}

.section {
  margin-bottom: 3.2rem;
}

.section-card {
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.45rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-pad {
  padding: 1.6rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.35rem;
}

.section-kicker {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.045em;
}

.section-text {
  max-width: 48rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 20px 42px rgba(146, 64, 14, 0.18);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fef3c7);
}

.poster-wrap.horizontal {
  aspect-ratio: 16 / 10;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.0), rgba(17, 24, 39, 0.72));
  opacity: 0;
  transition: opacity 0.22s ease;
}

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

.play-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #f97316;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 1rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
}

.card-title {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-title a:hover {
  color: var(--brand);
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  color: #6b7280;
  font-size: 0.85rem;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 21rem);
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.8rem;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

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

.category-tile {
  position: relative;
  min-height: 10rem;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.72), transparent 8rem),
    linear-gradient(135deg, #fef3c7, #fdba74);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(146, 64, 14, 0.16);
}

.category-tile-inner {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
}

.category-tile h2,
.category-tile h3 {
  margin: 0 0 0.6rem;
  color: #78350f;
  font-size: 1.25rem;
}

.category-tile p {
  margin: 0;
  color: #92400e;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: #fff;
  color: #92400e;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pill:hover,
.pill.is-active {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.rank-list {
  display: grid;
  gap: 0.85rem;
}

.rank-item {
  display: grid;
  grid-template-columns: 3.8rem 5.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.05rem;
  background: #fff;
  padding: 0.85rem;
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.45);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  font-size: 1.05rem;
  font-weight: 900;
}

.rank-poster {
  width: 5.5rem;
  aspect-ratio: 16 / 10;
  border-radius: 0.8rem;
  object-fit: cover;
  background: #fed7aa;
}

.rank-title {
  margin: 0 0 0.32rem;
  font-size: 1.05rem;
}

.rank-title a:hover {
  color: var(--brand);
}

.rank-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: #92400e;
  background: var(--brand-soft);
  font-weight: 900;
}

.page-hero {
  padding: 4.2rem 0 2.4rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(251, 191, 36, 0.34), transparent 25rem),
    radial-gradient(circle at 80% 5%, rgba(249, 115, 22, 0.18), transparent 26rem);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 52rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.filter-input {
  width: 100%;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  outline: none;
  background: #fff;
}

.filter-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.34);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #92400e;
  font-size: 0.92rem;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  gap: 1.45rem;
  align-items: start;
}

.player-card {
  border-radius: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.20);
  background: #111827;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111827;
  cursor: pointer;
}

.player-box video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-box video {
  z-index: 1;
  background: #111827;
}

.player-cover {
  z-index: 2;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.70));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border: 0;
  border-radius: 999px;
  color: #f97316;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-button:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.05);
}

.player-box.is-playing .player-cover,
.player-box.is-playing .player-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-info {
  padding: 1.45rem;
  background: #fff;
}

.detail-info h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.055em;
}

.detail-info p {
  color: var(--muted);
  line-height: 1.85;
}

.meta-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.meta-box {
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1rem;
  background: #fffbeb;
  padding: 0.9rem;
}

.meta-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 900;
}

.meta-value {
  color: #1f2937;
  font-weight: 800;
}

.article-card {
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.2rem;
  background: #fff;
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
}

.article-card h2 {
  margin: 0 0 0.7rem;
}

.article-card p {
  color: var(--muted);
  line-height: 1.9;
}

.side-card {
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 1.2rem;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.side-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.side-list {
  display: grid;
  gap: 0.75rem;
}

.side-link {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  border-radius: 0.9rem;
  padding: 0.45rem;
  transition: background 0.2s ease;
}

.side-link:hover {
  background: #fff7ed;
}

.side-link img {
  width: 4.6rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.72rem;
  background: #fed7aa;
}

.side-link strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #1f2937;
}

.side-link span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  border-top: 1px solid rgba(245, 158, 11, 0.20);
  background: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #92400e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--brand-deep);
}

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

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

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

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .nav-menu {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0 0.4rem;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .search-form.header-search {
    display: none;
  }

  .hero-slider {
    min-height: 32rem;
    height: 66vh;
  }

  .hero-content {
    bottom: 4rem;
  }

  .hero-control {
    display: none;
  }

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

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

  .filter-panel {
    display: flex;
  }

  .rank-item {
    grid-template-columns: 2.8rem 4.6rem minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
    justify-self: start;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .container,
  .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .hero-slider {
    min-height: 30rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

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

  .scroll-row {
    grid-auto-columns: minmax(15rem, 82vw);
  }

  .rank-item {
    grid-template-columns: 2.5rem 4.2rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .player-button {
    width: 4.4rem;
    height: 4.4rem;
  }
}
