:root {
  --site-blue: #2563eb;
  --site-cyan: #06b6d4;
  --site-teal: #14b8a6;
  --site-orange: #f97316;
  --site-red: #ef4444;
  --site-dark: #0f172a;
  --site-text: #1f2937;
  --site-muted: #64748b;
  --site-light: #f8fafc;
  --site-border: #e5e7eb;
  --site-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--site-text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #eef7ff 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.logo-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--site-blue), var(--site-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}

.main-nav a {
  color: #334155;
  font-weight: 650;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--site-blue);
}

.header-search {
  width: min(22rem, 28vw);
  display: flex;
  align-items: center;
  border: 1px solid var(--site-border);
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.header-search input {
  width: 100%;
  border: 0;
  outline: none;
  padding: 0.68rem 0.9rem 0.68rem 1rem;
  font-size: 0.93rem;
  background: transparent;
}

.header-search button,
.primary-button,
.secondary-button {
  border: 0;
  cursor: pointer;
  font-weight: 750;
}

.header-search button {
  padding: 0.68rem 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
}

.menu-toggle {
  display: none;
  border: 0;
  background: #f1f5f9;
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  color: #0f172a;
  font-weight: 800;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--site-border);
  padding: 0.75rem 1.25rem 1.1rem;
  background: #ffffff;
}

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

.mobile-panel a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  color: #334155;
  font-weight: 650;
}

.mobile-panel a:hover {
  background: #f8fafc;
  color: var(--site-blue);
}

.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(110deg, #2563eb 0%, #06b6d4 52%, #14b8a6 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.25), transparent 25%), radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.18), transparent 28%), rgba(15, 23, 42, 0.26);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6' stroke='%23fff' stroke-opacity='.55' fill='none'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 620px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  display: flex;
  align-items: center;
}

.hero-carousel {
  width: 100%;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 4rem;
}

.hero-slide.is-active {
  display: grid;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 750;
}

.hero-eyebrow {
  color: #cffafe;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  color: #cffafe;
}

.hero-copy p {
  margin: 0;
  max-width: 46rem;
  color: #ecfeff;
  font-size: clamp(1.04rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--site-blue);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.22);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.secondary-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-poster-link {
  position: relative;
  display: block;
  min-height: 25rem;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
  transform: translateZ(0);
}

.hero-poster-link img {
  height: 30rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-poster-link:hover img {
  transform: scale(1.08);
}

.hero-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(15, 23, 42, 0.86));
}

.hero-poster-title {
  margin: 0 0 0.45rem;
  font-size: 1.65rem;
  font-weight: 900;
}

.hero-poster-text {
  margin: 0;
  color: #cffafe;
  line-height: 1.55;
}

.hero-play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-blue);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 2.1rem;
  background: #ffffff;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.2rem 1.25rem;
}

.section.full {
  max-width: none;
  background: linear-gradient(90deg, #eff6ff 0%, #ecfeff 100%);
}

.section.full .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.section-title-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--site-orange), var(--site-red));
}

.section-icon.blue {
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
}

.section-icon.green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.section-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.section h2,
.page-title,
.detail-title {
  margin: 0;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.section-link {
  color: var(--site-blue);
  font-weight: 750;
}

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

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

.movie-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.85);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-0.45rem);
  box-shadow: var(--site-shadow);
  border-color: rgba(37, 99, 235, 0.26);
}

.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.05;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
}

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

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

.movie-badge,
.movie-year,
.rank-number {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

.movie-badge {
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.34rem 0.7rem;
  background: rgba(239, 68, 68, 0.94);
}

.movie-year {
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.58rem;
  background: rgba(15, 23, 42, 0.78);
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem;
}

.movie-title {
  margin: 0;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.42;
  font-weight: 850;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: var(--site-blue);
}

.movie-desc {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.movie-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.79rem;
}

.type-pill {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: var(--site-blue);
  background: #dbeafe;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(115deg, #2563eb, #06b6d4 55%, #14b8a6);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.28), transparent 28%), rgba(15, 23, 42, 0.25);
}

.page-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.25rem 4.5rem;
}

.page-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.05;
}

.page-description {
  max-width: 52rem;
  margin: 1.2rem 0 0;
  color: #ecfeff;
  font-size: 1.1rem;
  line-height: 1.85;
}

.filter-panel {
  margin: -2.2rem auto 2.5rem;
  max-width: 1280px;
  position: relative;
  z-index: 4;
  padding: 0 1.25rem;
}

.filter-card {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(9rem, 0.22fr));
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
}

.filter-card input,
.filter-card select {
  min-width: 0;
  border: 1px solid var(--site-border);
  border-radius: 0.85rem;
  outline: none;
  padding: 0.78rem 0.9rem;
  color: #0f172a;
  background: #ffffff;
}

.empty-state {
  display: none;
  margin-top: 2rem;
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  padding: 2.5rem;
  color: var(--site-muted);
  background: #ffffff;
  text-align: center;
}

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

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

.category-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border-radius: 1.4rem;
  padding: 1.4rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  right: -4rem;
  bottom: -5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.category-card h2,
.category-card h3 {
  position: relative;
  margin: 0 0 0.7rem;
  font-size: 1.6rem;
  z-index: 2;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.category-card span {
  position: relative;
  z-index: 2;
  font-weight: 800;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--site-shadow);
}

.rank-poster {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #dbeafe;
}

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

.rank-number {
  left: 0.55rem;
  top: 0.55rem;
  padding: 0.3rem 0.54rem;
  background: linear-gradient(135deg, var(--site-orange), var(--site-red));
}

.rank-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.rank-content h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 850;
}

.rank-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.9rem;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(115deg, #0f172a, #1d4ed8 50%, #06b6d4);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.25), transparent 26%), rgba(15, 23, 42, 0.25);
}

.detail-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  display: grid;
  grid-template-columns: 19rem 1fr;
  gap: 2.5rem;
  align-items: center;
}

.detail-poster {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  background: #dbeafe;
}

.detail-poster img {
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
}

.detail-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  line-height: 1.08;
}

.detail-line {
  max-width: 58rem;
  margin: 1.1rem 0 1.35rem;
  color: #ecfeff;
  font-size: 1.12rem;
  line-height: 1.85;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.detail-tags span,
.tag-list span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 760;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-list span {
  color: var(--site-blue);
  background: #dbeafe;
}

.content-card {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 1.3rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
  margin-top: 0;
}

.content-card p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.player-card {
  border-radius: 1.4rem;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
}

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

.play-button-core {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.22rem;
  color: var(--site-blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.play-button-core svg {
  width: 2.25rem;
  height: 2.25rem;
}

.site-footer {
  margin-top: 4rem;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 850;
}

.footer-inner h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-inner p,
.footer-inner li {
  margin: 0;
  color: #94a3b8;
  line-height: 1.75;
  font-size: 0.92rem;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.15rem 1.25rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.86rem;
}

.static-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.static-page h1 {
  margin: 0 0 1.25rem;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

.static-page p {
  color: #475569;
  line-height: 1.9;
}

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

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

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

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

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-poster-link {
    min-height: auto;
  }

  .hero-poster-link img {
    height: 23rem;
  }

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

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

  .detail-poster {
    max-width: 18rem;
  }

  .ranking-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .header-inner {
    padding: 0.8rem 1rem;
  }

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

  .hero-inner {
    min-height: 570px;
    padding: 3.5rem 1rem;
  }

  .hero-section {
    min-height: 570px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .movie-info {
    padding: 0.78rem;
  }

  .movie-desc {
    display: none;
  }

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

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

  .rank-card {
    grid-template-columns: 5.8rem 1fr;
  }

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