:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #38bdf8;
  --accent-deep: #0284c7;
  --violet: #8b5cf6;
  --rose: #fb7185;
  --radius: 22px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.22), transparent 34rem),
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.84);
  backdrop-filter: blur(18px);
}

.header-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #e0f2fe;
  background: linear-gradient(135deg, var(--accent), #2563eb 55%, var(--violet));
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.25);
}

.brand-title {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #7dd3fc, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: white;
  background: rgba(30, 41, 59, 0.86);
}

.nav-link-soft {
  color: #93c5fd;
}

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

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  color: white;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button {
  padding: 10px 14px;
  border-radius: 14px;
  color: white;
  background: rgba(14, 165, 233, 0.86);
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.13);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid var(--line);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px 24px 22px;
  background: rgba(2, 6, 23, 0.96);
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-panel a {
  padding: 11px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.64);
}

.mobile-search input {
  width: 100%;
  padding: 11px 13px;
}

.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.12);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.36) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.3) 42%, rgba(2, 6, 23, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  align-items: center;
  gap: 62px;
  padding: 88px 24px 104px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 14px;
  color: #fbbf24;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  margin-top: 24px;
  color: #e2e8f0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.48;
  max-width: 780px;
}

.hero-summary {
  margin-top: 18px;
  max-width: 720px;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.82;
}

.hero-tags,
.tag-row,
.detail-meta,
.detail-tags,
.footer-tags,
.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.detail-tags a,
.footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.18);
  font-size: 12px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.26);
}

.ghost-btn {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover,
.movie-card:hover,
.category-tile:hover,
.horizontal-card:hover {
  transform: translateY(-2px);
}

.hero-poster,
.page-hero-cover,
.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
}

.hero-poster::before,
.page-hero-cover::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.32), transparent 45%, rgba(139, 92, 246, 0.32));
}

.hero-poster img,
.page-hero-cover img,
.detail-poster img {
  aspect-ratio: 3 / 4.1;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(14px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px !important;
  height: 11px !important;
  border: 0 !important;
  background: rgba(226, 232, 240, 0.35) !important;
}

.hero-dot.is-active {
  width: 34px !important;
  background: var(--accent) !important;
}

.content-section,
.category-overview {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.panel-section,
.ranking-panel {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.62), rgba(2, 6, 23, 0.06));
}

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

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.section-link {
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.18);
  white-space: nowrap;
}

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

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

.movie-card,
.horizontal-card,
.article-card,
.category-overview-block {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.54));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.movie-card {
  display: flex;
  flex-direction: column;
}

.cover-link,
.cover-frame {
  display: block;
}

.cover-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 22;
  background: rgba(30, 41, 59, 0.8);
}

.cover-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.movie-card:hover .cover-frame img,
.category-tile:hover img,
.horizontal-card:hover img,
.ranking-cover:hover img {
  transform: scale(1.07);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.72));
}

.cover-badge,
.cover-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.cover-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.cover-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #2563eb);
}

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

.card-meta {
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta a,
.card-meta span {
  color: var(--muted);
}

.card-meta a {
  color: #7dd3fc;
}

.movie-card h3,
.horizontal-card h3,
.ranking-row h2 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover,
.ranking-row h2 a:hover,
.category-overview-copy h2 a:hover {
  color: #7dd3fc;
}

.movie-card p,
.horizontal-card p,
.ranking-row p,
.article-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 14px;
}

.compact-card .card-body {
  padding: 14px;
}

.compact-card h3 {
  font-size: 16px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 12px;
}

.horizontal-cover {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  background: rgba(30, 41, 59, 0.8);
}

.horizontal-cover img {
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.horizontal-cover span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: white;
  background: rgba(14, 165, 233, 0.92);
}

.horizontal-card > div:last-child {
  align-self: center;
}

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

.category-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #0f172a;
  transition: 0.25s ease;
}

.category-tile a,
.category-tile img,
.category-tile .tile-glow {
  position: absolute;
  inset: 0;
}

.category-tile img {
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.55s ease;
}

.tile-glow {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.94));
}

.category-tile div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.category-tile h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.category-tile p {
  margin-top: 8px;
  color: #cbd5e1;
  line-height: 1.65;
}

.tile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tile-links a {
  position: static;
  display: inline-flex;
  max-width: 150px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

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

.rank-list li,
.ranking-row {
  display: grid;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
}

.rank-list li {
  grid-template-columns: 64px minmax(0, 1fr) 90px;
  padding: 14px 18px;
}

.rank-num,
.ranking-index {
  color: #38bdf8;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.rank-list a {
  font-weight: 800;
}

.rank-list span:last-child {
  color: var(--muted);
  text-align: right;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.22), transparent 34rem), linear-gradient(180deg, #020617, #0f172a);
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 24px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: end;
}

.slim-hero {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero h1,
.detail-info h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.page-hero p,
.detail-line {
  max-width: 780px;
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #7dd3fc;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.6);
}

.filter-bar-wide {
  grid-template-columns: minmax(260px, 1fr) 160px 180px 200px;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  padding: 0 14px;
}

.category-overview {
  display: grid;
  gap: 26px;
}

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

.category-overview-copy {
  align-self: center;
}

.category-overview-copy h2 {
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.category-overview-copy p {
  margin: 12px 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

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

.ranking-row {
  grid-template-columns: 72px 92px minmax(0, 1fr);
  padding: 12px;
}

.ranking-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 22;
}

.ranking-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.detail-hero {
  min-height: 620px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px) saturate(1.2);
  transform: scale(1.05);
  opacity: 0.46;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.76)), linear-gradient(0deg, #020617, transparent 70%);
}

.detail-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 24px 70px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.detail-poster {
  padding: 10px;
}

.full-btn {
  width: 100%;
  margin-top: 12px;
}

.detail-info {
  max-width: 850px;
}

.detail-meta {
  margin: 24px 0 18px;
}

.detail-tags a {
  color: #dbeafe;
}

.player-section {
  padding-top: 52px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: black;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-wrap video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-wrap video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), rgba(2, 6, 23, 0.72));
}

.player-start {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  color: white;
  font-size: 38px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  box-shadow: 0 24px 52px rgba(14, 165, 233, 0.32);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 24px;
}

.article-card {
  padding: 28px;
}

.article-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), #020617);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-grid a,
.footer-grid li,
.footer-bottom {
  color: var(--muted);
  line-height: 1.72;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 900;
}

.footer-grid a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

[data-card].is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

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

  .hero-poster {
    max-width: 360px;
  }

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

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

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

@media (max-width: 820px) {
  .header-shell {
    padding: 0 16px;
  }

  .brand-title {
    font-size: 18px;
  }

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

  .hero-content {
    padding: 62px 18px 92px;
  }

  .hero-poster {
    display: none;
  }

  .content-section,
  .category-overview {
    padding: 48px 16px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .small-grid,
  .horizontal-grid,
  .category-grid,
  .overview-card-strip,
  .detail-content {
    grid-template-columns: 1fr 1fr;
  }

  .horizontal-card,
  .category-overview-block,
  .detail-layout,
  .page-hero,
  .filter-bar,
  .filter-bar-wide {
    grid-template-columns: 1fr;
  }

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

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

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

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .movie-grid,
  .small-grid,
  .horizontal-grid,
  .category-grid,
  .overview-card-strip,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .rank-list span:last-child {
    display: none;
  }

  .ranking-row {
    grid-template-columns: 52px 78px minmax(0, 1fr);
  }

  .page-hero,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .player-start {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }
}
