:root {
  color-scheme: dark;
  --bg-deep: #020617;
  --bg-main: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.82);
  --bg-card-strong: rgba(30, 41, 59, 0.92);
  --border-soft: rgba(148, 163, 184, 0.18);
  --border-cyan: rgba(34, 211, 238, 0.32);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --amber: #fbbf24;
  --shadow-cyan: 0 22px 60px rgba(8, 145, 178, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  font-family: Inter, 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(--text-main);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 35rem),
    radial-gradient(circle at 75% 10%, rgba(37, 99, 235, 0.15), transparent 34rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg-main) 42%, var(--bg-deep));
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--cyan), #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-logo {
  font-size: 22px;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.13);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.85);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  height: 620px;
  min-height: 70vh;
  overflow: hidden;
  background: #020617;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer-left {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.18) 72%, transparent);
}

.hero-layer-bottom {
  background: linear-gradient(0deg, var(--bg-deep), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #67e8f9;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-badge {
  padding: 8px 14px;
  margin-bottom: 22px;
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.22);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-soft);
}

.hero-meta {
  margin-top: 22px;
}

.hero-meta span,
.detail-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
  color: var(--amber);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.outline-button,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.36);
}

.primary-button:hover,
.rank-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cyan);
}

.ghost-button,
.outline-button {
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
}

.ghost-button:hover,
.outline-button:hover {
  border-color: var(--border-cyan);
  background: rgba(8, 145, 178, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(12px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 18px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.62);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 36px;
  background: var(--cyan);
}

.intro-panel,
.spotlight-panel,
.hot-panel,
.feature-strip,
.category-section,
.page-title-block,
.player-section,
.detail-content-grid,
.related-section {
  margin-top: 56px;
}

.intro-panel,
.spotlight-panel,
.hot-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.68));
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
}

.intro-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

.intro-panel h2,
.spotlight-panel h2,
.page-title-block h1,
.player-section h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

.intro-panel p,
.spotlight-panel p,
.page-title-block p {
  color: var(--text-soft);
  line-height: 1.8;
}

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

.section-heading span {
  width: 5px;
  height: 34px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
}

.section-heading a,
.text-link {
  margin-left: auto;
  color: #67e8f9;
  font-weight: 700;
}

.category-grid,
.category-overview-grid,
.movie-grid,
.spotlight-grid {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.26);
}

.category-tile img,
.category-card-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.46;
}

.category-glow,
.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.86));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile strong {
  margin-top: 82px;
  font-size: 22px;
}

.category-tile em {
  margin-top: 8px;
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.55;
}

.horizontal-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: rgba(34, 211, 238, 0.55) rgba(15, 23, 42, 0.72);
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 145, 178, 0.25));
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 900;
  color: #020617;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

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

.movie-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-main h3 a:hover {
  color: #67e8f9;
}

.movie-meta,
.movie-desc {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-desc {
  color: var(--text-soft);
}

.movie-card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.movie-card-tags span,
.detail-tags span {
  color: #a5f3fc;
  padding: 4px 8px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  font-size: 12px;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.68);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

.search-box input {
  width: 100%;
  height: 48px;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  outline: none;
  background: rgba(2, 6, 23, 0.75);
  padding: 0 14px;
}

.search-box input:focus {
  border-color: var(--border-cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--text-soft);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.78);
}

.filter-button:hover,
.filter-button.active {
  color: #ffffff;
  border-color: var(--border-cyan);
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.72), rgba(37, 99, 235, 0.74));
}

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

.rank-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.76);
}

.rank-cover {
  position: relative;
  width: 86px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
}

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

.rank-cover span {
  position: absolute;
  left: 6px;
  top: 6px;
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  border-radius: 8px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 900;
}

.rank-main h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-main p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.rank-meta {
  margin-top: 10px;
  font-size: 13px;
}

.rank-action {
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
}

.spotlight-panel {
  grid-template-columns: 0.9fr 1.4fr;
  margin-bottom: 56px;
}

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

.compact-card .poster-link {
  aspect-ratio: 16 / 10;
}

.page-main {
  padding: 42px 0 60px;
}

.page-title-block {
  padding: 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.15), transparent 28rem),
    rgba(15, 23, 42, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: #67e8f9;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.76);
}

.category-card-images {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.75);
}

.category-card-images img:nth-child(2) {
  left: 25%;
}

.category-card-images img:nth-child(3) {
  left: 50%;
}

.category-card-images img:nth-child(4) {
  left: 75%;
}

.category-card-images img {
  width: 42%;
  opacity: 0.72;
}

.category-card-large h2 {
  margin: 6px 0 10px;
  font-size: 24px;
}

.category-card-large p {
  color: var(--text-soft);
  line-height: 1.75;
}

.detail-head {
  margin-top: 10px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 20%, rgba(34, 211, 238, 0.13), transparent 28rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.68));
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

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

.detail-info h1 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.player-section h2 {
  margin-bottom: 18px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: 0 28px 90px rgba(6, 182, 212, 0.16);
  aspect-ratio: 16 / 9;
}

.video-element {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(8, 145, 178, 0.15), rgba(2, 6, 23, 0.54)),
    rgba(2, 6, 23, 0.1);
  z-index: 3;
}

.play-overlay span {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 26px 70px rgba(6, 182, 212, 0.38);
  font-size: 42px;
}

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

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

.detail-article,
.detail-side-card {
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.74);
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  margin: 0;
  color: var(--text-soft);
  line-height: 2;
  font-size: 16px;
}

.detail-side-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-side-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-side-card dt {
  color: var(--text-muted);
}

.detail-side-card dd {
  margin: 0;
  color: var(--text-main);
}

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

.site-footer {
  margin-top: 70px;
  padding: 48px 0 28px;
  border-top: 1px solid var(--border-soft);
  background: rgba(2, 6, 23, 0.72);
}

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

.footer-logo {
  font-size: 20px;
}

.site-footer p,
.site-footer a {
  color: var(--text-muted);
  line-height: 1.75;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14px;
}

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

@media (max-width: 1120px) {
  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .detail-layout,
  .detail-content-grid,
  .spotlight-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-logo {
    font-size: 17px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    height: 620px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .hero-layer-left {
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.78) 48%, rgba(2, 6, 23, 0.16));
  }

  .hero-arrow {
    top: auto;
    bottom: 26px;
    width: 42px;
    height: 42px;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .intro-panel,
  .category-card-large,
  .rank-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .category-tile {
    min-height: 152px;
  }

  .category-tile strong {
    margin-top: 54px;
    font-size: 18px;
  }

  .rank-row {
    align-items: start;
  }

  .rank-action {
    width: 100%;
  }

  .page-title-block,
  .detail-layout,
  .detail-article,
  .detail-side-card,
  .intro-panel,
  .spotlight-panel,
  .hot-panel {
    padding: 20px;
  }

  .play-overlay span {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-content,
  .nav-shell,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .category-grid,
  .movie-grid,
  .spotlight-grid,
  .related-grid {
    gap: 12px;
  }

  .movie-card-body {
    padding: 10px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-desc,
  .movie-card-tags {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
  }
}
