:root {
  color-scheme: dark;
  --bg: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-soft: rgba(30, 41, 59, 0.72);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(251, 191, 36, 0.32);
  --text: #ffffff;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --amber: #fbbf24;
  --amber-soft: rgba(251, 191, 36, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.11), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.88);
}

.header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.22);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fbbf24;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.quick-search input,
.search-page-form input {
  border: 1px solid rgba(71, 85, 105, 0.95);
  background: #1e293b;
  color: #ffffff;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search input:focus,
.search-page-form input:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.14);
}

.header-search button,
.mobile-search button,
.quick-search button,
.search-page-form button,
.primary-button,
.ghost-button,
.category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.mobile-search button,
.quick-search button,
.search-page-form button,
.primary-button {
  background: #fbbf24;
  color: #0f172a;
  font-weight: 800;
}

.header-search button {
  padding: 10px 14px;
}

.primary-button,
.ghost-button {
  padding: 12px 20px;
}

.header-search button:hover,
.mobile-search button:hover,
.quick-search button:hover,
.search-page-form button:hover,
.primary-button:hover,
.category-more:hover {
  transform: translateY(-1px) scale(1.02);
  background: #fcd34d;
}

.ghost-button {
  border: 1px solid rgba(251, 191, 36, 0.38);
  background: rgba(15, 23, 42, 0.55);
  color: #ffffff;
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 191, 36, 0.78);
  background: rgba(30, 41, 59, 0.8);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 20px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(51, 65, 85, 0.8);
  padding: 16px 24px 20px;
  background: #0f172a;
}

.mobile-panel.is-open {
  display: block;
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
}

.mobile-search button {
  padding: 10px 14px;
}

.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px 0;
}

.home-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.hero-area {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: #0f172a;
}

.hero-stage,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

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

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

.hero-area:hover .hero-slide.is-active img {
  transform: scale(1.06);
}

.hero-shade {
  background:
    linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.82) 28%, rgba(15, 23, 42, 0.38) 62%, rgba(15, 23, 42, 0.24) 100%),
    linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.58) 42%, rgba(15, 23, 42, 0.15) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  right: 24px;
  bottom: 68px;
  max-width: 760px;
}

.hero-kicker,
.page-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fbbf24;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-kicker span,
.page-kicker,
.tag-row span {
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
}

.hero-kicker span {
  padding: 6px 12px;
  font-size: 13px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  margin: 18px 0 0;
  max-width: 680px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

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

.quick-search-panel,
.content-section,
.page-hero,
.detail-hero,
.player-section {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.quick-search-panel {
  margin-top: -28px;
  position: relative;
  z-index: 10;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-search {
  display: flex;
  gap: 12px;
}

.quick-search input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
}

.quick-search button,
.search-page-form button {
  padding: 14px 22px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.quick-links a,
.section-title-row a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.quick-links a:hover,
.section-title-row a:hover {
  color: #fbbf24;
}

.content-section {
  padding: 54px 24px 0;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title-row h2,
.detail-text h2,
.footer-block h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

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

.movie-card {
  min-width: 0;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: #1e293b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.poster-link img,
.wide-cover img,
.rank-item img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-link img,
.wide-card:hover .wide-cover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.poster-link::after,
.wide-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .poster-link::after,
.wide-card:hover .wide-cover::after {
  opacity: 1;
}

.year-pill,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.year-pill {
  right: 10px;
  padding: 5px 9px;
}

.rank-badge {
  left: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fbbf24;
}

.card-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.92);
  color: #0f172a;
  font-size: 18px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.movie-card-body {
  padding-top: 12px;
}

.movie-title {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-title:hover {
  color: #fbbf24;
}

.movie-meta {
  margin: 6px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

.movie-desc {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag-row span {
  padding: 5px 9px;
  font-size: 12px;
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.movie-card-compact {
  width: 210px;
  flex: 0 0 210px;
}

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

.wide-card {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.13);
  transition: background 0.2s ease, transform 0.2s ease;
}

.wide-card:hover {
  background: rgba(30, 41, 59, 0.92);
  transform: translateY(-2px);
}

.wide-cover {
  position: relative;
  width: 190px;
  flex: 0 0 190px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.wide-cover span {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.9);
  color: #0f172a;
}

.wide-info {
  padding: 20px;
}

.wide-meta {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
}

.wide-info h3 {
  margin: 9px 0 8px;
  font-size: 20px;
}

.wide-info p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 20px;
}

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

.category-tile,
.category-card-large {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 15rem);
  border-radius: 20px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.category-tile {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.36);
}

.category-tile span,
.category-card-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.category-tile em {
  color: #94a3b8;
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-preview {
  padding-bottom: 20px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-number {
  color: #fbbf24;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 72px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy strong {
  color: #ffffff;
  font-weight: 800;
}

.rank-copy em,
.rank-heat {
  color: #94a3b8;
  font-style: normal;
  font-size: 13px;
}

.page-hero,
.detail-hero {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.7)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 30rem);
  box-shadow: var(--shadow);
}

.compact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px;
}

.page-kicker {
  display: inline-flex;
  padding: 6px 12px;
  font-size: 13px;
}

.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.page-hero p,
.detail-one-line {
  max-width: 780px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-card-large {
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card-large p {
  color: #cbd5e1;
  line-height: 1.7;
}

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

.category-samples a {
  color: #94a3b8;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-samples a:hover {
  color: #fbbf24;
}

.category-more {
  padding: 10px 16px;
  background: #fbbf24;
  color: #0f172a;
  font-weight: 900;
}

.filter-bar,
.search-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-bar button,
.search-category-row button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(30, 41, 59, 0.72);
  color: #cbd5e1;
  cursor: pointer;
}

.filter-bar button.is-active,
.search-category-row button.is-active,
.filter-bar button:hover,
.search-category-row button:hover {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.16);
  color: #fbbf24;
}

.search-page-form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-main {
  max-width: 1280px;
}

.detail-hero {
  padding: 26px;
}

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

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

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

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  margin-top: 8px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
  color: #cbd5e1;
}

.detail-meta span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

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

.player-section {
  padding: 34px 0 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: block;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0.6));
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-layer span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbbf24;
  color: #0f172a;
  font-size: 28px;
  box-shadow: 0 18px 48px rgba(251, 191, 36, 0.25);
}

.play-layer strong {
  font-size: 20px;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-text {
  color: #cbd5e1;
  line-height: 1.9;
}

.detail-text h2 {
  color: #ffffff;
  margin: 0 0 12px;
}

.detail-text p {
  margin: 0 0 28px;
  font-size: 17px;
}

.site-footer {
  margin-top: 76px;
  border-top: 1px solid rgba(51, 65, 85, 0.86);
  background: rgba(15, 23, 42, 0.8);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-links a {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-block h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 32px;
  color: #64748b;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  text-align: center;
}

.is-hidden-by-filter,
.is-hidden-by-search {
  display: none !important;
}

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

  .header-search input {
    width: 170px;
  }

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

  .wide-grid,
  .rank-list,
  .category-large-grid {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-inner {
    padding: 0 16px;
  }

  .page-main {
    padding: 84px 16px 0;
  }

  .hero-area {
    height: 560px;
  }

  .hero-content {
    left: 18px;
    bottom: 60px;
  }

  .quick-search-panel,
  .content-section {
    margin-left: 16px;
    margin-right: 16px;
  }

  .quick-search,
  .search-page-form,
  .mobile-search,
  .compact-hero {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .detail-cover {
    max-width: 320px;
  }

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

@media (max-width: 560px) {
  .brand-text {
    font-size: 18px;
  }

  .hero-area {
    height: 520px;
  }

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

  .hero-content p,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

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

  .wide-card {
    flex-direction: column;
  }

  .wide-cover {
    width: 100%;
    flex-basis: auto;
  }

  .rank-item {
    grid-template-columns: 34px 58px minmax(0, 1fr);
  }

  .rank-heat {
    display: none;
  }

  .movie-card-compact {
    width: 170px;
    flex-basis: 170px;
  }
}
