* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0f1d;
  --panel: #0f172a;
  --panel-soft: #111c31;
  --line: #1e293b;
  --muted: #94a3b8;
  --text: #f8fafc;
  --soft-text: #cbd5e1;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 30rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 32rem),
    var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1180px;
  height: 66px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-trigger {
  border: 0;
  color: #d1d5db;
  background: transparent;
  border-radius: 12px;
  padding: 10px 14px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-trigger:hover {
  color: white;
  background: #1e293b;
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 18px;
  background: #0f172a;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #cbd5e1;
}

.nav-dropdown a:hover {
  color: white;
  background: #1e293b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #e5e7eb;
  background: #1e293b;
  transition: 0.2s ease;
}

.icon-button:hover {
  color: white;
  background: #334155;
}

.menu-button {
  display: none;
}

.mobile-panel {
  display: none;
  padding: 10px 22px 18px;
  border-top: 1px solid #1e293b;
  background: #0f172a;
}

.mobile-panel.is-open {
  display: grid;
  gap: 8px;
}

.mobile-panel a,
.mobile-search {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 12px;
  color: #d1d5db;
  background: transparent;
  text-align: left;
}

.mobile-panel a:hover,
.mobile-search:hover {
  color: white;
  background: #1e293b;
}

main {
  padding-top: 66px;
}

.hero {
  position: relative;
  min-height: 580px;
  height: 72vh;
  max-height: 820px;
  overflow: hidden;
  background: #0f172a;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.1)),
    linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.05) 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-tags span,
.detail-tags a,
.detail-meta span {
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.12);
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 15px;
  padding: 0 22px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.33);
}

.ghost-button {
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.5);
}

.ghost-button:hover {
  color: white;
  background: rgba(30, 41, 59, 0.88);
}

.hero-poster {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  font-size: 36px;
  transition: 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: 0.2s ease;
}

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

.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 22px;
}

.site-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.86);
}

.site-intro h2,
.section-title h2,
.page-hero h1,
.detail-copy h1,
.content-card h2 {
  margin: 0;
}

.site-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.site-intro p:last-child,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-title a {
  color: var(--accent);
  font-weight: 700;
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

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

.compact-gap {
  margin-top: 18px;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

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

.poster-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: 0.35s ease;
}

.movie-card:hover img {
  transform: scale(1.04);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1) 58%);
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: 0.25s ease;
}

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

.year-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  padding: 5px 8px;
  color: white;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.poster-info {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
}

.poster-info strong,
.movie-text strong,
.compact-body strong,
.rank-copy strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poster-info small,
.movie-text small,
.compact-body small,
.rank-copy small {
  display: block;
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 12px;
}

.movie-text {
  display: none;
}

.movie-card-large .poster-wrap {
  border-radius: 24px;
}

.movie-card-large .poster-info strong {
  font-size: 20px;
}

.movie-card-compact {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 16px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.7);
  transition: 0.2s ease;
}

.movie-card-compact:hover {
  background: #162032;
  transform: translateX(3px);
}

.movie-card-compact img {
  width: 68px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

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

.category-tile,
.category-card,
.ranking-feature {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.category-tile img,
.category-card img,
.ranking-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: 0.35s ease;
}

.category-tile:hover img,
.category-card:hover img,
.ranking-feature:hover img {
  transform: scale(1.05);
}

.category-tile-layer,
.category-card-layer,
.ranking-feature-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22));
}

.category-tile-text,
.category-card-content,
.ranking-feature span {
  position: absolute;
  inset: auto 18px 18px 18px;
}

.category-tile-text strong,
.category-card-content strong,
.ranking-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.category-tile-text small,
.category-card-content small,
.ranking-feature small {
  display: -webkit-box;
  overflow: hidden;
  color: #cbd5e1;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.mini-links span {
  max-width: 100%;
  border-radius: 999px;
  padding: 5px 8px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.14);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 28px;
}

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

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

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 58px minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(51, 65, 85, 0.7);
  border-radius: 18px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.76);
  transition: 0.2s ease;
}

.rank-item:hover {
  background: #162032;
  transform: translateY(-2px);
}

.rank-no {
  color: var(--accent);
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}

.rank-item img {
  width: 58px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-arrow {
  color: var(--muted);
  font-size: 32px;
}

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

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

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 80px 22px 52px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.25)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 28rem),
    #0f172a;
}

.page-hero > div {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.category-hero,
.ranking-hero,
.slim-hero {
  border-bottom: 1px solid rgba(30, 41, 59, 0.78);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.78);
}

.filter-bar button:hover,
.filter-bar button.is-active {
  color: white;
  border-color: rgba(245, 158, 11, 0.7);
  background: rgba(245, 158, 11, 0.18);
}

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

.ranking-feature {
  min-height: 360px;
}

.ranking-feature em {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: white;
  background: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding-top: 66px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.75)),
    linear-gradient(0deg, var(--bg), transparent 45%);
}

.detail-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 22px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: #cbd5e1;
  font-size: 14px;
}

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

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

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.detail-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 780px;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.8;
}

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

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

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.88);
  border-radius: 28px;
  background: black;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.video-play-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.54));
  transition: 0.2s ease;
}

.video-play-button span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  font-size: 32px;
}

.video-shell.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

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

.content-card {
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: 24px;
  padding: 26px;
  background: rgba(15, 23, 42, 0.76);
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 94px 22px 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.search-overlay[hidden] {
  display: none;
}

.search-panel {
  max-width: 760px;
  max-height: 80vh;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.86);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.search-top {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #1e293b;
}

.search-icon {
  color: var(--muted);
  text-align: center;
}

.search-top input {
  width: 100%;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 18px;
}

.search-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #cbd5e1;
  background: #1e293b;
  font-size: 28px;
}

.search-results {
  max-height: 62vh;
  overflow: auto;
  padding: 14px;
}

.search-empty {
  margin: 22px;
  color: var(--muted);
  text-align: center;
}

.search-result {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  transition: 0.2s ease;
}

.search-result:hover {
  background: #1e293b;
}

.search-result img {
  width: 64px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
}

.search-result strong {
  display: block;
  margin-bottom: 4px;
}

.search-result small,
.search-result span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  margin-top: 44px;
  border-top: 1px solid rgba(30, 41, 59, 0.85);
  background: #0f172a;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 22px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.85);
  padding: 18px 22px;
  color: var(--muted);
  text-align: center;
}

.is-hidden-by-filter {
  display: none;
}

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

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

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

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-poster {
    width: min(240px, 70vw);
    transform: none;
  }

  .site-intro,
  .split-section,
  .detail-layout,
  .detail-content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-intro {
    display: grid;
  }

  .movie-grid-six,
  .movie-grid-four,
  .full-rank-list,
  .rank-grid-list,
  .ranking-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-layout {
    gap: 28px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    padding: 0 14px;
  }

  .site-logo {
    font-size: 18px;
  }

  .hero-control {
    display: none;
  }

  .section-wrap {
    padding: 36px 14px;
  }

  .hero-content,
  .page-hero,
  .detail-hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .movie-grid-six,
  .movie-grid-four,
  .category-grid,
  .category-overview-grid,
  .full-rank-list,
  .rank-grid-list,
  .ranking-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .poster-info {
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .poster-info strong {
    font-size: 14px;
  }

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

  .rank-arrow {
    display: none;
  }

  .category-tile,
  .category-card,
  .ranking-feature {
    min-height: 220px;
  }

  .video-play-button span {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
