* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0c0a09;
  --bg-soft: #1c1917;
  --bg-card: #292524;
  --bg-card-strong: #1f1b18;
  --text: #f5f5f4;
  --muted: #a8a29e;
  --muted-strong: #d6d3d1;
  --line: rgba(180, 83, 9, 0.24);
  --accent: #f59e0b;
  --accent-strong: #b45309;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --danger: #7f1d1d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(180, 83, 9, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(127, 29, 29, 0.34), transparent 32rem),
    linear-gradient(180deg, #17120f 0%, var(--bg) 42%, #090807 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(28, 25, 23, 0.88);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #991b1b);
  box-shadow: 0 12px 34px rgba(180, 83, 9, 0.35);
}

.brand-name {
  white-space: nowrap;
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  border-radius: 999px;
  color: #ffedd5;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 15px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: rgba(180, 83, 9, 0.42);
}

.header-search,
.mobile-search,
.home-search-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.home-search-panel input,
.filter-input,
.filter-select {
  color: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.24);
  background: rgba(68, 64, 60, 0.54);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 240px;
  border-radius: 999px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button,
.home-search-panel button,
.primary-btn,
.ghost-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-search button,
.mobile-search button,
.home-search-panel button,
.primary-btn {
  color: #fff7ed;
  background: linear-gradient(135deg, #d97706, #991b1b);
  box-shadow: 0 16px 40px rgba(146, 64, 14, 0.28);
}

.header-search button,
.mobile-search button {
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.home-search-panel input:focus,
.filter-input:focus,
.filter-select:focus {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
  background: rgba(41, 37, 36, 0.92);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(68, 64, 60, 0.48);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffedd5;
}

.mobile-nav {
  display: none;
}

main,
.page-main,
.detail-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  margin: 28px auto 34px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius-xl);
  background: #1c1917;
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: clamp(30px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.55s ease, transform 0.55s ease;
  background-image:
    linear-gradient(90deg, rgba(12, 10, 9, 0.94), rgba(12, 10, 9, 0.72) 48%, rgba(12, 10, 9, 0.38)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-copy {
  max-width: 720px;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(146, 64, 14, 0.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 92px);
  max-width: 860px;
}

.hero-copy p,
.page-hero p,
.feature-panel p,
.detail-one-line {
  color: var(--muted-strong);
  line-height: 1.8;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0;
  font-size: 18px;
}

.hero-meta,
.detail-meta,
.card-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: #fed7aa;
}

.hero-meta span,
.detail-meta span,
.card-meta span,
.rank-meta span {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
}

.hero-meta span,
.detail-meta span {
  padding: 7px 11px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 18px;
}

.hero-tags span,
.tag-list span {
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(41, 37, 36, 0.7);
}

.hero-tags span,
.large-tags span {
  padding: 7px 11px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ghost-btn {
  color: #ffedd5;
  border: 1px solid rgba(245, 158, 11, 0.34);
  background: rgba(28, 25, 23, 0.72);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(380px, 100%);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
}

.hero-poster img,
.poster-wrap img,
.detail-poster img,
.rank-poster img,
.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}

.hero-controls button {
  pointer-events: auto;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  color: #ffedd5;
  background: rgba(28, 25, 23, 0.72);
  font-size: 30px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.7);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(214, 211, 209, 0.35);
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #f59e0b;
}

.home-search-panel,
.filter-panel,
.page-hero,
.feature-panel,
.story-card,
.review-card,
.player-shell,
.rank-panel {
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(41, 37, 36, 0.92), rgba(28, 25, 23, 0.92));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.home-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 24px;
  align-items: end;
  padding: 26px;
}

.home-search-panel h2,
.filter-panel h2,
.section-heading h2,
.feature-panel h2,
.story-card h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.home-search-panel h2,
.filter-panel h2,
.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.home-search-panel input {
  flex: 1;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 18px;
}

.home-search-panel button {
  min-height: 52px;
  padding: 0 22px;
}

.content-section {
  margin: 46px 0;
}

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

.section-heading a {
  color: #fbbf24;
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(28, 25, 23, 0.82);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.46);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #1c1917;
}

.poster-wrap img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.poster-badge,
.poster-play {
  position: absolute;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.poster-badge {
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff7ed;
  background: rgba(120, 53, 15, 0.82);
}

.poster-play {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: #111827;
  background: #fbbf24;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  padding: 16px;
}

.card-meta {
  gap: 6px;
  font-size: 12px;
}

.card-meta span,
.rank-meta span {
  padding: 4px 8px;
}

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

.card-body h3 a:hover,
.rank-title:hover {
  color: #fbbf24;
}

.card-body p,
.rank-content p,
.category-card p,
.footer-grid p,
.story-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.72;
}

.card-body p {
  min-height: 58px;
  margin: 0 0 14px;
  font-size: 14px;
}

.tag-list span {
  padding: 5px 8px;
  font-size: 12px;
}

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

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

.category-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(41, 37, 36, 0.94), rgba(28, 25, 23, 0.92));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.52);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.category-thumbs img {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background: #1c1917;
}

.category-card span {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
}

.category-card h3 {
  margin: 8px 0;
  font-size: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.rank-panel,
.feature-panel {
  padding: 24px;
}

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

.rank-list {
  display: grid;
  gap: 12px;
}

.full-rank-list {
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 74px auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: var(--radius-md);
}

.full-rank-list .rank-row {
  grid-template-columns: 80px 52px auto;
}

.rank-poster {
  display: block;
  width: 74px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #1c1917;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #111827;
  background: #fbbf24;
  font-weight: 950;
}

.rank-title {
  display: inline-flex;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 900;
}

.rank-content p {
  margin: 0 0 8px;
}

.rank-meta {
  font-size: 12px;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-panel h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.feature-panel p {
  margin: 18px 0 26px;
}

.page-main,
.detail-main {
  padding-top: 34px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% 30%;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 68%);
  pointer-events: none;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 76px);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 24px;
  align-items: end;
  margin: 28px 0;
  padding: 24px;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.38fr) minmax(130px, 0.38fr);
  gap: 12px;
}

.filter-input,
.filter-select {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 16px;
}

.filter-select {
  appearance: none;
}

.no-results {
  display: none;
  padding: 26px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-lg);
  color: #fed7aa;
  background: rgba(28, 25, 23, 0.7);
  text-align: center;
}

.no-results.is-visible {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #fbbf24;
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(41, 37, 36, 0.96), rgba(28, 25, 23, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.2), transparent 32rem);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 28px;
  background: #1c1917;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.detail-info h1 {
  font-size: clamp(38px, 6vw, 78px);
}

.detail-one-line {
  max-width: 820px;
  margin: 18px 0;
  font-size: 18px;
}

.detail-meta {
  margin-bottom: 18px;
}

.watch-section {
  margin: 34px 0;
}

.player-shell {
  padding: clamp(12px, 2vw, 18px);
}

.movie-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff7ed;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: #111827;
  background: #fbbf24;
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.35);
  font-size: 34px;
  text-indent: 4px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 24px;
  margin: 34px 0;
}

.story-card,
.review-card {
  padding: 26px;
}

.story-card h2 {
  font-size: 32px;
}

.story-card p,
.review-card p {
  font-size: 16px;
}

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 64px auto 0;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}

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

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fbbf24;
}

.footer-grid p {
  max-width: 480px;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 158, 11, 0.12);
  color: #78716c;
  font-size: 14px;
}

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

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

  .hero-slide {
    grid-template-columns: 1fr 280px;
  }

  .filter-panel,
  .home-search-panel,
  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 68px;
  }

  .main-nav {
    display: none;
  }

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

  .mobile-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    z-index: 45;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(28, 25, 23, 0.97);
    transform: translateY(-120%);
    transition: transform 0.24s ease;
  }

  body.menu-open .mobile-nav {
    transform: translateY(0);
  }

  .mobile-link {
    padding: 12px 14px;
  }

  .mobile-search input {
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 14px;
  }

  .mobile-search button {
    min-height: 44px;
  }

  .hero-carousel,
  .hero-stage {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 30px 22px 86px;
  }

  .hero-poster {
    justify-self: start;
    width: min(230px, 66vw);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-controls {
    left: 12px;
    right: 12px;
  }

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

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

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

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

  .full-rank-list .rank-row {
    grid-template-columns: 70px 42px auto;
  }

  .rank-poster {
    width: 70px;
  }

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

@media (max-width: 560px) {
  main,
  .page-main,
  .detail-main,
  .site-footer,
  .header-inner {
    width: min(100% - 24px, 1240px);
  }

  .brand-name {
    font-size: 16px;
  }

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

  .home-search-panel,
  .filter-panel,
  .page-hero,
  .rank-panel,
  .feature-panel,
  .story-card,
  .review-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-carousel {
    border-radius: 20px;
  }

  .hero-controls > button {
    width: 38px;
    height: 38px;
  }

  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rank-row,
  .full-rank-list .rank-row {
    grid-template-columns: 64px 1fr;
  }

  .rank-number {
    display: none;
  }

  .rank-poster {
    width: 64px;
  }
}
