:root {
  --page-bg: #f8fbff;
  --page-bg-soft: #eef6ff;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --card: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --cyan: #06b6d4;
  --green: #10b981;
  --orange: #f97316;
  --purple: #8b5cf6;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 25px 55px rgba(15, 23, 42, 0.22);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--page-bg), var(--page-bg-soft));
}

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

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

button,
input,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-title {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.nav-link,
.mobile-nav-link {
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link {
  padding: 12px 18px;
  white-space: nowrap;
}

.nav-link:hover,
.mobile-nav-link:hover {
  background: #f1f5f9;
}

.nav-link.is-active,
.mobile-nav-link.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-nav-link {
  padding: 12px 14px;
}

.home-hero {
  position: relative;
  min-height: 85vh;
  padding: 16px;
  overflow: hidden;
}

.hero-grid {
  height: calc(85vh - 32px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  background: #020617;
  isolation: isolate;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-card:hover img {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.42) 48%, rgba(2, 6, 23, 0.05));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px;
  color: #fff;
  display: grid;
  gap: 14px;
}

.hero-label,
.eyebrow,
.highlight-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-label {
  color: #facc15;
  background: rgba(250, 204, 21, 0.14);
  backdrop-filter: blur(8px);
}

.hero-content strong {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-content em {
  color: #dbeafe;
  font-style: normal;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  color: #cbd5e1;
  font-size: 14px;
}

.hero-play,
.highlight-play {
  position: absolute;
  width: 84px;
  height: 84px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 34px;
  padding-left: 5px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-card:hover .hero-play,
.highlight-card:hover .highlight-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.32);
}

.hero-bottom {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.hero-bottom h1 {
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 950;
}

.hero-bottom p {
  max-width: 720px;
  margin: 0;
  color: #e0f2fe;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  pointer-events: auto;
}

.hero-actions a,
.highlight-button,
.ranking-action,
.filter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow);
  border: 0;
}

.hero-actions a:first-child,
.ranking-action {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.content-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 32px;
}

.muted-section {
  max-width: none;
  background: rgba(241, 245, 249, 0.75);
}

.muted-section > .section-heading,
.muted-section > .category-grid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  color: #1e293b;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-link {
  color: var(--blue);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

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

.movie-card-wide .movie-cover {
  aspect-ratio: 16 / 10;
}

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

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

.movie-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), #ef4444);
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(37, 99, 235, 0.9);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

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

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

.movie-meta-line span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

.movie-card h2,
.ranking-copy h2,
.detail-card h1,
.side-panel h2,
.category-overview-card h2 {
  margin: 0;
}

.movie-card h2 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card h2 a:hover,
.ranking-copy h2 a:hover,
.category-samples a:hover {
  color: var(--blue);
}

.movie-card p {
  min-height: 44px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-list span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue-dark);
  background: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.highlight-section {
  padding: 72px 32px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.highlight-card {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 42px;
  color: #fff;
}

.highlight-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.highlight-card:hover .highlight-media img {
  transform: scale(1.05);
}

.highlight-copy {
  display: grid;
  gap: 20px;
}

.highlight-label {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}

.highlight-copy strong {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 950;
}

.highlight-copy em {
  color: #e0f2fe;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
}

.highlight-button {
  width: fit-content;
}

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

.category-tile,
.category-overview-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 210px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.category-tile img,
.category-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile:hover img,
.category-overview-media:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.category-tile span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0));
  display: grid;
  gap: 8px;
}

.category-tile strong {
  font-size: 22px;
  font-weight: 950;
}

.category-tile em {
  color: #dbeafe;
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x proximity;
}

.rail-scroll .movie-card {
  scroll-snap-align: start;
}

.page-hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 32px 32px;
}

.compact-hero > div {
  padding: 44px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.9));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 18px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  font-weight: 950;
}

.page-hero p {
  max-width: 850px;
  margin: 18px 0 0;
  color: #e0f2fe;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.category-overview-media {
  min-height: 260px;
}

.category-overview-card h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 950;
}

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

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  border-radius: 999px;
  padding: 8px 12px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(180px, 0.8fr) minmax(150px, 0.6fr) minmax(160px, 0.7fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-panel button {
  height: 48px;
  color: #fff;
  background: #0f172a;
  cursor: pointer;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 70px 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.ranking-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), #ef4444);
}

.ranking-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
}

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

.ranking-copy h2 {
  font-size: 22px;
  font-weight: 950;
}

.ranking-copy p {
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 10px;
}

.breadcrumb {
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-layout {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 32px 60px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.8fr);
  gap: 32px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.64), rgba(2, 6, 23, 0.24));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  font-size: 38px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.player-text {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.86);
}

.detail-card,
.side-panel {
  margin-top: 24px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.detail-badges span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: #eff6ff;
  font-weight: 900;
  font-size: 13px;
}

.detail-card h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 950;
  color: #0f172a;
}

.detail-lead {
  margin: 18px 0 0;
  color: #334155;
  font-size: 20px;
  line-height: 1.8;
}

.detail-tags {
  margin: 22px 0;
}

.detail-card h2 {
  margin: 26px 0 10px;
  font-size: 24px;
  color: #1e293b;
}

.detail-card p {
  color: #475569;
  line-height: 1.9;
}

.detail-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.side-panel {
  margin-top: 0;
}

.side-panel h2 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 950;
}

.side-links {
  display: grid;
  gap: 14px;
}

.side-links a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  font-weight: 900;
}

.side-links img {
  width: 76px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  font-weight: 900;
}

.info-list a {
  color: var(--blue);
}

.detail-related {
  padding-top: 0;
}

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 56px 32px 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.footer-brand strong {
  display: block;
  font-size: 24px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: #bfdbfe;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

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

.footer-links a {
  display: inline-flex;
  margin: 0 14px 10px 0;
  color: #bfdbfe;
}

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

.footer-bottom {
  border-top: 1px solid rgba(191, 219, 254, 0.26);
  padding-top: 22px;
  color: #bfdbfe;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1280px) {
  .desktop-nav {
    max-width: 760px;
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .home-hero {
    min-height: 0;
    padding-bottom: 200px;
  }

  .hero-card {
    min-height: 360px;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .highlight-card,
  .detail-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

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

  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 72px;
    padding: 0 16px;
  }

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

  .brand-subtitle {
    display: none;
  }

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

  .content-section,
  .highlight-section,
  .page-hero,
  .detail-layout,
  .breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero {
    padding: 12px 12px 220px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
  }

  .poster-grid,
  .wide-grid,
  .category-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .rail-scroll {
    grid-auto-columns: 82vw;
  }

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

  .ranking-row {
    grid-template-columns: 48px 82px minmax(0, 1fr);
  }

  .ranking-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
  }

  .ranking-action {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .compact-hero > div,
  .detail-card,
  .side-panel {
    padding: 22px;
  }

  .player-button {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
