:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --muted: #94a3b8;
  --text: #f8fafc;
  --soft: #cbd5e1;
  --sky: #38bdf8;
  --blue: #2563eb;
  --green: #22c55e;
  --red: #f43f5e;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.16), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.18), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.88));
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  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: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 12px 34px rgba(56, 189, 248, 0.24);
  font-weight: 900;
  color: white;
}

.logo-title {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #7dd3fc, #60a5fa, #c4b5fd);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.mobile-panel a {
  border-radius: 12px;
  color: #cbd5e1;
  padding: 10px 13px;
  font-size: 14px;
  transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-panel a:hover {
  background: rgba(30, 41, 59, 0.86);
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  position: relative;
  width: min(260px, 30vw);
}

.header-search input,
.search-hero input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--text);
  outline: none;
  transition: 0.22s ease;
}

.header-search input {
  height: 42px;
  padding: 0 42px 0 16px;
}

.header-search button {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 30px;
  width: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.16);
  color: #7dd3fc;
  cursor: pointer;
}

.header-search input:focus,
.search-hero input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 13px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: grid;
  gap: 10px;
}

.mobile-panel .header-search {
  width: 100%;
}

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

.hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
}

.hero::before {
  width: 320px;
  height: 320px;
  left: -96px;
  top: 120px;
  background: rgba(14, 165, 233, 0.18);
}

.hero::after {
  width: 260px;
  height: 260px;
  right: -88px;
  top: 88px;
  background: rgba(37, 99, 235, 0.20);
}

.hero-stage {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 54px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.90));
  box-shadow: var(--shadow);
}

.hero-slide.active {
  display: block;
  animation: fadeUp 0.62s ease both;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  opacity: 0.42;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 36%, rgba(56, 189, 248, 0.12), transparent 20rem),
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.74) 44%, rgba(2, 6, 23, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  padding: 72px 54px;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(56, 189, 248, 0.13);
  color: #bae6fd;
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-summary {
  color: #dbeafe;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.82;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: white;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.74);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.20);
}

.hero-side {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 42px;
  width: min(410px, 38%);
  display: grid;
  gap: 14px;
}

.hero-mini {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(14px);
  transition: 0.22s ease;
}

.hero-mini:hover {
  background: rgba(30, 41, 59, 0.90);
  transform: translateY(-2px);
}

.cover-box,
.poster-link {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 20%, rgba(56, 189, 248, 0.28), transparent 14rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
}

.cover-box {
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.cover-box.wide {
  aspect-ratio: 16 / 10;
}

.cover-box::after,
.poster-link::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 10px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
  z-index: 0;
}

.cover-box img,
.poster-link img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.cover-fallback img {
  display: none;
}

.hero-mini h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: white;
}

.hero-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(90deg, var(--sky), var(--blue));
}

.section {
  padding: 50px 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-desc {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.link-more {
  color: #7dd3fc;
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.58);
  transition: 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(56, 189, 248, 0.40);
  background: rgba(15, 23, 42, 0.86);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.34);
}

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

.poster-link {
  display: block;
  aspect-ratio: 2 / 3;
}

.poster-top {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.poster-top span,
.rank-number {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: #e0f2fe;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.movie-card-body {
  padding: 14px;
}

.movie-card h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card p {
  margin: 0 0 12px;
  min-height: 40px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.category-card {
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 11rem),
    rgba(15, 23, 42, 0.62);
  transition: 0.24s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.38);
  background-color: rgba(15, 23, 42, 0.92);
}

.category-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.rank-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 56px 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.58);
  transition: 0.22s ease;
}

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

.rank-number {
  width: 42px;
  height: 42px;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(37, 99, 235, 0.20));
  color: white;
  font-size: 16px;
}

.rank-cover {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.rank-info p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.side-card {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.66);
}

.side-card h2,
.side-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.54);
  color: #cbd5e1;
  transition: 0.22s ease;
}

.side-links a:hover {
  color: white;
  background: rgba(37, 99, 235, 0.24);
}

.page-hero {
  padding: 54px 0 24px;
}

.page-hero-card {
  overflow: hidden;
  position: relative;
  padding: 42px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 22%, rgba(56, 189, 248, 0.20), transparent 18rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--soft);
  line-height: 1.82;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #7dd3fc;
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: rgba(2, 6, 23, 0.84);
  box-shadow: var(--shadow);
}

.player-frame {
  position: relative;
  background: black;
  aspect-ratio: 16 / 9;
}

.player-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: black;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 18px;
  border: 0;
  padding: 24px;
  color: white;
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.20), transparent 18rem),
    linear-gradient(180deg, rgba(2, 6, 23, 0.20), rgba(2, 6, 23, 0.82));
  cursor: pointer;
}

.play-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

.play-button-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 22px 54px rgba(56, 189, 248, 0.30);
  font-size: 34px;
  padding-left: 5px;
}

.play-cover strong {
  display: block;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}

.detail-card {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
}

.detail-card h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.detail-lead {
  margin: 0 0 20px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  padding: 18px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.tag-list span {
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(30, 41, 59, 0.82);
  color: #cbd5e1;
  font-size: 12px;
}

.text-block {
  margin-top: 24px;
}

.text-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.text-block p {
  margin: 0;
  color: var(--soft);
  line-height: 1.95;
}

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

.related-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.related-card .cover-box {
  border-radius: 0;
}

.related-card h3 {
  margin: 0;
  padding: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.search-hero {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.search-hero form {
  position: relative;
  max-width: 720px;
}

.search-hero input {
  height: 58px;
  padding: 0 130px 0 18px;
  font-size: 16px;
}

.search-hero button {
  position: absolute;
  right: 7px;
  top: 7px;
  min-width: 110px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.5fr));
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
}

.filter-bar input,
.filter-bar select {
  height: 44px;
  padding: 0 12px;
}

.result-state {
  color: var(--muted);
  margin-bottom: 18px;
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.52), rgba(2, 6, 23, 0.94));
}

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

.footer-inner h3,
.footer-inner h4 {
  margin: 0 0 12px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.footer-inner a:hover {
  color: #7dd3fc;
}

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

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.10);
  color: var(--muted);
  font-size: 13px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

  .side-card {
    position: static;
  }

  .hero-side {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 38px 38px;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .header-actions .header-search {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-inner {
    height: 64px;
  }

  .hero-stage {
    padding-top: 34px;
  }

  .hero-slide {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 28px;
  }

  .hero-side {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }

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

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

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

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

@media (max-width: 620px) {
  .page-shell,
  .header-inner,
  .mobile-panel,
  .hero-stage,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 22px, 1240px);
  }

  .logo-title {
    font-size: 17px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 34px 22px;
  }

  .hero h1 {
    letter-spacing: -0.04em;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    display: block;
  }

  .link-more {
    display: inline-flex;
    margin-top: 12px;
  }

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

  .category-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 42px 86px 1fr;
    gap: 10px;
  }

  .page-hero-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .detail-card {
    padding: 20px;
  }

  .play-button-ring {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

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

  .search-hero input {
    padding-right: 18px;
  }

  .search-hero button {
    position: static;
    width: max-content;
    margin-top: 10px;
  }

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