:root {
  --color-bg: #f3f4f6;
  --color-bg-soft: #f8fafc;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-orange: #f97316;
  --color-red: #dc2626;
  --color-slate: #0f172a;
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 22px 50px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 24px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 52%, #0f172a 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(249, 115, 22, 0.3);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08);
}

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

.brand-text strong,
.footer-brand strong {
  font-size: 19px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 3px;
  color: #9ca3af;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #d1d5db;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fb923c;
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.inline-search input,
.search-form input,
.search-form select {
  width: 240px;
  color: #ffffff;
  background: #334155;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  padding: 10px 14px;
  transition: box-shadow 0.2s ease, border 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.inline-search input:focus,
.search-form input:focus,
.search-form select:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.nav-search button,
.mobile-search button,
.search-form button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 750;
}

.mobile-menu-button {
  display: none;
  color: #e5e7eb;
  background: transparent;
  border: none;
  font-size: 26px;
}

.mobile-menu {
  display: none;
  padding: 16px 24px 20px;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  color: #d1d5db;
  padding: 8px 0;
}

.mobile-menu a:hover {
  color: #fb923c;
}

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

.home-page {
  display: grid;
  gap: 48px;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0f172a, #334155);
  box-shadow: var(--shadow-card);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.22), transparent 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 64px);
  right: clamp(24px, 6vw, 64px);
  bottom: clamp(52px, 8vw, 96px);
  max-width: 760px;
  color: #ffffff;
}

.hero-category,
.meta-badge {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-orange), #ef4444);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

.primary-button,
.ghost-button,
.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.22);
}

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

.white-button {
  width: fit-content;
  color: #16a34a;
  background: #ffffff;
}

.primary-button:hover,
.ghost-button:hover,
.white-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  transition: background 0.2s ease;
}

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

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--color-orange);
}

.section-block,
.white-block,
.filter-panel,
.search-panel,
.page-hero {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.section-block,
.white-block,
.filter-panel,
.search-panel {
  padding: clamp(22px, 4vw, 36px);
}

.white-block,
.filter-panel,
.search-panel {
  background: #ffffff;
}

.gradient-blue {
  color: #ffffff;
  background: linear-gradient(90deg, #3b82f6, #14b8a6);
}

.gradient-purple {
  color: #ffffff;
  background: linear-gradient(90deg, #a855f7, #ec4899);
}

.gradient-green {
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading p,
.page-hero p {
  margin: 8px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.light-heading p,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.section-icon.orange {
  color: var(--color-orange);
  background: #fff7ed;
}

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

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

.category-movie-grid {
  margin-top: 28px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  color: var(--color-text);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster,
.ranking-poster,
.detail-poster {
  background-color: #1e293b;
  background-image: linear-gradient(135deg, #1e293b, #475569);
  background-position: center;
  background-size: cover;
}

.poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.year-mark {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card-large .card-body {
  padding: 20px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

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

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.card-meta span:first-child,
.card-tags span {
  color: #ea580c;
  background: #ffedd5;
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 700;
}

.category-pills,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.category-pills a,
.filter-pill {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-pills a:hover,
.filter-pill:hover,
.filter-pill.is-active {
  color: #7e22ce;
  background: #ffffff;
  transform: translateY(-2px);
}

.filter-panel {
  margin: 28px 0;
}

.filter-panel .filter-pill {
  color: #475569;
  background: #f1f5f9;
  border: none;
}

.filter-panel .filter-pill.is-active,
.filter-panel .filter-pill:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
}

.inline-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-weight: 800;
}

.inline-search input {
  width: min(480px, 100%);
  color: #1f2937;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.filter-count,
.search-status {
  color: #64748b;
  margin: 14px 0 0;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

.rank-number {
  font-size: 20px;
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
}

.rank-tag {
  font-size: 12px;
  opacity: 0.88;
}

.page-hero {
  margin-bottom: 32px;
  padding: clamp(28px, 5vw, 46px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 14px;
}

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

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.3));
}

.category-card-content {
  position: absolute;
  inset: auto 22px 22px 22px;
  display: grid;
  gap: 8px;
}

.category-card strong {
  font-size: 26px;
  font-weight: 900;
}

.category-card small,
.category-card em {
  color: #e5e7eb;
  font-style: normal;
  line-height: 1.55;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.ranking-poster {
  min-height: 110px;
}

.ranking-info {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 18px 16px 0;
}

.ranking-info strong {
  color: #111827;
  font-size: 20px;
}

.ranking-info em {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-info span:last-child {
  color: #94a3b8;
  font-size: 14px;
}

.ranking-info .ranking-number {
  color: #ea580c;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px auto;
  gap: 12px;
}

.search-form input,
.search-form select {
  width: 100%;
  color: #1f2937;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.detail-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 32px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #334155);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.detail-poster {
  min-height: 360px;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px 32px 32px 0;
}

.detail-badges,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-badges span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 750;
}

.detail-info h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 900;
}

.detail-one-line {
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.genre-list span {
  color: #fed7aa;
  border-color: rgba(251, 146, 60, 0.22);
}

.player-section {
  margin-bottom: 32px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 18px;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.24), rgba(0, 0, 0, 0.62));
  border: none;
  font-size: 18px;
  font-weight: 900;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.is-playing .player-overlay {
  visibility: hidden;
  opacity: 0;
}

.player-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(220, 38, 38, 0.35);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-bottom: 32px;
}

.detail-article h2,
.detail-sidebar h2,
.prose-block h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 24px;
  font-weight: 900;
}

.detail-article p,
.prose-block p,
.prose-block details {
  color: #475569;
  font-size: 16px;
  line-height: 1.9;
}

.detail-article p + h2 {
  margin-top: 28px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.info-list dt {
  color: #94a3b8;
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: #334155;
}

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

.sidebar-rank-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-rank-list a:hover {
  color: #ea580c;
  background: #fff7ed;
}

.sidebar-rank-list span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar-rank-list small {
  color: #94a3b8;
}

.prose-block {
  max-width: 920px;
  margin: 0 auto;
}

.prose-block details {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.prose-block summary {
  cursor: pointer;
  color: #111827;
  font-weight: 850;
}

.site-footer {
  color: #cbd5e1;
  background: #020617;
  margin-top: 32px;
  padding: 42px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand p,
.footer-bottom p {
  color: #94a3b8;
  line-height: 1.7;
}

.site-footer section:not(:first-child) {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer h3 {
  margin: 0 0 8px;
  color: #ffffff;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-bottom {
  width: min(1280px, 100%);
  margin: 28px auto 0;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid #1e293b;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: none;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.3);
  font-size: 22px;
  font-weight: 900;
  z-index: 40;
}

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

.is-hidden {
  display: none !important;
}

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

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

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

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

@media (max-width: 860px) {
  .top-nav {
    padding: 0 16px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .nav-search {
    display: none;
  }

  .page-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 20px;
  }

  .hero-carousel {
    height: 460px;
    border-radius: 18px;
  }

  .hero-arrow {
    display: none;
  }

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

  .rank-list,
  .footer-grid,
  .detail-layout,
  .search-form {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    min-height: 260px;
  }

  .detail-info {
    padding: 0 24px 28px;
  }

  .ranking-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .hero-carousel {
    height: 410px;
  }

  .hero-content {
    bottom: 48px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .ranking-card {
    grid-template-columns: 1fr;
  }

  .ranking-poster {
    aspect-ratio: 16 / 9;
  }

  .section-heading {
    align-items: flex-start;
  }

  .rank-row {
    grid-template-columns: 44px 1fr;
  }

  .rank-tag {
    display: none;
  }
}
