:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.86);
  --bg-card-strong: rgba(30, 41, 59, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --red: #ef4444;
  --green: #22c55e;
  --blue: #3b82f6;
  --purple: #a855f7;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 32rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand:hover {
  color: var(--amber-light);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.38);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  transform: translateY(-1px);
}

.site-search,
.large-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search input,
.large-search input,
.page-filter-input {
  width: 260px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: #fff;
  outline: none;
  padding: 11px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search input:focus,
.large-search input:focus,
.page-filter-input:focus {
  border-color: rgba(245, 158, 11, 0.76);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.10);
}

.site-search button,
.large-search button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.92);
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 92vw);
  max-height: 520px;
  overflow: auto;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.search-panel.is-open {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  color: #e2e8f0;
}

.search-result:hover {
  background: rgba(148, 163, 184, 0.10);
}

.search-result img {
  width: 52px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #111827;
}

.search-result strong {
  display: block;
  color: #fff;
}

.search-result span {
  color: var(--muted);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(148, 163, 184, 0.08);
  border-radius: 12px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.20)),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.36) 46%, transparent 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1240px) / 2));
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 86px;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-light);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1,
.watch-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 52px);
}

.hero-summary {
  max-width: 660px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), #f97316);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.25);
}

.ghost-btn,
.more-link {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.70);
}

.primary-btn:hover,
.ghost-btn:hover,
.more-link:hover {
  transform: translateY(-2px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--amber);
}

.home-search-band {
  width: min(1240px, calc(100% - 32px));
  margin: -48px auto 0;
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-search-band h2 {
  margin: 0;
  font-size: 24px;
}

.home-search-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.large-search input {
  width: min(460px, 46vw);
}

.page-wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 70px;
}

.home-wrap {
  display: grid;
  gap: 72px;
}

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

.section-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber-light);
  font-size: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.15;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(245, 158, 11, 0.40);
  transform: translateY(-5px);
  box-shadow: 0 22px 70px rgba(245, 158, 11, 0.12);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

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

.card-body h3 {
  margin: 9px 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.card-body h3 a:hover {
  color: var(--amber-light);
}

.card-body p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
  font-size: 12px;
  font-weight: 700;
}

.compact-card .card-body {
  padding: 13px;
}

.compact-card .card-body h3 {
  font-size: 16px;
}

.compact-card .card-body p {
  min-height: 40px;
  font-size: 13px;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 70%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.category-tile:hover {
  border-color: rgba(245, 158, 11, 0.42);
  transform: translateY(-3px);
}

.category-tile span {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

.category-tile p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tile-posters {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0.75;
}

.tile-posters img {
  width: 44px;
  height: 62px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: #111827;
}

.tile-posters img:nth-child(2) {
  width: 52px;
  height: 74px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 54px 1fr auto 54px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(30, 41, 59, 0.92);
  transform: translateX(4px);
}

.rank-no {
  color: var(--amber-light);
  font-size: 18px;
  font-weight: 900;
}

.rank-item img {
  width: 54px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
  background: #111827;
}

.rank-title {
  color: #fff;
  font-weight: 800;
}

.rank-meta {
  color: var(--muted);
  font-size: 14px;
}

.rank-score {
  color: #fff;
  font-weight: 900;
  text-align: right;
}

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

.region-stack {
  display: grid;
  gap: 32px;
}

.region-block h3 {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 4px solid var(--amber);
  color: #fcd34d;
  font-size: 22px;
}

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

.latest-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.latest-item:hover {
  background: rgba(30, 41, 59, 0.92);
}

.latest-item img {
  width: 68px;
  height: 94px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.latest-item span {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.latest-item em {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.page-hero {
  margin-bottom: 28px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.78)),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 60%);
  box-shadow: var(--shadow);
}

.compact-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 17px;
}

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

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.76);
}

.filter-panel label {
  color: #fff;
  font-weight: 800;
}

.filter-panel input {
  width: min(460px, 100%);
}

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

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

.player-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

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

.video-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.46));
  cursor: pointer;
}

.player-cover span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #fff;
  font-size: 34px;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.34);
}

.player-shell.is-playing .player-cover {
  display: none;
}

.watch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.82);
}

.watch-copy h1 {
  font-size: clamp(28px, 4vw, 48px);
}

.watch-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #cbd5e1;
}

.detail-meta {
  margin-top: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 58px;
}

.detail-poster {
  align-self: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.detail-poster img {
  width: 100%;
  border-radius: 18px;
  background: #111827;
}

.full-btn {
  width: 100%;
  margin-top: 14px;
}

.detail-content {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.detail-content h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
}

.detail-content h2:not(:first-child) {
  margin-top: 28px;
}

.detail-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
}

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

.detail-info-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.72);
}

.detail-info-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.detail-info-grid span,
.detail-info-grid a {
  color: #fff;
  font-weight: 800;
}

.large-tags span {
  font-size: 13px;
  padding: 6px 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  gap: 20px;
}

.footer-brand p {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-copy {
  margin: 0;
  color: var(--muted-2);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .site-search {
    justify-self: end;
  }

  .featured-grid,
  .hot-grid,
  .catalog-grid,
  .small-grid,
  .category-grid,
  .category-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .player-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 22px, 100%);
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 10px 0;
  }

  .brand {
    font-size: 20px;
  }

  .site-search {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-search input {
    width: 100%;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-nav {
    display: none;
  }

  .home-search-band {
    grid-template-columns: 1fr;
    margin-top: -26px;
  }

  .large-search {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .large-search input {
    width: 100%;
  }

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

  .rank-item,
  .full-rank .rank-item,
  .latest-item {
    grid-template-columns: 46px 54px 1fr;
  }

  .rank-meta,
  .rank-score,
  .latest-item em {
    grid-column: 3;
    text-align: left;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .page-wrap {
    width: min(100% - 22px, 100%);
    padding-top: 28px;
  }

  .hero {
    min-height: 660px;
  }

  .home-search-band,
  .page-hero,
  .watch-copy,
  .detail-content {
    padding: 22px;
    border-radius: 20px;
  }

  .featured-grid,
  .hot-grid,
  .catalog-grid,
  .small-grid,
  .category-grid,
  .category-overview {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    display: grid;
  }

  .filter-panel input {
    width: 100%;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }
}
