:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --panel-card: #1e293b;
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --orange: #f97316;
  --red: #dc2626;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.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 10px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.25);
  transition: transform 0.25s ease;
}

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

.brand-text,
.footer-brand {
  font-size: 1.45rem;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 2px;
  transition: color 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fb923c;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 310px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select,
.search-panel input,
.search-panel select {
  width: 100%;
  color: white;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.78);
  outline: none;
  padding: 11px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.header-search button,
.mobile-search button,
.search-panel button,
.filter-bar button {
  border: 0;
  color: white;
  cursor: pointer;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  padding: 11px 16px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.22);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: white;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 12px;
  padding: 10px 13px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-category-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.mobile-sub-link {
  color: var(--muted);
  background: rgba(51, 65, 85, 0.72);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-section {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.80) 42%, rgba(15, 23, 42, 0.40) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, transparent 38%, rgba(2, 6, 23, 0.48) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.48fr);
  align-items: center;
  gap: 48px;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-row span,
.eyebrow-row a,
.hero-tags span,
.tag-row span,
.info-pill,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.24);
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.86rem;
}

.eyebrow-row a {
  background: rgba(51, 65, 85, 0.72);
  border-color: rgba(148, 163, 184, 0.22);
  color: var(--muted);
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: white;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 1.12rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.hero-tags span {
  background: rgba(30, 41, 59, 0.70);
  color: #e2e8f0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.primary-btn,
.secondary-btn,
.outline-btn,
.play-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn,
.play-cta {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.24);
}

.secondary-btn,
.outline-btn {
  color: var(--text);
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover,
.play-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  justify-self: end;
  width: min(350px, 100%);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(15, 23, 42, 0.70);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(249, 115, 22, 0.82);
  transform: translateY(-50%) scale(1.07);
}

.hero-control.prev {
  left: 18px;
}

.hero-control.next {
  right: 18px;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.40);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.section {
  padding: 62px 0;
}

.section.tight {
  padding-top: 34px;
}

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

.kicker {
  color: #fb923c;
  margin: 0 0 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading h1,
.page-hero h1,
.detail-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
}

.section-heading p,
.page-hero p,
.detail-copy p,
.category-card p,
.search-lead {
  color: var(--muted);
  margin: 10px 0 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(220, 38, 38, 0.08)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88));
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -190px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.17);
  filter: blur(18px);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

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

.movie-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(251, 146, 60, 0.58);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 55%);
  transition: opacity 0.24s ease;
}

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--red));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  min-width: 38px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--red));
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.card-body {
  padding: 15px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--soft);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.movie-card h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.08rem;
  line-height: 1.28;
}

.movie-card h2 a:hover {
  color: #fb923c;
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 4px 8px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.12);
  font-size: 0.76rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(249, 115, 22, 0.22), transparent 12rem),
    linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.50);
}

.category-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.category-card .category-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white;
}

.rank-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 88px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.rank-row strong {
  font-size: 1.3rem;
  color: #fb923c;
  text-align: center;
}

.rank-row img {
  width: 88px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.rank-row h2 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.rank-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.aside-panel,
.filter-bar,
.search-panel,
.detail-panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.aside-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.aside-panel h2 {
  margin: 0 0 14px;
}

.aside-panel a {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
}

.aside-panel a:hover {
  color: #fb923c;
}

.filter-bar,
.search-panel {
  padding: 18px;
  margin-bottom: 28px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(130px, 0.45fr)) auto;
  gap: 12px;
}

.search-panel .filter-grid {
  grid-template-columns: 1.4fr minmax(150px, 0.5fr) minmax(150px, 0.5fr) auto;
}

.no-results {
  display: none;
  color: var(--muted);
  text-align: center;
  padding: 44px 0;
}

.no-results.is-visible {
  display: block;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.70)),
    linear-gradient(0deg, #020617 0%, transparent 50%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0 54px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.breadcrumb {
  color: var(--soft);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: #fb923c;
}

.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.info-pill {
  background: rgba(30, 41, 59, 0.70);
  color: #e2e8f0;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 54px 0;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.player-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 15rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.24));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-button {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: white;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2.1rem;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 20px 42px rgba(220, 38, 38, 0.34);
  transition: transform 0.22s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.detail-panel {
  padding: 26px;
  margin-top: 24px;
}

.detail-panel h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.detail-panel p {
  color: var(--muted);
  margin: 0 0 16px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
  border-color: rgba(249, 115, 22, 0.48);
  transform: translateX(3px);
}

.related-card img {
  width: 72px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.related-card h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
}

.related-card p {
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
  padding: 44px 0;
}

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

.site-footer a:hover {
  color: #fb923c;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-bottom {
  color: var(--soft);
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.13);
}

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

  .nav-toggle {
    display: block;
  }

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

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

  .hero-poster {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 230px 1fr;
  }

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

  .aside-panel {
    position: static;
  }
}

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

  .header-inner {
    height: 64px;
  }

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

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

  .hero-section {
    height: 560px;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 82px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-control {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    display: block;
  }

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

  .movie-card p {
    display: none;
  }

  .card-body {
    padding: 12px;
  }

  .rank-row {
    grid-template-columns: 42px 70px 1fr;
  }

  .rank-row .primary-btn {
    grid-column: 2 / 4;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

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

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

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