:root {
  --stone-950: #0c0a09;
  --stone-925: #12100f;
  --stone-900: #1c1917;
  --stone-850: #24201e;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --white: #ffffff;
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.42);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(146, 64, 14, 0.26), transparent 34rem), var(--stone-950);
  color: var(--stone-200);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.narrow {
  width: min(100% - 2rem, 920px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-800), var(--amber-900));
  box-shadow: var(--shadow-lg);
}

.header-inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--amber-100);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: var(--amber-900);
  background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.brand-text {
  font-size: clamp(1rem, 2vw, 1.35rem);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  color: var(--amber-100);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.55rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--amber-100);
  border-radius: 99px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  padding: 0.6rem 1rem 1rem;
  background: rgba(120, 53, 15, 0.98);
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.4rem;
}

.mobile-link {
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--amber-100);
  font-weight: 650;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--stone-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(12, 10, 9, 0.58), rgba(0, 0, 0, 0.22)), linear-gradient(0deg, rgba(12, 10, 9, 0.96), transparent 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 860px;
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber-300);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.hero-desc {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: var(--stone-300);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.72rem 1.35rem;
  border-radius: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--amber-600);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.32);
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--amber-700);
}

.ghost-btn {
  color: var(--amber-100);
  border: 1px solid rgba(253, 230, 138, 0.28);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.ghost-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(253, 230, 138, 0.55);
  background: rgba(0, 0, 0, 0.52);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 1rem;
}

.hero-next {
  right: 1rem;
}

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

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 2rem;
  background: var(--amber-500);
}

.search-band {
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.9), rgba(28, 25, 23, 0.88));
  border-bottom: 1px solid rgba(253, 230, 138, 0.08);
}

.search-band-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
}

.search-band h2 {
  margin: 0 0 0.25rem;
  color: var(--amber-100);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.search-band p {
  margin: 0;
  color: var(--stone-400);
}

.hero-search,
.filter-row {
  display: flex;
  gap: 0.7rem;
}

.hero-search input,
.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid rgba(253, 230, 138, 0.16);
  border-radius: 0.9rem;
  outline: 0;
  padding: 0 1rem;
  color: var(--stone-100);
  background: rgba(28, 25, 23, 0.88);
}

.hero-search button,
.filter-row button {
  min-height: 2.85rem;
  border: 0;
  border-radius: 0.9rem;
  padding: 0 1.15rem;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 800;
  white-space: nowrap;
}

.main-stack,
.page-shell {
  padding: 3rem 0;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section .content-section {
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-title h2 {
  margin: 0;
  color: var(--amber-100);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.65rem;
  color: var(--amber-900);
  background: var(--amber-500);
  font-weight: 900;
}

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

.movie-card {
  min-width: 0;
  border-radius: 0.95rem;
  overflow: hidden;
  background: var(--stone-800);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  background: #332e2b;
  box-shadow: var(--shadow-xl);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--stone-900);
}

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

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

.type-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  max-width: calc(100% - 1.1rem);
  padding: 0.25rem 0.5rem;
  border-radius: 0.45rem;
  color: var(--white);
  background: var(--amber-600);
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.poster-line {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  display: -webkit-box;
  max-height: 3.2rem;
  overflow: hidden;
  border-radius: 0.55rem;
  padding: 0.48rem;
  color: var(--stone-200);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
  font-size: 0.76rem;
  opacity: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: opacity 0.25s ease;
}

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

.movie-card-body {
  padding: 0.9rem;
}

.movie-card-body h3 {
  margin: 0 0 0.3rem;
  overflow: hidden;
  color: var(--stone-100);
  font-size: 1rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--amber-300);
}

.movie-card-body p {
  margin: 0;
  overflow: hidden;
  color: var(--stone-400);
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.category-tile,
.category-overview-card a {
  position: relative;
  display: block;
  min-height: 10rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--stone-800);
  box-shadow: var(--shadow-lg);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  opacity: 0.52;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}

.category-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.rank-panel,
.ranking-list,
.article-panel,
.filter-panel {
  border: 1px solid rgba(253, 230, 138, 0.08);
  border-radius: 1rem;
  background: rgba(28, 25, 23, 0.86);
  box-shadow: var(--shadow-lg);
}

.rank-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: rgba(245, 158, 11, 0.08);
}

.rank-number {
  color: var(--amber-400);
  font-size: 1.25rem;
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  color: var(--stone-100);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--stone-400);
  font-size: 0.9rem;
}

.list-grid {
  display: grid;
  gap: 1rem;
}

.list-card a {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--stone-900);
  transition: background 0.2s ease, transform 0.2s ease;
}

.list-card a:hover {
  transform: translateY(-2px);
  background: var(--stone-800);
}

.list-card img {
  width: 7.5rem;
  height: 11rem;
  object-fit: cover;
}

.list-card-body {
  padding: 1rem;
}

.list-card-body h3 {
  margin: 0 0 0.4rem;
  color: var(--stone-100);
  font-size: 1.1rem;
}

.list-card-body p {
  display: -webkit-box;
  margin: 0 0 0.75rem;
  overflow: hidden;
  color: var(--stone-400);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.tag-row,
.detail-meta,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.card-meta span,
.tag-row span,
.detail-meta span,
.detail-tags a {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  color: var(--amber-200);
  background: rgba(120, 53, 15, 0.34);
  font-size: 0.78rem;
}

.page-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.page-heading h1 {
  margin: 0 0 0.8rem;
  color: var(--amber-100);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.08;
}

.page-heading p:last-child {
  margin: 0;
  color: var(--stone-400);
  font-size: 1.05rem;
}

.category-overview-card a {
  min-height: 0;
  padding: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-overview-card a:hover {
  transform: translateY(-3px);
  background: #332e2b;
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.category-collage img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0.55rem;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 0 0 0.5rem;
  color: var(--amber-100);
}

.category-overview-card p {
  margin: 0;
  color: var(--stone-400);
}

.filter-panel {
  padding: 1rem;
}

.filter-row {
  margin-bottom: 1rem;
}

.filter-row-wide {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(120px, 0.5fr)) auto;
}

.empty-state {
  display: none;
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 0.8rem;
  color: var(--stone-300);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

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

.ranking-list {
  overflow: hidden;
}

.ranking-item {
  display: grid;
  grid-template-columns: 4rem 4.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.ranking-item:hover {
  background: rgba(245, 158, 11, 0.08);
}

.ranking-index {
  color: var(--amber-400);
  font-size: 1.35rem;
  font-weight: 900;
}

.ranking-item img {
  width: 4.5rem;
  height: 6rem;
  border-radius: 0.6rem;
  object-fit: cover;
}

.ranking-main strong,
.ranking-main em {
  display: block;
}

.ranking-main strong {
  color: var(--stone-100);
  font-size: 1.05rem;
}

.ranking-main em {
  color: var(--stone-400);
  font-style: normal;
  font-size: 0.9rem;
}

.score {
  color: var(--amber-300);
  font-size: 1.15rem;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--stone-400);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--amber-300);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: var(--stone-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.4;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.72), rgba(12, 10, 9, 0.95)), linear-gradient(0deg, var(--stone-950), transparent 42%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 620px;
  padding: 3rem 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.2);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-xl);
  background: var(--stone-900);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--stone-300);
  font-size: 1.15rem;
}

.player-section {
  padding: 2.5rem 0 1rem;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.14);
  border-radius: 1.2rem;
  background: #000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

.video-element {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25), rgba(0, 0, 0, 0.72));
  font-weight: 900;
  letter-spacing: 0.06em;
}

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

.big-play {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  color: var(--amber-900);
  background: linear-gradient(135deg, var(--amber-200), var(--amber-500));
  font-size: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.detail-content {
  display: grid;
  gap: 3rem;
  padding: 2rem 0 3rem;
}

.article-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.article-panel h2 {
  margin: 0 0 0.8rem;
  color: var(--amber-200);
  font-size: 1.4rem;
}

.article-panel h2:not(:first-child) {
  margin-top: 1.8rem;
}

.article-panel p {
  margin: 0;
  color: var(--stone-300);
}

.detail-tags {
  margin-top: 0.8rem;
}

.detail-tags a:hover {
  color: var(--white);
  background: var(--amber-700);
}

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

.index-letter {
  border: 1px solid rgba(253, 230, 138, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(28, 25, 23, 0.86);
}

.index-letter h2 {
  margin: 0 0 0.75rem;
  color: var(--amber-300);
}

.index-letter ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-letter li {
  margin: 0.45rem 0;
}

.index-letter a {
  color: var(--stone-300);
}

.index-letter a:hover {
  color: var(--amber-300);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(253, 230, 138, 0.08);
  background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
  color: var(--stone-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--amber-200);
}

.site-footer p {
  margin: 0;
}

.site-footer li {
  margin: 0.45rem 0;
}

.site-footer a:hover {
  color: var(--amber-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
  color: var(--stone-500);
  font-size: 0.92rem;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 68vh;
    min-height: 520px;
  }

  .hero-content {
    padding: 3rem 1rem 4rem;
  }

  .hero-arrow {
    display: none;
  }

  .search-band-inner,
  .two-column,
  .detail-hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    min-height: auto;
  }

  .detail-poster {
    max-width: 260px;
  }

  .filter-row,
  .filter-row-wide,
  .hero-search {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .ranking-item {
    grid-template-columns: 3rem 4rem 1fr;
  }

  .ranking-item .score {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, 1280px);
  }

  .brand-text {
    max-width: 70vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.35rem;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .index-grid {
    gap: 0.75rem;
  }

  .movie-card-body {
    padding: 0.72rem;
  }

  .list-card a {
    grid-template-columns: 5.5rem 1fr;
  }

  .list-card img {
    width: 5.5rem;
    height: 8rem;
  }

  .rank-row {
    grid-template-columns: 2.6rem 1fr;
  }

  .rank-meta {
    display: none;
  }
}
