:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.32);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --emerald: #34d399;
  --teal: #2dd4bf;
  --rose: #fb7185;
  --amber: #fbbf24;
  --purple: #c084fc;
  --blue: #60a5fa;
  --green: #4ade80;
  --cyan: #22d3ee;
  --red: #f87171;
  --lime: #a3e635;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.55);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 34rem),
    linear-gradient(135deg, #020617 0%, #0f172a 46%, #020617 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.94));
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: transform 0.28s ease;
}

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

.brand-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid white;
}

.brand-text,
.footer-brand {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #a7f3d0, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: white;
  background: rgba(51, 65, 85, 0.62);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.52);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: white;
}

.mobile-nav {
  padding: 8px 16px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mobile-link {
  display: block;
  padding: 12px 16px;
}

.hero {
  position: relative;
  height: min(72vh, 740px);
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.11);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.64) 42%, rgba(2, 6, 23, 0.28) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.06) 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  width: min(680px, 100%);
  padding-top: 46px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #a7f3d0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: white;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1,
.hero h2 {
  max-width: 840px;
  font-size: clamp(2.6rem, 8vw, 6.8rem);
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.55);
}

.hero h2 + p,
.hero h1 + h2 + p,
.page-hero p,
.detail-one-line,
.quick-panel p {
  color: var(--muted-strong);
  line-height: 1.8;
}

.hero h1 + h2,
.hero h2 + h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  color: #d1fae5;
}

.hero-copy p:last-of-type {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.primary-button,
.ghost-button,
.quick-links a,
.category-preview-head a,
.category-card-head a,
.section-title a {
  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, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  color: #052e2b;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.26);
}

.ghost-button,
.quick-links a,
.section-title a,
.category-preview-head a,
.category-card-head a {
  color: white;
  border: 1px solid var(--border-strong);
  background: rgba(15, 23, 42, 0.54);
}

.primary-button:hover,
.ghost-button:hover,
.quick-links a:hover,
.category-preview-head a:hover,
.category-card-head a:hover,
.section-title a:hover {
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: white;
}

.quick-panel,
.section-block,
.page-hero,
.detail-hero,
.player-section,
.detail-content {
  margin-top: 64px;
}

.quick-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.48));
  box-shadow: var(--shadow);
}

.quick-panel h2,
.section-title h2,
.detail-content h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-title a {
  min-height: 38px;
  margin-left: auto;
  padding: 0 16px;
  font-size: 0.9rem;
}

.title-icon {
  width: 13px;
  height: 34px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 28px currentColor;
}

.title-icon.emerald,
.accent-emerald .title-icon {
  background: var(--emerald);
}

.title-icon.rose {
  background: var(--rose);
}

.title-icon.amber {
  background: var(--amber);
}

.title-icon.purple {
  background: var(--purple);
}

.title-icon.blue {
  background: var(--blue);
}

.title-icon.teal {
  background: var(--teal);
}

.title-icon.green {
  background: var(--green);
}

.title-icon.cyan {
  background: var(--cyan);
}

.title-icon.red {
  background: var(--red);
}

.title-icon.lime {
  background: var(--lime);
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.movie-grid,
.category-preview-grid,
.category-list-grid,
.genre-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  position: relative;
  display: block;
  min-width: 0;
  color: white;
  border-radius: 22px;
}

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.35);
}

.movie-card--grid .card-poster,
.movie-card--wide .card-poster {
  aspect-ratio: 4 / 5;
}

.movie-card--compact .card-poster {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.movie-card img,
.list-card img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.movie-card:hover img,
.list-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent 58%);
}

.play-orb,
.player-play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.play-orb::before,
.player-play-icon::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid white;
}

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

.card-meta-line,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
}

.card-meta-line {
  left: 14px;
  bottom: 14px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--amber));
}

.card-body {
  display: block;
  padding-top: 13px;
}

.card-body strong {
  display: block;
  overflow: hidden;
  color: white;
  font-size: 1.03rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong,
.list-card:hover strong {
  color: var(--emerald);
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.card-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: #d1fae5;
  font-size: 0.75rem;
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.11);
}

.movie-card--compact .card-body strong {
  display: -webkit-box;
  min-height: 42px;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.highlight-block,
.soft-block {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(30, 41, 59, 0.38));
}

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

.search-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.search-wrap span {
  color: var(--muted-strong);
  font-weight: 800;
}

.search-wrap input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: 0;
  background: rgba(2, 6, 23, 0.52);
}

.search-wrap input:focus {
  border-color: rgba(52, 211, 153, 0.62);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: #cbd5e1;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.64);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  color: #052e2b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.empty-state {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.category-preview-card,
.category-card,
.genre-box,
.detail-content article {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.66);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.26);
}

.category-preview-card,
.category-card {
  padding: 22px;
}

.category-preview-head,
.category-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-preview-head h3,
.category-card-head span,
.genre-box h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.28rem;
  font-weight: 900;
}

.category-preview-head p,
.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.genre-box {
  padding: 20px;
}

.page-shell,
.detail-shell {
  padding-bottom: 40px;
}

.page-hero,
.detail-hero {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.16), transparent 26rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.5));
  box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1,
.ranking-hero h1,
.detail-copy h1 {
  max-width: 880px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

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

.list-card {
  display: grid;
  grid-template-columns: 56px 108px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 110px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.list-card:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(30, 41, 59, 0.78);
}

.list-rank {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #052e2b;
  font-weight: 900;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.list-card img {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.list-card strong,
.list-card em,
.list-card small {
  display: block;
}

.list-card strong {
  color: white;
  font-size: 1.05rem;
}

.list-card em {
  overflow: hidden;
  margin: 5px 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-card small {
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.46);
}

.detail-one-line {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.player-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  background: black;
  box-shadow: var(--shadow);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: white;
  border: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    rgba(2, 6, 23, 0.12);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover strong {
  margin-top: 96px;
  font-size: 1.1rem;
}

.player-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

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

.detail-content article {
  padding: 26px;
}

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

.site-footer {
  margin-top: 80px;
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 1.05rem;
}

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

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--emerald);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

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

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

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

  .mobile-menu-button {
    display: block;
  }

  .hero {
    min-height: 620px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.4) 42%, rgba(2, 6, 23, 0.22) 100%),
      linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.32));
  }

  .quick-panel,
  .detail-layout,
  .detail-content,
  .footer-grid,
  .category-preview-grid,
  .category-list-grid {
    grid-template-columns: 1fr;
  }

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

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

  .list-card {
    grid-template-columns: 46px 82px 1fr;
  }
}

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

  .nav-shell {
    min-height: 66px;
  }

  .brand-text {
    font-size: 1.16rem;
  }

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

  .hero {
    height: 76vh;
    min-height: 560px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-copy p:last-of-type {
    font-size: 0.98rem;
  }

  .quick-panel,
  .highlight-block,
  .soft-block,
  .page-hero,
  .detail-hero {
    padding: 20px;
    border-radius: 24px;
  }

  .quick-links,
  .mini-grid,
  .movie-grid,
  .category-grid,
  .related-grid,
  .genre-grid {
    grid-template-columns: 1fr;
  }

  .search-wrap {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .section-title a {
    width: 100%;
    margin-left: 0;
  }

  .rail {
    grid-auto-columns: 82%;
  }

  .list-card {
    grid-template-columns: 42px 76px 1fr;
    gap: 10px;
  }

  .list-card em {
    display: none;
  }

  .player-panel {
    border-radius: 20px;
  }
}
