:root {
  color-scheme: light;
  --bg: #f8fafc;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --panel: #ffffff;
  --green: #16a34a;
  --green-dark: #15803d;
  --red: #ef4444;
  --orange: #f97316;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 0, rgba(34, 197, 94, 0.12), transparent 30rem),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #334155;
  font-weight: 700;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover {
  color: var(--green);
  background: #f0fdf4;
}

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

.header-search input,
.mobile-search input,
.page-search input {
  width: 230px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--text);
  outline: none;
  padding: 10px 16px;
  transition: box-shadow 0.2s ease, border 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.page-search input:focus {
  border-color: rgba(22, 163, 74, 0.7);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.header-search button,
.mobile-search button,
.page-search button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--green), #10b981);
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.menu-button {
  display: none;
  border: 0;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 52px;
  opacity: 0;
  pointer-events: none;
  padding: 92px max(32px, calc((100vw - 1220px) / 2)) 82px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.3)),
    var(--hero-image) center / cover no-repeat;
  transition: opacity 0.7s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(239, 68, 68, 0.35), transparent 24rem),
    radial-gradient(circle at 78% 10%, rgba(249, 115, 22, 0.24), transparent 26rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.9));
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--green);
  background: rgba(240, 253, 244, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 18px 0 8px;
  max-width: 860px;
  color: white;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  margin: 0 0 18px;
  color: #fed7aa;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.hero-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-tags {
  margin: 22px 0 28px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.outline-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--green), #10b981);
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.primary-button.full {
  width: 100%;
}

.ghost-button {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.outline-button,
.section-more {
  color: var(--green);
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.hero-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28), rgba(249, 115, 22, 0.18));
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  inset: auto auto 22px 22px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(239, 68, 68, 0.32);
}

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

.hero-dot {
  width: 36px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: white;
}

.content-section,
.detail-wrap {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section {
  padding: 66px 0 0;
}

.nested-section {
  width: 100%;
}

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

.section-heading h2,
.page-hero h1,
.detail-card h1,
.rank-column h2,
.side-panel h2,
.filter-copy h2 {
  margin: 10px 0 8px;
  color: #111827;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p,
.page-hero p,
.filter-copy p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading.slim {
  align-items: center;
}

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

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

.card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(34, 197, 94, 0.18)),
    #e2e8f0;
}

.poster-frame img,
.compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-link:hover .poster-frame img,
.compact-card:hover .compact-thumb img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.75));
}

.play-badge,
.compact-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.play-badge {
  width: 54px;
  height: 54px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card-link:hover .play-badge {
  opacity: 1;
}

.duration-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.duration-badge {
  right: 12px;
  top: 12px;
  color: white;
  background: rgba(15, 23, 42, 0.75);
  padding: 6px 10px;
}

.type-badge {
  left: 12px;
  bottom: 12px;
  color: white;
  background: linear-gradient(135deg, var(--green), #10b981);
  padding: 6px 10px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.card-body strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}

.card-body em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.meta-row {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.tag-row {
  margin-top: auto;
}

.tag-row span,
.detail-tags span {
  color: var(--green-dark);
  background: #f0fdf4;
}

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

.category-tile {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  color: white;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.82)),
    var(--tile-image) center / cover,
    var(--tile-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.category-tile span {
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--tile-color);
  font-weight: 900;
}

.category-tile strong {
  line-height: 1.45;
}

.category-tile em {
  font-style: normal;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
}

.rank-section {
  padding-top: 72px;
}

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

.rank-item,
.rank-row {
  display: grid;
  align-items: center;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
}

.rank-row {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 15px;
}

.rank-row em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.rank-item:hover,
.rank-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.rank-num,
.rank-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 14px;
  font-weight: 900;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 30px;
  padding: 68px;
}

.soft-hero {
  background:
    radial-gradient(circle at 8% 5%, rgba(239, 68, 68, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 0, rgba(34, 197, 94, 0.18), transparent 28rem),
    white;
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: var(--shadow);
}

.category-hero {
  min-height: 300px;
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.58)),
    var(--tile-image) center / cover,
    var(--tile-color);
}

.category-hero h1,
.category-hero p {
  color: white;
}

.back-link,
.breadcrumb a {
  color: var(--green);
  font-weight: 900;
}

.category-overview-grid {
  width: min(1220px, calc(100% - 32px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-overview-card,
.side-panel,
.detail-card,
.filter-panel,
.rank-column,
.rank-grid-column {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.category-overview-card {
  padding: 24px;
}

.category-overview-head span {
  color: var(--tile-color);
  font-weight: 900;
}

.category-overview-head h2 {
  margin: 10px 0 16px;
  font-size: 24px;
  line-height: 1.35;
}

.category-overview-head a {
  display: inline-flex;
  color: white;
  background: var(--tile-color);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

.compact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.compact-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.compact-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #e2e8f0;
}

.compact-thumb span {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.compact-card strong {
  display: block;
  overflow: hidden;
  color: #111827;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px;
}

.sort-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sort-buttons button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #334155;
  background: #f1f5f9;
  font-weight: 900;
  cursor: pointer;
}

.sort-buttons button.active {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.rank-page-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
}

.rank-column,
.rank-grid-column {
  padding: 24px;
}

.rank-rows {
  display: grid;
  gap: 10px;
}

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

.empty-state {
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 24px;
  box-shadow: var(--shadow);
}

.empty-state strong {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
}

.page-search {
  max-width: 620px;
  margin-top: 24px;
}

.page-search input {
  flex: 1;
  width: auto;
}

.detail-wrap {
  padding-top: 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  background: #020617;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.28);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.2), rgba(2, 6, 23, 0.52));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.32);
}

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

.player-shell.is-playing .player-overlay,
.player-shell.is-ready .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

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

.detail-meta span {
  display: inline-flex;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.article-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-block h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.article-block p {
  margin: 0;
  color: #475569;
  line-height: 1.95;
}

.review-block {
  padding: 24px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
}

.detail-side {
  min-width: 0;
}

.side-panel {
  position: sticky;
  top: 102px;
  padding: 22px;
}

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

.site-footer {
  margin-top: 76px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

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

.footer-brand p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 30px 0 24px;
}

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

.copyright {
  margin: 0;
  color: #94a3b8;
}

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

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

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

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-inner {
    height: 68px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px 74px;
  }

  .hero-poster {
    width: min(320px, 72vw);
    margin: 0 auto;
  }

  .section-heading,
  .filter-panel,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }

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

  .rank-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 42px 24px;
  }
}

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

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

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

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

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

  .compact-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .content-section,
  .detail-wrap,
  .page-hero,
  .footer-inner,
  .header-inner,
  .mobile-menu {
    width: min(100% - 22px, 1220px);
  }
}
