:root {
  --bg: #f1f5f9;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.86);
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.28);
  --dark: #020617;
  --dark-soft: #0f172a;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --green: #10b981;
  --red: #ef4444;
  --yellow: #f59e0b;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.15), transparent 32rem), var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0f172a, #1e293b, #0f172a);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.42);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
}

.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #22d3ee;
}

.header-search {
  position: relative;
  width: 270px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-controls input,
.filter-controls select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  outline: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  padding: 10px 44px 10px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  color: #cbd5e1;
  background: transparent;
}

.mobile-menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 11px;
}

.mobile-nav {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-search {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
}

.mobile-search input {
  padding-right: 16px;
}

.mobile-search button,
.big-search button {
  border: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  padding: 0 18px;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: min(72vh, 650px);
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.7), transparent 45%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(1280px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.hero-content > * {
  max-width: 700px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-content p {
  margin: 0;
  color: #dbeafe;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-tags span,
.tag-list span {
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 12px;
  font-size: 0.85rem;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #cbd5e1;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.44);
  padding: 7px 12px;
}

.hero-actions,
.detail-info .primary-button {
  margin-top: 26px;
}

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  padding: 12px 24px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.category-card:hover,
.movie-card:hover,
.latest-item:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  padding: 11px 22px;
  margin-left: 12px;
}

.text-link {
  color: var(--blue);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 38px;
  background: #ffffff;
}

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

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.filter-panel h2,
.page-hero h1,
.detail-info h1 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.filter-panel p,
.page-hero p {
  color: var(--muted);
  line-height: 1.8;
}

.intro-search {
  padding-top: 48px;
}

.big-search {
  display: flex;
  width: min(760px, 100%);
  margin: 26px auto 0;
  padding: 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.big-search input {
  color: var(--text);
  background: transparent;
  border: none;
  padding-right: 16px;
}

.big-search button {
  min-width: 132px;
}

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

.category-card,
.category-overview-card,
.prose-card,
.side-card,
.filter-panel,
.ranking-tabs {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.category-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-icon {
  font-size: 2.2rem;
}

.category-card strong,
.category-overview-card h2 {
  font-size: 1.25rem;
}

.category-card em,
.category-overview-card strong {
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.category-card small,
.movie-card-meta,
.movie-card-desc,
.latest-item em,
.rank-info em {
  color: var(--muted);
  line-height: 1.6;
}

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.movie-card-link,
.movie-card-body {
  display: flex;
  flex-direction: column;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #020617);
}

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

.movie-card:hover .poster-wrap img,
.latest-item:hover img,
.ranking-title:hover img {
  transform: scale(1.08);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.62);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.duration-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.76);
  padding: 4px 8px;
  font-size: 0.78rem;
}

.movie-card-body {
  gap: 8px;
  padding: 16px;
}

.movie-card-title {
  display: -webkit-box;
  min-height: 2.9em;
  overflow: hidden;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-desc {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.movie-card-stats span:first-child {
  color: var(--yellow);
  font-weight: 800;
}

.two-column-block {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.latest-list,
.rank-list {
  display: grid;
  gap: 14px;
}

.latest-item,
.rank-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-item img {
  width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
  background: #0f172a;
}

.latest-item span,
.rank-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.latest-item strong,
.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-item b {
  color: var(--cyan);
}

.rank-item {
  grid-template-columns: auto 72px minmax(0, 1fr);
}

.rank-item img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  background: #0f172a;
}

.rank-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #94a3b8;
  font-weight: 900;
}

.rank-1 {
  background: #f59e0b;
}

.rank-2 {
  background: #64748b;
}

.rank-3 {
  background: #ea580c;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.24), transparent 28rem),
    linear-gradient(135deg, #0f172a, #1e293b 48%, #020617);
}

.page-hero {
  padding: 86px max(16px, calc((100% - 1280px) / 2)) 72px;
}

.page-hero p {
  max-width: 760px;
  color: #cbd5e1;
}

.page-hero strong {
  display: inline-flex;
  margin-top: 18px;
  color: #67e8f9;
}

.category-overview-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-card a {
  display: block;
}

.category-poster-stack {
  height: 170px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 14px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.category-poster-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #0f172a;
}

.category-overview-body {
  padding: 22px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.4fr);
  gap: 22px;
  padding: 24px;
  margin-bottom: 28px;
}

.filter-panel .section-kicker {
  color: #ffffff;
}

.filter-controls {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}

.filter-controls input,
.filter-controls select {
  color: var(--text);
  background: #ffffff;
  padding-right: 16px;
}

.filter-result {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 36px;
  padding: 70px max(16px, calc((100% - 1280px) / 2));
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 26px;
  background: #0f172a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #bae6fd;
  font-size: 0.9rem;
}

.detail-info h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.detail-one-line {
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 840px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: none;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.55);
  transform: translate(-50%, -50%);
  border-radius: 26px;
  padding: 20px 26px;
  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-overlay-button span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.player-shell.is-playing .player-overlay-button {
  opacity: 0;
  pointer-events: none;
}

.player-message {
  margin: 0;
  padding: 12px 18px 16px;
  color: #cbd5e1;
  background: #020617;
}

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

.prose-card,
.side-card {
  padding: 28px;
}

.prose-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.prose-card p {
  color: #334155;
  line-height: 2;
  margin: 0 0 26px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 700;
}

.side-card dd {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.ranking-tabs {
  padding: 22px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.tab-buttons button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #ffffff;
  padding: 10px 18px;
  font-weight: 800;
}

.tab-buttons button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.ranking-table th,
.ranking-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
}

.ranking-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.ranking-title img {
  width: 78px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s ease;
  background: #0f172a;
}

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

.faq-grid article {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.site-footer {
  margin-top: 86px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 46px 0;
}

.footer-grid h3 {
  color: #ffffff;
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid li {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid a:hover {
  color: #22d3ee;
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 0 28px;
  color: #94a3b8;
}

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

  .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .header-search {
    width: 240px;
    margin-left: auto;
  }

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

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

@media (max-width: 900px) {
  .header-search {
    display: none;
  }

  .hero-carousel {
    min-height: 560px;
  }

  .hero-content {
    top: 52%;
  }

  .section-heading.between,
  .filter-panel,
  .two-column-block,
  .detail-hero,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.between {
    display: grid;
  }

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

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

  .detail-hero {
    padding-top: 46px;
  }

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

@media (max-width: 620px) {
  .header-inner {
    height: 64px;
  }

  .logo-text {
    font-size: 1rem;
  }

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

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .ghost-button {
    margin-left: 0;
  }

  .big-search,
  .mobile-search {
    display: grid;
    border-radius: 22px;
  }

  .big-search button,
  .mobile-search button {
    min-height: 44px;
  }

  .movie-grid,
  .movie-grid-compact,
  .category-grid,
  .category-overview-grid,
  .faq-grid,
  .filter-controls {
    grid-template-columns: 1fr;
  }

  .latest-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .latest-item img {
    width: 92px;
    height: 70px;
  }

  .latest-item b {
    display: none;
  }

  .ranking-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

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