:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #162033;
  --panel-bright: #1e293b;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --blue: #2563eb;
  --blue-deep: #1e3a8a;
  --green: #22c55e;
  --orange: #fb923c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.94), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  color: white;
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.28);
}

.brand-text,
.footer-brand {
  font-size: 20px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-link {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.top-search input {
  width: 230px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: white;
  outline: none;
  padding: 10px 14px;
}

.top-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.8);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}

.top-search button,
.primary-button,
.ghost-button,
.section-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.top-search button,
.primary-button {
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.top-search button {
  padding: 10px 16px;
}

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
}

.ghost-button,
.section-link {
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.58);
}

.top-search button:hover,
.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.22);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: white;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 12px;
  padding: 8px 12px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
}

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

.hero-slider {
  position: relative;
  height: min(760px, 76vh);
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.74) 42%, rgba(2, 6, 23, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, transparent 38%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - 1180px) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, calc(100% - 64px));
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  font-size: 13px;
  font-weight: 750;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.7);
  font-size: 12px;
  padding: 7px 10px;
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: var(--cyan);
  border-color: var(--cyan);
}

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

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.split-intro h2,
.section-heading h2,
.category-overview-head h2,
.detail-content h2,
.detail-side h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.split-intro p,
.section-heading p,
.category-overview-head p,
.page-hero p,
.detail-content p {
  color: var(--muted);
  line-height: 1.85;
}

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

.section-heading a {
  color: var(--cyan);
  font-weight: 750;
}

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

.category-card,
.category-overview-card,
.page-hero,
.detail-hero,
.detail-content,
.detail-side,
.filter-panel,
.player-frame {
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
}

.category-card {
  min-height: 205px;
  border-radius: 24px;
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 66%);
}

.category-card span {
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 850;
}

.category-card p {
  min-height: 76px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-mini-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--cyan);
  position: relative;
  z-index: 2;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.38), rgba(34, 211, 238, 0.18));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.75), transparent 46%);
}

.year-badge,
.play-badge {
  position: absolute;
  z-index: 2;
}

.year-badge {
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.play-badge {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: white;
  background: rgba(34, 211, 238, 0.86);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  padding: 14px;
}

.card-title {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.card-title:hover,
.rank-title:hover {
  color: var(--cyan);
}

.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta {
  margin-top: 8px;
}

.card-meta a,
.rank-meta a {
  color: var(--cyan);
}

.card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x proximity;
}

.scroll-item {
  width: 220px;
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.movie-card.compact .card-body p,
.movie-card.compact .tag-row {
  display: none;
}

.masonry-grid {
  columns: 4 220px;
  column-gap: 18px;
}

.masonry-grid .movie-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(30, 41, 59, 0.9);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 18px;
  font-weight: 900;
}

.rank-cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(34, 211, 238, 0.16));
}

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

.rank-title {
  font-weight: 850;
  font-size: 17px;
}

.rank-info p {
  display: -webkit-box;
  margin: 7px 0 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  border-radius: 30px;
  padding: clamp(36px, 7vw, 76px);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -80% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.23), transparent 68%);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 17px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 26px;
  border-radius: 22px;
  padding: 16px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.58);
  color: white;
  padding: 11px 12px;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  border-radius: 28px;
  padding: 24px;
}

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

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

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  border-radius: 32px;
  padding: 28px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.32), rgba(34, 211, 238, 0.16));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.detail-line {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.85;
  margin: 18px 0 18px;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(2, 6, 23, 0.34);
}

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

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: black;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: black;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: black;
  cursor: pointer;
}

.player-cover[hidden] {
  display: none;
}

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

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.12), rgba(2, 6, 23, 0.82));
}

.player-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 24px 70px rgba(34, 211, 238, 0.32);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.player-message {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.82);
  color: white;
  padding: 12px 14px;
  text-align: center;
}

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

.detail-content,
.detail-side {
  border-radius: 26px;
  padding: 26px;
}

.detail-content h2,
.detail-side h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.detail-content p {
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: 16px;
}

.side-rank .rank-row {
  grid-template-columns: 42px 72px minmax(0, 1fr);
  gap: 10px;
}

.side-rank .rank-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 14px;
}

.side-rank .rank-cover {
  aspect-ratio: 1 / 1;
}

.side-rank .rank-info p,
.side-rank .rank-meta span:nth-child(n + 3),
.side-rank .rank-meta a:nth-child(n + 3) {
  display: none;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 34px;
  padding: 44px 0;
}

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

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--cyan);
}

.site-footer h2 {
  margin: 0 0 10px;
  color: white;
  font-size: 18px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted);
  padding: 20px 0 34px;
  font-size: 14px;
}

[data-card][hidden] {
  display: none;
}

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

  .top-search input {
    width: 180px;
  }

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

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

@media (max-width: 900px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

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

  .hero-slider {
    min-height: 620px;
  }

  .hero-content {
    left: 24px;
    width: calc(100% - 48px);
  }

  .section-heading,
  .split-intro,
  .category-overview-head,
  .detail-hero,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .detail-poster img {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: calc(100% - 24px);
  }

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

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

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 38px;
  }

  .hero-actions,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .section-shell {
    width: calc(100% - 24px);
    padding: 44px 0;
  }

  .page-hero,
  .detail-hero,
  .breadcrumb {
    width: calc(100% - 24px);
  }

  .page-hero,
  .detail-hero,
  .detail-content,
  .detail-side {
    padding: 20px;
    border-radius: 22px;
  }

  .category-grid,
  .mini-movie-grid,
  .movie-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 44px 76px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }

  .rank-info p {
    display: none;
  }

  .mobile-nav.open {
    grid-template-columns: 1fr;
  }

  .player-play-icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
