:root {
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-600: #0d9488;
  --sky-600: #0284c7;
  --blue-600: #2563eb;
  --rose-500: #f43f5e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 20px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 25px 50px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(229, 231, 235, 0.68);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.30);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.08);
}

.logo-text {
  display: grid;
  line-height: 1.15;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--emerald-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-subtitle {
  color: var(--gray-500);
  font-size: 12px;
}

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

.nav-links a,
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--emerald-600);
}

.nav-search {
  position: relative;
  width: 260px;
  flex: 0 0 auto;
}

.nav-search input,
.filter-input,
.hero-search input,
.search-page-input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--gray-900);
  background: var(--gray-100);
  border-radius: 999px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  height: 40px;
  padding: 0 18px 0 42px;
}

.nav-search input:focus,
.filter-input:focus,
.hero-search input:focus,
.search-page-input:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--gray-700);
  background: transparent;
  align-items: center;
  justify-content: center;
}

.mobile-menu-button:hover {
  background: var(--gray-100);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-nav-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

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

.page-spacer {
  height: 64px;
}

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

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

.hero-slide img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(0, 0, 0, 0.50), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 44px;
  color: var(--white);
  padding: 48px 0;
}

.hero-kicker,
.card-badge,
.meta-pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-kicker {
  padding: 6px 12px;
  background: var(--emerald-600);
  font-size: 14px;
  font-weight: 800;
}

.hero-glass {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-title {
  margin: 16px 0 12px;
  max-width: 760px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-movie-title {
  margin: 0 0 14px;
  color: #ecfdf5;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 850;
}

.hero-copy {
  max-width: 700px;
  color: #e5e7eb;
  font-size: 18px;
}

.hero-actions,
.section-title-row,
.detail-actions,
.pagination-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button,
.button-soft,
.button-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button {
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.36);
}

.button:hover {
  background: var(--emerald-700);
  transform: translateY(-2px) scale(1.02);
}

.button-soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.button-soft:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.button-line {
  color: var(--emerald-700);
  background: #ecfdf5;
}

.button-line:hover {
  background: #d1fae5;
  transform: translateY(-2px);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}

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

.hero-mini {
  overflow: hidden;
  min-height: 178px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-mini:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-mini img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.hero-mini strong {
  display: -webkit-box;
  padding: 10px 12px 0;
  overflow: hidden;
  color: var(--white);
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.hero-mini span {
  display: block;
  padding: 1px 12px 12px;
  color: #d1d5db;
  font-size: 12px;
}

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

.hero-dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 56px;
  background: var(--white);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.40);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.section {
  padding: 64px 0 0;
}

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

.section-eyebrow {
  margin: 0 0 6px;
  color: var(--emerald-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section h2,
.page-title,
.detail-title {
  margin: 0;
  color: var(--gray-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-desc,
.page-desc,
.card-desc,
.detail-desc {
  color: var(--gray-600);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-600);
  font-weight: 800;
}

.section-link:hover {
  gap: 10px;
}

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

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

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

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

.movie-cover {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: var(--gray-200);
}

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

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

.cover-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.card-type {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.movie-body {
  padding: 16px;
}

.movie-title {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card:hover .movie-title {
  color: var(--emerald-600);
}

.movie-summary {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
}

.meta-pill {
  padding: 4px 8px;
  background: var(--gray-100);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  padding: 4px 9px;
  color: var(--gray-600);
  background: var(--gray-100);
  font-size: 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  box-shadow: 0 18px 38px rgba(5, 150, 105, 0.24);
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, var(--sky-600), var(--blue-600));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, var(--rose-500), #f59e0b);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p,
.category-card span {
  position: relative;
  z-index: 1;
}

.category-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.category-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 850;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-no {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  font-weight: 900;
}

.rank-item:nth-child(1) .rank-no,
.rank-item:nth-child(2) .rank-no,
.rank-item:nth-child(3) .rank-no {
  background: linear-gradient(135deg, var(--rose-500), #f59e0b);
}

.rank-thumb {
  width: 96px;
  height: 64px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--gray-200);
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-title {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 850;
}

.rank-desc {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-score {
  color: var(--emerald-600);
  font-size: 14px;
  font-weight: 900;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-600), var(--blue-600));
  padding: 54px 0;
}

.page-title {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
}

.page-desc {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 34px 0 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel form {
  position: relative;
  width: min(460px, 100%);
}

.filter-input,
.search-page-input {
  height: 48px;
  padding: 0 18px 0 46px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 800;
}

.filter-tab.active,
.filter-tab:hover {
  color: var(--white);
  background: var(--emerald-600);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--emerald-600);
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  background: var(--gray-200);
  box-shadow: var(--shadow-xl);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.detail-panel {
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.detail-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.detail-desc {
  margin: 16px 0 22px;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 800;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #050505;
  box-shadow: var(--shadow-xl);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(5, 150, 105, 0.25), rgba(0, 0, 0, 0.70));
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.play-orb {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-600), var(--teal-600));
  box-shadow: 0 20px 55px rgba(16, 185, 129, 0.40);
  transition: transform 0.2s ease;
}

.player-overlay:hover .play-orb {
  transform: scale(1.08);
}

.content-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.content-card p + p {
  margin-top: 14px;
}

.search-box-large {
  max-width: 760px;
  margin-top: 28px;
}

.search-box-large form {
  position: relative;
}

.search-page-input {
  height: 58px;
  padding-left: 56px;
  box-shadow: var(--shadow-xl);
  font-size: 18px;
}

.empty-state {
  display: none;
  padding: 70px 20px;
  text-align: center;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.empty-state.is-visible {
  display: block;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800), var(--gray-900));
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.footer-text {
  max-width: 420px;
  color: #9ca3af;
  font-size: 14px;
}

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

.footer-list a:hover {
  color: #34d399;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald-600);
  box-shadow: var(--shadow-md);
}

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

@media (max-width: 1100px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .hero-panel {
    display: none;
  }

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

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

@media (max-width: 780px) {
  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
  }

  .hero-arrow {
    display: none;
  }

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

  .movie-cover {
    height: 210px;
  }

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

  .rank-score {
    grid-column: 3;
  }

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

  .detail-cover img {
    min-height: auto;
    max-height: 520px;
  }

  .detail-panel,
  .content-card {
    padding: 22px;
  }

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

@media (max-width: 520px) {
  .container,
  .nav-inner,
  .mobile-nav-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 24px, 1280px);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-movie-title {
    font-size: 27px;
  }

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

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

  .movie-cover {
    height: 260px;
  }

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

  .rank-thumb {
    display: none;
  }

  .rank-score {
    grid-column: 2;
  }
}
