:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --orange: #f97316;
  --rose: #fb7185;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc 0%, #eef6f8 38%, #f8fafc 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand {
  color: white;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  color: white;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.35);
}

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

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

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.22s ease;
}

.main-nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.header-search {
  position: relative;
  margin-left: auto;
  width: min(360px, 34vw);
}

.header-search input,
.wide-search input,
.filter-panel input {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.9);
  outline: none;
  border-radius: 999px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--slate-900);
  transition: 0.22s ease;
}

.header-search input {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.header-search input:focus,
.wide-search input:focus,
.filter-panel input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: none;
  background: white;
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.9);
  max-height: 420px;
  overflow: auto;
  z-index: 120;
}

.search-results.active {
  display: block;
}

.search-results a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  transition: 0.18s ease;
}

.search-results a:hover {
  background: #f0fdfa;
}

.search-results img {
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.search-results strong {
  display: block;
  color: var(--slate-900);
  font-size: 14px;
}

.search-results em {
  display: block;
  color: var(--slate-500);
  font-style: normal;
  font-size: 12px;
  margin-top: 3px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
}

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

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--slate-950);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(20, 184, 166, 0.34), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72) 45%, rgba(2, 6, 23, 0.32)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.96));
}

.hero-content {
  position: relative;
  max-width: 1280px;
  min-height: 680px;
  margin: 0 auto;
  padding: 86px 24px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.22);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow.dark {
  color: var(--teal-dark);
  background: #ccfbf1;
  border-color: #99f6e4;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  margin: 20px 0 22px;
  letter-spacing: -0.06em;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 0 22px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.tag-row span {
  background: #ecfeff;
  color: #0e7490;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 18px 34px rgba(20, 184, 166, 0.32);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(20, 184, 166, 0.42);
}

.btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn.ghost:hover,
.btn.subtle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn.subtle {
  color: white;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-poster img {
  aspect-ratio: 2 / 3;
  height: 540px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

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

.hero-dot {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  transition: 0.22s ease;
}

.hero-dot.active {
  width: 68px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.quick-search-band {
  max-width: 1180px;
  margin: -44px auto 0;
  position: relative;
  z-index: 20;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.wide-search {
  position: relative;
}

.search-results.wide {
  left: 0;
  right: 0;
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-wrap.alt {
  padding-top: 48px;
}

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

.section-head.compact,
.section-head.inline {
  display: block;
  margin-bottom: 18px;
}

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

.section-head a,
.text-link {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.category-tile {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--slate-900);
  box-shadow: var(--shadow);
}

.category-tile img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: 0.3s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
}

.category-tile-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  right: 18px;
  color: white;
}

.category-tile strong {
  bottom: 62px;
  font-size: 24px;
}

.category-tile em {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

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

.movie-card {
  position: relative;
  background: white;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-200);
}

.poster-link img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: 0.28s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.45));
}

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

.card-meta {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.movie-card p {
  min-height: 61px;
  margin: 0 0 12px;
  color: var(--slate-600);
  line-height: 1.55;
  font-size: 13px;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  padding: 4px 8px;
  font-size: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ranking-list.panel {
  padding: 18px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow);
}

.ranking-item a {
  display: grid;
  grid-template-columns: 48px 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: 0.2s ease;
}

.ranking-item a:hover {
  transform: translateX(4px);
  border-color: rgba(20, 184, 166, 0.4);
}

.rank-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.ranking-item img {
  width: 56px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-text strong,
.mini-card strong {
  display: block;
  color: var(--slate-900);
}

.rank-text em,
.mini-card em {
  display: block;
  color: var(--slate-500);
  font-size: 13px;
  font-style: normal;
  margin-top: 4px;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.4);
}

.mini-card img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
}

.sub-hero {
  position: relative;
  padding: 96px 24px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.32), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(34, 211, 238, 0.28), transparent 34%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.sub-hero > div {
  max-width: 1000px;
  margin: 0 auto;
}

.sub-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  margin: 20px 0;
  letter-spacing: -0.05em;
}

.sub-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.category-cover img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.category-overview-card h2 {
  margin: 14px 0 10px;
  font-size: 26px;
}

.category-overview-card p {
  color: var(--slate-600);
  line-height: 1.75;
}

.sample-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.sample-title-row span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--slate-600);
  font-size: 13px;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.category-list .movie-card.hidden {
  display: none;
}

.rank-page-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--slate-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--teal-dark);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--slate-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  filter: blur(6px) saturate(1.1);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(20, 184, 166, 0.32), transparent 35%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.86));
}

.detail-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.detail-poster img {
  border-radius: 28px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1;
  margin: 18px 0 18px;
  letter-spacing: -0.05em;
}

.one-line {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.detail-info {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.detail-info li {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-info span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  margin-bottom: 5px;
}

.detail-info strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.watch-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.32);
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.24), rgba(2, 6, 23, 0.7));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-ring {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 22px 46px rgba(20, 184, 166, 0.4);
  font-size: 34px;
}

.play-cover strong {
  font-size: 22px;
}

.detail-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.story-panel,
.side-panel {
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 28px;
}

.story-panel h2,
.side-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.story-panel h2 + p {
  margin-top: 0;
}

.story-panel p {
  color: var(--slate-700);
  line-height: 1.95;
  font-size: 16px;
  margin: 0 0 28px;
}

.related-wrap {
  padding-top: 20px;
}

.site-footer {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(20, 184, 166, 0.18), transparent 32%),
    var(--slate-950);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-brand {
  color: white;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 520px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: white;
}

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

.footer-links a:hover {
  color: #fde68a;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1180px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .rank-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 12px 18px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    border-radius: 14px;
  }
  .header-search {
    order: 2;
    width: 100%;
    margin: 4px 0 0;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-poster {
    display: none;
  }
  .quick-search-band {
    margin: 0 18px;
    grid-template-columns: 1fr;
  }
  .category-grid,
  .overview-grid,
  .split-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .detail-wrap {
    grid-template-columns: 180px 1fr;
  }
  .detail-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-content {
    min-height: 620px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p,
  .sub-hero p,
  .one-line {
    font-size: 16px;
  }
  .hero-actions,
  .compact-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .section-wrap {
    padding: 52px 16px;
  }
  .category-grid,
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .movie-card-body {
    padding: 12px;
  }
  .movie-card h3 {
    font-size: 15px;
  }
  .movie-card p {
    min-height: 55px;
    font-size: 12px;
  }
  .category-overview-card,
  .detail-wrap {
    grid-template-columns: 1fr;
  }
  .category-cover img {
    height: 220px;
  }
  .detail-poster {
    max-width: 210px;
  }
  .detail-info {
    grid-template-columns: 1fr;
  }
  .watch-section,
  .detail-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .story-panel,
  .side-panel {
    padding: 22px;
  }
  .play-ring {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
