:root {
  color-scheme: light;
  --bg: #fffaf2;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #f3d9bc;
  --amber: #f59e0b;
  --orange: #f97316;
  --deep: #111827;
  --shadow: 0 22px 60px rgba(120, 53, 15, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 52%, #ffffff 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.24);
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
}

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

.navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
  transition: transform 0.28s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.08) rotate(-4deg);
}

.logo-main {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, #d97706, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 14px;
  color: #475569;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 15px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.34);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  color: #c2410c;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 0 16px;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  margin-top: 6px;
  font-weight: 700;
  color: #475569;
  background: #fff7ed;
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 14% 15%, rgba(251, 191, 36, 0.34), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(249, 115, 22, 0.23), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #ffedd5 42%, #fef3c7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(251, 146, 60, 0.28);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #111827;
}

.gradient-text {
  background: linear-gradient(90deg, #d97706, #f97316, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 26px;
  max-width: 680px;
  color: #4b5563;
  font-size: 18px;
}

.hero-search {
  display: flex;
  gap: 12px;
  max-width: 650px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(251, 146, 60, 0.26);
  box-shadow: var(--shadow);
}

.hero-search input,
.search-panel input,
.search-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 15px;
  background: #fff7ed;
  color: var(--text);
  padding: 13px 16px;
}

.hero-search button,
.primary-btn,
.secondary-btn {
  border: 0;
  cursor: pointer;
  border-radius: 15px;
  padding: 13px 18px;
  white-space: nowrap;
  font-weight: 900;
  transition: all 0.25s ease;
}

.hero-search button,
.primary-btn {
  color: white;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.secondary-btn {
  color: #c2410c;
  background: white;
  border: 1px solid #fed7aa;
}

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

.hero-actions a:hover,
.hero-search button:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

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

.hero-tags a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(251, 146, 60, 0.24);
  font-size: 14px;
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.hero-carousel {
  height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 35px 80px rgba(120, 53, 15, 0.22);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 34px;
  color: white;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 0.55s ease;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22) 38%, rgba(0, 0, 0, 0.86)),
    var(--hero-bg) center / cover no-repeat;
}

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

.hero-slide-content {
  max-width: 92%;
}

.hero-slide .badge {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.hero-slide h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 14px 0 8px;
  line-height: 1.12;
}

.hero-slide p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 18px;
}

.hero-slide a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 13px;
  background: white;
  color: #c2410c;
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  left: 34px;
  bottom: 22px;
  display: flex;
  gap: 9px;
  z-index: 4;
}

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

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

.floating-rank {
  position: absolute;
  right: -12px;
  bottom: 32px;
  width: min(330px, 86%);
  padding: 18px;
  border-radius: 24px;
  color: #111827;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(120, 53, 15, 0.18);
}

.floating-rank h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.floating-rank a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(251, 146, 60, 0.2);
}

.floating-rank em {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-style: normal;
  font-weight: 900;
}

.section {
  padding: 66px 0;
}

.section.alt {
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

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

.section-title h2,
.page-title h1 {
  margin: 10px 0 8px;
  color: #111827;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-title p,
.page-title p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1px solid rgba(251, 146, 60, 0.13);
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 60px rgba(120, 53, 15, 0.18);
}

.poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fef3c7);
}

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

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

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78));
  transition: opacity 0.28s ease;
}

.movie-card:hover .poster::after {
  opacity: 1;
}

.poster-badge,
.year-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  color: white;
}

.poster-badge {
  left: 12px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.year-badge {
  right: 12px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.28s ease;
}

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

.card-body {
  padding: 16px;
}

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

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.card-meta strong {
  color: #d97706;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  min-height: 180px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: 0 14px 34px rgba(120, 53, 15, 0.09);
  border: 1px solid rgba(251, 146, 60, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.14));
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card h2,
.category-card h3 {
  position: relative;
  margin: 0 0 9px;
  font-size: 22px;
  color: #111827;
}

.category-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.category-card span {
  position: relative;
  display: inline-flex;
  margin-top: 16px;
  color: #c2410c;
  font-weight: 900;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(251, 146, 60, 0.14);
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.13);
}

.rank-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-cover {
  width: 76px;
  height: 108px;
  border-radius: 14px;
  overflow: hidden;
  background: #fed7aa;
}

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

.rank-info h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.rank-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.page-hero {
  padding: 58px 0 42px;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    linear-gradient(135deg, #fff7ed, #ffedd5);
}

.page-title {
  max-width: 840px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #92400e;
  font-size: 14px;
  font-weight: 800;
}

.search-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(251, 146, 60, 0.18);
  box-shadow: 0 18px 44px rgba(120, 53, 15, 0.09);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 150px;
  gap: 12px;
  margin: 26px 0 0;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--muted);
  background: white;
  border-radius: 22px;
}

.empty-state.is-visible {
  display: block;
}

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

.player-card,
.detail-card,
.side-card {
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(251, 146, 60, 0.14);
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.62));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button-core {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 999px;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.play-icon-large {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.player-meta {
  padding: 22px;
}

.player-meta h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.meta-chips,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.meta-chips span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  font-size: 13px;
  font-weight: 800;
}

.detail-card {
  padding: 26px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-card p {
  margin: 0 0 18px;
  color: #4b5563;
}

.side-card {
  padding: 18px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 17px;
  transition: background 0.22s ease;
}

.related-item:hover {
  background: #fff7ed;
}

.related-item img {
  width: 62px;
  height: 86px;
  border-radius: 13px;
  object-fit: cover;
  background: #fed7aa;
}

.related-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.25;
}

.related-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  margin-top: 30px;
  padding: 46px 0;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: white;
}

.site-footer p,
.site-footer a {
  color: #9ca3af;
}

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: none;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.22);
  cursor: pointer;
}

.back-top.is-visible {
  display: grid;
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: white;
  border: 1px solid rgba(251, 146, 60, 0.14);
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.08);
}

.search-result-item img {
  width: 92px;
  height: 128px;
  border-radius: 16px;
  object-fit: cover;
  background: #fed7aa;
}

.search-result-item h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.search-result-item p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

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

@media (max-width: 900px) {
  .nav-links,
  .header-action {
    display: none;
  }

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

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

  .hero-showcase,
  .hero-carousel {
    min-height: 480px;
    height: 480px;
  }

  .floating-rank {
    right: 16px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .navbar {
    min-height: 64px;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-sub {
    display: none;
  }

  .hero {
    padding: 44px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .hero-search button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-showcase,
  .hero-carousel {
    min-height: 430px;
    height: 430px;
  }

  .hero-slide {
    padding: 24px;
  }

  .floating-rank {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section-head {
    display: block;
  }

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

  .card-body {
    padding: 13px;
  }

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

  .rank-item,
  .search-result-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .rank-cover,
  .rank-score,
  .search-result-item img,
  .search-result-item .primary-btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
