* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111827;
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #b45309, #ea580c);
  box-shadow: 0 18px 40px rgba(120, 53, 15, 0.22);
}

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

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #92400e;
  background: #fef3c7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-text {
  font-size: 23px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link {
  opacity: 0.95;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fde68a;
  opacity: 1;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-soft {
  font-size: 14px;
  opacity: 0.78;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  background: #92400e;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.mobile-link {
  padding: 10px 8px;
  border-radius: 10px;
  color: #ffffff;
}

.mobile-link:hover,
.mobile-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fde68a;
}

.hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #ffffff;
  max-width: 760px;
  padding: 80px 0 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fcd34d;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-heading h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-heading p {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(17px, 2vw, 24px);
  color: #e5e7eb;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(217, 119, 6, 0.9);
  box-shadow: 0 8px 16px rgba(146, 64, 14, 0.24);
  font-size: 14px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.plain-link,
.search-page-form button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn,
.search-page-form button,
.hero-search button {
  color: #ffffff;
  background: #d97706;
  box-shadow: 0 16px 30px rgba(217, 119, 6, 0.3);
}

.primary-btn:hover,
.search-page-form button:hover,
.hero-search button:hover {
  background: #b45309;
  transform: translateY(-2px);
}

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

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 36px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  background: #f59e0b;
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 78px;
  display: grid;
  grid-template-columns: minmax(220px, 460px) auto;
  gap: 10px;
  width: min(700px, calc(100% - 32px));
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
  background: #ffffff;
}

.hero-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.section {
  padding: 70px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
}

.section-head h2::before {
  content: "";
  width: 5px;
  height: 34px;
  border-radius: 999px;
  background: #d97706;
}

.section-head p {
  margin: 10px 0 0 20px;
  color: #6b7280;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(146, 64, 14, 0.18);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #f59e0b, #7c2d12);
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.movie-card:hover .movie-cover img {
  transform: scale(1.08);
  opacity: 0.92;
}

.play-badge {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #d97706;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-info {
  padding: 14px;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.movie-info h3 a:hover {
  color: #b45309;
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span {
  padding: 3px 7px;
  border-radius: 999px;
  background: #fef3c7;
}

.warm-section {
  background: linear-gradient(90deg, #fffbeb, #fff7ed);
}

.dark-section {
  color: #ffffff;
  background: #111827;
}

.dark-section .section-head h2 {
  color: #ffffff;
}

.dark-section .section-head p {
  color: #d1d5db;
}

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

.category-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #92400e, #ea580c);
  box-shadow: 0 20px 45px rgba(154, 52, 18, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(154, 52, 18, 0.25);
}

.category-card span {
  font-size: 23px;
  font-weight: 900;
}

.category-card strong {
  margin: 10px 0;
  color: #ffedd5;
  font-size: 14px;
}

.category-card em {
  color: #fed7aa;
  font-style: normal;
  font-size: 13px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: start;
}

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

.ranking-list a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-list a:hover {
  background: rgba(217, 119, 6, 0.28);
  transform: translateX(4px);
}

.rank-num {
  grid-row: span 2;
  color: #fbbf24;
  font-size: 22px;
  font-weight: 900;
}

.ranking-list strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-list em {
  overflow: hidden;
  color: #d1d5db;
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-feature {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ranking-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.ranking-feature h3 {
  margin: 18px 0 8px;
  font-size: 25px;
}

.ranking-feature p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: #d1d5db;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

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

.region-block {
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.region-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.region-title h3 {
  margin: 0;
  font-size: 22px;
}

.region-title a,
.plain-link {
  color: #b45309;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mini-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.mini-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 10px 10px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  font-size: 13px;
  font-weight: 800;
}

.editor-section {
  background: linear-gradient(90deg, #78350f, #9a3412);
}

.editor-section .section-head h2,
.editor-section .section-head p {
  color: #ffffff;
}

.page-hero {
  padding: 82px 0;
  color: #ffffff;
  background: radial-gradient(circle at 20% 10%, rgba(251, 191, 36, 0.45), transparent 28%), linear-gradient(110deg, #78350f, #ea580c);
}

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

.page-hero h1 {
  max-width: 880px;
}

.filter-panel,
.search-page-form {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 180px;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.search-page-form {
  grid-template-columns: minmax(200px, 1fr) auto;
}

.category-overview {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.category-overview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-head p {
  margin: 0;
  color: #6b7280;
}

.compact-list .movie-line {
  min-height: auto;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(2px);
  transform: scale(1.04);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 54px;
}

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

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

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

.detail-poster {
  width: 210px;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.24);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d97706;
  box-shadow: 0 20px 42px rgba(217, 119, 6, 0.34);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 20px;
}

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

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fed7aa;
  font-size: 14px;
  pointer-events: none;
}

.content-card,
.info-panel {
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.content-card h2,
.info-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.detail-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 86px;
}

.info-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.info-panel div:last-child {
  border-bottom: 0;
}

.info-panel span {
  color: #6b7280;
}

.info-panel strong {
  color: #92400e;
  text-align: right;
}

.side-link {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #92400e;
  background: #fffbeb;
  font-weight: 800;
}

.side-link:hover {
  color: #ffffff;
  background: #d97706;
}

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

.search-result-head h2 {
  margin: 0;
  font-size: 30px;
}

.search-result-head p {
  margin: 0;
  color: #6b7280;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(90deg, #111827, #1f2937);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 46px 0;
}

.footer-logo {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #fcd34d;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: none;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #d97706;
  box-shadow: 0 16px 30px rgba(217, 119, 6, 0.35);
  font-size: 22px;
}

.back-top.is-visible {
  display: block;
}

.is-filtered-out {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
  }

  .nav-soft {
    display: none;
  }

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

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

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

  .detail-aside {
    position: static;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .brand-text {
    font-size: 20px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 70px 0 190px;
  }

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

  .hero-arrow {
    top: auto;
    bottom: 116px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .hero-prev {
    left: 16px;
  }

  .hero-next {
    right: 16px;
  }

  .hero-search,
  .search-page-form,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .six-grid,
  .four-grid,
  .editor-grid,
  .category-grid,
  .category-movie-grid,
  .region-grid,
  .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-heading {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
  }

  .detail-poster {
    width: 110px;
    border-radius: 16px;
  }

  .detail-heading h1 {
    font-size: 32px;
  }

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

  .category-overview-head,
  .search-result-head {
    display: block;
  }
}

@media (max-width: 480px) {
  .six-grid,
  .four-grid,
  .editor-grid,
  .category-grid,
  .category-movie-grid,
  .region-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

  .movie-cover {
    aspect-ratio: 16 / 11;
  }

  .hero-tags span,
  .detail-tags span {
    font-size: 12px;
  }
}
