:root {
  --bg: #0a0e27;
  --bg-soft: #11172d;
  --panel: #1a2332;
  --panel-light: #223047;
  --line: rgba(168, 181, 199, 0.16);
  --text: #e8eef5;
  --muted: #a8b5c7;
  --dim: #6b7b8c;
  --blue: #4a9eff;
  --green: #00d4aa;
  --orange: #ff6b35;
  --gold: #f4c430;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(74, 158, 255, 0.14), transparent 32rem),
    radial-gradient(circle at top right, rgba(0, 212, 170, 0.10), transparent 34rem),
    var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section-spacing {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 181, 199, 0.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(74, 158, 255, 0.28);
}

.brand-text {
  white-space: nowrap;
  font-size: 20px;
}

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

.desktop-nav a,
.mobile-nav a,
.quick-links a,
.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.quick-links a:hover,
.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.search-shell {
  position: relative;
}

.header-search {
  width: min(280px, 22vw);
}

.search-shell input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(168, 181, 199, 0.18);
  color: var(--text);
  background: rgba(26, 35, 50, 0.78);
  border-radius: 999px;
  outline: none;
  padding: 12px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-shell input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(74, 158, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(74, 158, 255, 0.12);
  background: rgba(26, 35, 50, 0.96);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(520px, 88vw);
  max-height: 430px;
  overflow: auto;
  display: none;
  padding: 10px;
  border: 1px solid rgba(168, 181, 199, 0.16);
  border-radius: 20px;
  background: rgba(17, 23, 45, 0.98);
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  color: var(--muted);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.search-result-item img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.search-result-item strong,
.search-result-item span {
  display: block;
}

.search-result-item strong {
  margin-bottom: 4px;
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(168, 181, 199, 0.12);
}

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

.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0 18px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  height: 76vh;
  min-height: 620px;
  overflow: hidden;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 39, 0.95), rgba(10, 14, 39, 0.62) 48%, rgba(10, 14, 39, 0.86)),
    linear-gradient(0deg, var(--bg), rgba(10, 14, 39, 0.15) 45%, rgba(10, 14, 39, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 56px;
}

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

.hero h1,
.page-hero h1,
.detail-intro h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.36);
}

.hero-line,
.page-hero p,
.detail-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
}

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

.hero-tags {
  margin-top: 26px;
}

.hero-tags span,
.detail-tags span,
.movie-tags span {
  color: var(--text);
  border: 1px solid rgba(168, 181, 199, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 32px rgba(74, 158, 255, 0.24);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 32px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.quick-panel {
  position: relative;
  z-index: 6;
  margin-top: -44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(168, 181, 199, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 23, 45, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

.quick-links a {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link,
.text-link {
  color: var(--green);
  font-weight: 800;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(168, 181, 199, 0.12);
  border-radius: 20px;
  background: rgba(26, 35, 50, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 158, 255, 0.48);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.32);
}

.movie-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.movie-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.movie-card:hover .movie-cover img {
  transform: scale(1.06);
  opacity: 0.92;
}

.movie-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
}

.movie-glow {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(10, 14, 39, 0.9), transparent);
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0;
  min-height: 48px;
  font-size: 17px;
  line-height: 1.4;
}

.movie-info h3 a:hover {
  color: var(--blue);
}

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

.movie-desc {
  display: -webkit-box;
  min-height: 64px;
  overflow: hidden;
  margin: 10px 0 14px;
  color: var(--muted);
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.movie-tags span {
  padding: 5px 9px;
  color: var(--muted);
  font-size: 12px;
}

.movie-card-large {
  height: 100%;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.spotlight-main .movie-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  height: 100%;
}

.spotlight-main .movie-cover img {
  height: 100%;
  aspect-ratio: auto;
}

.spotlight-main .movie-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.spotlight-main .movie-info h3 {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.spotlight-rail {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(168, 181, 199, 0.12);
  border-radius: 18px;
  background: rgba(26, 35, 50, 0.68);
}

.rank-row:hover {
  border-color: rgba(0, 212, 170, 0.42);
  background: rgba(34, 48, 71, 0.78);
}

.rank-row img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-row strong,
.rank-row em {
  display: block;
}

.rank-row em {
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

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

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(168, 181, 199, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(74, 158, 255, 0.18), rgba(0, 212, 170, 0.08)),
    rgba(26, 35, 50, 0.78);
  transition: transform 0.25s ease, border 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 158, 255, 0.5);
}

.category-tile span {
  font-size: 22px;
  font-weight: 900;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

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

.page-main {
  padding-bottom: 48px;
}

.page-hero {
  padding: 88px 0 28px;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 800px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(168, 181, 199, 0.14);
  border-radius: 22px;
  background: rgba(17, 23, 45, 0.74);
}

.filter-panel select {
  appearance: none;
}

.movie-card.is-hidden,
.ranking-item.is-hidden {
  display: none;
}

.category-overview-block {
  padding: 42px 0;
  border-top: 1px solid rgba(168, 181, 199, 0.12);
}

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

.category-overview-head h2 {
  margin: 0;
  font-size: 32px;
}

.category-overview-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

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

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 16px;
  border: 1px solid rgba(168, 181, 199, 0.12);
  border-radius: 22px;
  background: rgba(26, 35, 50, 0.72);
}

.ranking-cover {
  position: relative;
}

.ranking-cover strong {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.ranking-cover img {
  width: 130px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-copy h2 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.ranking-copy p {
  max-width: 860px;
  color: var(--muted);
  line-height: 1.7;
}

.detail-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-intro {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  padding: 70px 0 54px;
}

.detail-poster {
  width: 320px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 8px 13px;
}

.detail-tags {
  margin-top: 18px;
}

.player-section {
  margin-top: -92px;
  position: relative;
  z-index: 3;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 181, 199, 0.18);
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(74, 158, 255, 0.22), transparent 18rem),
    rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 18px 38px rgba(74, 158, 255, 0.35);
}

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

.content-card {
  padding: 28px;
  border: 1px solid rgba(168, 181, 199, 0.13);
  border-radius: 24px;
  background: rgba(26, 35, 50, 0.76);
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.content-card p {
  color: var(--muted);
  line-height: 1.9;
}

.detail-side dl {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.detail-side div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.detail-side dt {
  color: var(--dim);
}

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

.site-footer {
  margin-top: 64px;
  padding: 56px 0 26px;
  border-top: 1px solid rgba(168, 181, 199, 0.12);
  background: rgba(5, 8, 24, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 42px;
}

.footer-brand {
  font-size: 22px;
}

.site-footer p,
.site-footer h2 {
  margin: 12px 0 0;
}

.site-footer p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 181, 199, 0.1);
  color: var(--dim);
}

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

  .header-search {
    width: min(360px, 36vw);
  }

  .menu-toggle {
    display: block;
  }

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

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

@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
    min-height: 760px;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-content,
  .detail-intro,
  .detail-content,
  .spotlight-grid,
  .dual-section,
  .footer-grid,
  .quick-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .hero-poster,
  .detail-poster {
    width: min(340px, 80vw);
    transform: none;
  }

  .movie-grid-6,
  .movie-grid-5,
  .movie-grid-4,
  .movie-grid-3,
  .top-ranking,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-main .movie-card {
    grid-template-columns: 1fr;
  }

  .spotlight-main .movie-cover img {
    aspect-ratio: 16 / 9;
  }

  .ranking-item {
    grid-template-columns: 110px 1fr;
  }

  .ranking-cover img {
    width: 110px;
    height: 154px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1280px);
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-text {
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-search {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .detail-intro h1 {
    font-size: 42px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-panel {
    margin-top: -28px;
    padding: 14px;
  }

  .section-head,
  .category-overview-head,
  .footer-bottom {
    display: block;
  }

  .section-link {
    display: inline-flex;
    margin-top: 14px;
  }

  .movie-grid-6,
  .movie-grid-5,
  .movie-grid-4,
  .movie-grid-3,
  .top-ranking,
  .category-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .movie-info h3 {
    min-height: auto;
  }

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

  .detail-hero-inner {
    padding-top: 40px;
  }

  .player-section {
    margin-top: -48px;
  }

  .content-card {
    padding: 20px;
  }

  .ranking-item {
    grid-template-columns: 1fr;
  }

  .ranking-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
