:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-soft: #fff7ed;
  --gold: #facc15;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --paper: #ffffff;
  --soft: #fff7ed;
  --shadow: 0 18px 45px rgba(234, 88, 12, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(254, 215, 170, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong,
.footer-brand {
  font-size: 22px;
  background: linear-gradient(90deg, #b45309, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link {
  color: #374151;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: var(--primary-soft);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--primary-dark);
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 10px 16px 18px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #c2410c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(250, 204, 21, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(124, 45, 18, 0.66), rgba(124, 45, 18, 0.18));
  pointer-events: none;
}

.hero-slider,
.hero-slide {
  min-height: 660px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.2);
  transform: scale(1.06);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 52px;
  align-items: center;
  min-height: 660px;
  padding: 70px 0;
}

.hero-copy {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: #fde68a;
  font-size: 0.58em;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #fff7ed;
  font-size: 20px;
}

.hero-tags,
.tag-cloud,
.card-tags,
.pill-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-cloud span,
.card-tags span {
  padding: 6px 12px;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.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 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  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(--primary-dark);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.24);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(194, 65, 12, 0.68);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-wide {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
}

.hero-poster {
  position: relative;
  display: block;
  padding: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 34px 60px rgba(124, 45, 18, 0.36);
  backdrop-filter: blur(10px);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
}

.hero-poster span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 16px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  border-radius: 999px;
  font-weight: 800;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 38px;
  background: #ffffff;
}

.floating-shape {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.52);
  font-size: 52px;
  animation: floatShape 6s ease-in-out infinite;
}

.shape-one {
  left: 8%;
  top: 20%;
}

.shape-two {
  right: 10%;
  top: 18%;
  animation-delay: 1.2s;
}

.shape-three {
  right: 33%;
  bottom: 18%;
  animation-delay: 2s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

.featured-strip {
  padding: 26px 0;
  background: #ffffff;
  border-bottom: 1px solid #ffedd5;
}

.section {
  padding: 74px 0;
}

.bg-soft {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

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

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

.section-heading span,
.panel-title span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--primary);
  font-weight: 800;
}

.section-heading h2,
.panel-title h2,
.side-panel h2,
.detail-article h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.section-heading a {
  color: var(--primary-dark);
  font-weight: 800;
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h2 {
  font-size: 28px;
}

.mini-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 150px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.mini-card {
  display: grid;
  gap: 10px;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mini-card span {
  font-weight: 800;
  font-size: 14px;
}

.stats-band {
  padding: 22px 0;
  background: #fff7ed;
  border-bottom: 1px solid #ffedd5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-grid div {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #ffedd5;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.08);
}

.stats-grid strong {
  display: block;
  color: var(--primary-dark);
  font-size: 24px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 14px;
}

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

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

.category-tile {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid #ffedd5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(234, 88, 12, 0.22);
}

.category-tile span {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  color: #f59e0b;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.tools-row,
.tools-panel {
  margin-bottom: 24px;
}

.tools-panel {
  padding: 18px;
  background: #ffffff;
  border: 1px solid #ffedd5;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.09);
}

.search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-row {
  margin-top: 14px;
}

.filter-pill,
.pill-link {
  padding: 9px 14px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #9a3412;
  background: #fff7ed;
  cursor: pointer;
  font-weight: 800;
}

.filter-pill.is-active,
.filter-pill:hover,
.pill-link:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ffedd5;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px rgba(234, 88, 12, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
}

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

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

.rating-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.rating-badge {
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  color: #78350f;
  background: #fde68a;
}

.play-badge {
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.ranking-info h2 a:hover {
  color: var(--primary);
}

.meta-line,
.detail-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-desc {
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14px;
}

.ranking-panel,
.side-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ffedd5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 96px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #fff7ed;
}

.rank-item b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  border-radius: 12px;
}

.rank-item span {
  font-weight: 800;
}

.rank-item em {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 900;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #ea580c 55%, #9a3412);
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.25), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(250, 204, 21, 0.24), transparent 28%);
}

.page-hero .container,
.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #ffedd5;
  font-size: 19px;
}

.slim-hero {
  padding: 72px 0;
}

.pill-row {
  margin-top: 26px;
}

.pill-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.ranking-container {
  max-width: 980px;
}

.sticky-tools {
  position: sticky;
  top: 92px;
  z-index: 5;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 78px 58px 1fr 72px;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.ranking-cover img {
  width: 78px;
  height: 108px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
}

.ranking-info h2 {
  margin: 0 0 6px;
  font-size: 21px;
}

.ranking-info p:last-child {
  margin: 0;
  color: #4b5563;
}

.score-chip {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #78350f;
  background: #fde68a;
  border-radius: 20px;
  font-weight: 900;
}

.detail-hero {
  padding: 52px 0 70px;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) saturate(1.2);
  transform: scale(1.08);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: #ffedd5;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  position: relative;
  display: block;
  padding: 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.32);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.detail-poster span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 10px;
  text-align: center;
  background: rgba(249, 115, 22, 0.94);
  border-radius: 999px;
  font-weight: 900;
}

.detail-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
}

.detail-copy p {
  max-width: 780px;
  color: #ffedd5;
  font-size: 18px;
}

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

.content-main {
  display: grid;
  gap: 26px;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f172a;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.62));
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--primary);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  font-size: 34px;
}

.player-overlay strong {
  max-width: 80%;
  font-size: 22px;
}

.detail-article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #ffedd5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-article h2 {
  margin-top: 0;
  color: #9a3412;
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 24px;
  color: #374151;
  font-size: 17px;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.related-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.side-panel .movie-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  border-radius: 18px;
  box-shadow: none;
}

.side-panel .poster-link img {
  height: 118px;
  aspect-ratio: auto;
}

.side-panel .card-body {
  padding: 12px;
}

.side-panel .card-desc,
.side-panel .card-tags,
.side-panel .play-badge,
.side-panel .rating-badge {
  display: none;
}

.side-panel .card-body h3 {
  font-size: 15px;
}

.site-footer {
  padding-top: 50px;
  background: #fff7ed;
  border-top: 1px solid #ffedd5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-grid p {
  max-width: 360px;
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #9a3412;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #6b7280;
}

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

.footer-bottom {
  padding: 18px;
  color: #78716c;
  text-align: center;
  border-top: 1px solid #fed7aa;
}

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

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

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

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

  .ranking-panel,
  .side-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-slider,
  .hero-slide,
  .hero-content {
    min-height: auto;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 56px 0 90px;
  }

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

  .stats-grid,
  .category-grid,
  .category-grid.large,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ranking-row {
    grid-template-columns: 68px 44px 1fr;
  }

  .score-chip {
    grid-column: 2 / 4;
    width: auto;
    height: 42px;
    border-radius: 14px;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 38px;
  }

  .hero p,
  .page-hero p,
  .detail-copy p {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .stats-grid,
  .category-grid,
  .category-grid.large,
  .movie-grid,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .card-body h3 {
    font-size: 15px;
  }

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

  .ranking-index {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .ranking-info,
  .score-chip {
    grid-column: 1 / 3;
  }

  .ranking-cover img {
    width: 64px;
    height: 92px;
  }

  .side-panel .movie-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .player-box {
    border-radius: 18px;
  }

  .play-circle {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}
