:root {
  --bg: #0f172a;
  --bg-deep: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(30, 41, 59, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --red: #ef4444;
  --rose: #fb7185;
  --orange: #f97316;
  --amber: #f59e0b;
  --yellow: #facc15;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #22c55e;
  --purple: #a855f7;
  --teal: #14b8a6;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.12), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.36);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.brand-name {
  font-size: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--muted);
  padding: 10px 15px;
  border-radius: 12px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(59, 130, 246, 0.9);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.85);
  color: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}

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

.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(125deg, #ea580c 0%, #f59e0b 45%, #facc15 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.02));
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(78px);
}

.hero-glow-left {
  left: -120px;
  top: 70px;
}

.hero-glow-right {
  right: -120px;
  bottom: 120px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 600px;
  margin: 0 auto;
  padding: 80px 20px 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: center;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-light {
  color: #ea580c;
  background: #fff;
  box-shadow: 0 18px 35px rgba(234, 88, 12, 0.25);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  color: #ea580c;
  background: #fff;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pill {
  max-width: 230px;
  padding: 9px 13px;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero-pill:hover {
  background: rgba(15, 23, 42, 0.42);
}

.hero-panel {
  padding: 18px;
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
}

.hero-panel-head a {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}

.spotlight-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
}

.spotlight-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.spotlight-card:hover img {
  transform: scale(1.08);
}

.spotlight-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(2, 6, 23, 0.86));
}

.spotlight-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 28px;
  line-height: 1.2;
}

.spotlight-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.spotlight-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.35);
  border-radius: 14px;
}

.spotlight-list small {
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 20px;
}

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

.section-heading h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 12px;
  font-size: 20px;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--soft);
  line-height: 1.7;
}

.movie-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.movie-row::-webkit-scrollbar {
  display: none;
}

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

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

.movie-card {
  overflow: hidden;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  scroll-snap-align: start;
}

.movie-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 24px 52px rgba(2, 6, 23, 0.38), 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #020617;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.72));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 11px;
  background: rgba(239, 68, 68, 0.94);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 12px;
  font-size: 16px;
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan);
}

.movie-line {
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.55;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 13px;
}

.movie-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #c4b5fd;
  font-size: 12px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}

.category-card h3,
.category-overview-card h2 {
  margin: 12px 0 10px;
  font-size: 27px;
  line-height: 1.2;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.category-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(15, 23, 42, 0.32);
  border-radius: 14px;
  font-weight: 900;
}

.orange {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.rose {
  background: linear-gradient(135deg, #be123c, #fb7185);
}

.cyan {
  background: linear-gradient(135deg, #0e7490, #22d3ee);
}

.amber {
  background: linear-gradient(135deg, #b45309, #facc15);
}

.green {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.blue {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.purple {
  background: linear-gradient(135deg, #7e22ce, #c084fc);
}

.teal {
  background: linear-gradient(135deg, #0f766e, #2dd4bf);
}

.ranking-band {
  background: linear-gradient(135deg, rgba(136, 19, 55, 0.82), rgba(127, 29, 29, 0.88));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-inner {
  max-width: 1280px;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.search-strip,
.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 14px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.search-strip input,
.filter-panel input {
  flex: 1 1 280px;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  outline: none;
}

.search-strip input:focus,
.filter-panel input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.search-more {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: rgba(59, 130, 246, 0.86);
  border-radius: 14px;
  font-weight: 800;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-actions button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  cursor: pointer;
}

.filter-actions button:hover,
.filter-actions button.active {
  color: #fff;
  background: rgba(59, 130, 246, 0.9);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.96), rgba(245, 158, 11, 0.86));
}

.compact-hero,
.category-hero,
.ranking-hero,
.search-hero {
  min-height: 330px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 20px;
}

.page-hero h1 {
  max-width: 840px;
  margin: 20px 0 16px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.category-samples a {
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-samples a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.top-rank-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.top-rank-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.top-rank-card:hover img {
  transform: scale(1.08);
}

.top-rank-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

.top-rank-card span,
.top-rank-card strong,
.top-rank-card small {
  position: absolute;
  z-index: 2;
  left: 20px;
}

.top-rank-card span {
  top: 20px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
}

.top-rank-card strong {
  right: 20px;
  bottom: 54px;
  font-size: 28px;
  line-height: 1.2;
}

.top-rank-card small {
  bottom: 24px;
  color: var(--muted);
}

.detail-hero {
  background: #020617;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  filter: blur(16px);
  transform: scale(1.06);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.72)), linear-gradient(0deg, var(--bg), transparent 35%);
}

.detail-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 20px 70px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 28px;
}

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

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

.detail-info h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

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

.detail-meta span {
  padding: 8px 12px;
  color: #fff;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.detail-tags {
  margin-bottom: 24px;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68);
}

.player-cover-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.24), rgba(2, 6, 23, 0.45));
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 48px rgba(239, 68, 68, 0.4);
  font-size: 36px;
  padding-left: 6px;
}

.detail-text {
  padding-top: 20px;
}

.detail-article {
  max-width: 960px;
  padding: 34px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.24);
}

.detail-article h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

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

.detail-article p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
  text-align: justify;
}

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

.site-footer {
  margin-top: 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--soft);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.72);
  border-radius: 12px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.8);
}

.footer-bottom {
  padding: 18px 20px 26px;
  color: var(--soft);
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

@media (max-width: 1120px) {
  .movie-grid,
  .featured-grid,
  .related-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-panel {
    max-width: 560px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero-panel {
    display: none;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
  }
}

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

  .mobile-nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-section,
  .hero-inner {
    min-height: 560px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .content-section {
    padding: 46px 14px;
  }

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

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

  .movie-row {
    grid-auto-columns: minmax(180px, 82vw);
  }

  .player-box {
    border-radius: 16px;
  }

  .big-play {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .detail-article {
    padding: 24px;
  }
}
