:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --yellow: #facc15;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f9fafb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 45%, #fff7ed 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(16px);
}

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

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

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.logo-text {
  font-size: 20px;
}

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

.main-nav a,
.mobile-panel a {
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.mobile-panel a:hover {
  color: var(--amber-dark);
}

.nav-search {
  position: relative;
  width: 235px;
}

.nav-search input,
.search-box input,
.search-box select {
  width: 100%;
  border: 1px solid #d1d5db;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  height: 40px;
  padding: 0 44px 0 16px;
  border-radius: 999px;
}

.nav-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  transform: translateY(-50%);
}

.nav-search input:focus,
.search-box input:focus,
.search-box select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-panel a:hover {
  background: #fffbeb;
}

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

.hero {
  padding: 34px 0 44px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.30), transparent 32%), linear-gradient(135deg, #111827, #78350f 58%, #f59e0b);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 18px;
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.36);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 16px;
  max-width: 720px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 650;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

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

.btn-soft {
  color: var(--amber-dark);
  background: #fffbeb;
  border: 1px solid #fde68a;
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 10px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.30);
  transform: rotate(2deg);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.56));
}

.hero-rank-card {
  position: absolute;
  right: 20px;
  bottom: -18px;
  z-index: 3;
  width: min(280px, 78%);
  padding: 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.72);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-rank-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-rank-card span {
  color: #fde68a;
}

.hero-controls {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
  background: #facc15;
}

.section {
  padding: 36px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.heading-mark {
  display: inline-block;
  width: 7px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), var(--yellow));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-link {
  color: var(--amber-dark);
  font-weight: 800;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #f3f4f6;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.featured-card .featured-poster {
  overflow: hidden;
  min-height: 340px;
  border-radius: 22px;
}

.featured-card img,
.movie-card img,
.list-card img,
.related-card img,
.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.featured-content {
  align-self: center;
  padding: 18px 10px;
}

.eyebrow {
  color: var(--amber-dark);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-content h2,
.detail-title {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.featured-content p {
  color: #4b5563;
  font-size: 17px;
}

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

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

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

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

.movie-card,
.category-card,
.related-card {
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover,
.category-card:hover,
.related-card:hover,
.rank-row:hover {
  border-color: #fde68a;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
}

.poster-badge,
.poster-play,
.rank-number,
.score-pill {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 850;
}

.poster-badge {
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.28);
}

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

.movie-card h3,
.related-card h3,
.list-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.related-card h3 a:hover,
.list-card h3 a:hover {
  color: var(--amber-dark);
}

.movie-card p,
.category-card p,
.list-card p,
.related-card p,
.rank-info p {
  margin: 0 0 12px;
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 10px 0;
  color: #6b7280;
  font-size: 13px;
}

.category-mini {
  display: inline-flex;
  margin-top: 10px;
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 800;
}

.list-stack {
  display: grid;
  gap: 16px;
}

.list-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid #f3f4f6;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.list-poster {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #fef3c7;
}

.category-card {
  position: relative;
  display: block;
  min-height: 150px;
  padding: 20px;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  font-size: 22px;
  box-shadow: 0 14px 24px rgba(245, 158, 11, 0.20);
}

.category-card h3 {
  margin: 0 0 8px;
}

.page-banner {
  padding: 52px 0;
  color: #ffffff;
  background: radial-gradient(circle at 18% 20%, rgba(253, 230, 138, 0.34), transparent 35%), linear-gradient(135deg, #f59e0b, #d97706 56%, #78350f);
}

.page-banner h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.page-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 26px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 94px;
  padding: 18px;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.sidebar h3 {
  margin: 0 0 12px;
}

.sidebar a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 650;
}

.sidebar a:hover,
.sidebar a.active {
  color: var(--amber-dark);
  background: #fffbeb;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 36px 0 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  font-weight: 750;
}

.pagination a:hover,
.pagination .current {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
}

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

.rank-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 112px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rank-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(245, 158, 11, 0.20);
}

.rank-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #fef3c7;
}

.rank-info h3 {
  margin: 0 0 6px;
}

.score-pill {
  position: static;
  display: inline-flex;
  padding: 6px 12px;
  color: #92400e;
  background: #fef3c7;
}

.search-panel {
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 160px 160px 140px;
  gap: 12px;
}

.search-box input,
.search-box select {
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
}

.search-status {
  margin: 18px 0 0;
  color: var(--muted);
}

.detail-main {
  padding: 34px 0 54px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

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

.player-status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  font-weight: 800;
}

.player-status.is-hidden {
  display: none;
}

.player-main-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--yellow));
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.35);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-main-button.is-playing {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.player-shell:hover .player-controls,
.player-shell:focus-within .player-controls {
  opacity: 1;
}

.player-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.detail-card,
.info-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.detail-card h2,
.info-card h3 {
  margin: 0 0 14px;
}

.detail-card p {
  color: #4b5563;
  text-align: justify;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.info-card {
  margin-top: 0;
  position: sticky;
  top: 94px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.info-list dt {
  color: #6b7280;
}

.info-list dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

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

.related-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 10px;
}

.related-card .related-poster {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  background: #fef3c7;
}

.related-card h3 {
  font-size: 15px;
}

.related-card p {
  margin: 0;
  font-size: 13px;
}

.image-missing {
  min-height: 100%;
  background: radial-gradient(circle at 25% 25%, #fde68a, transparent 36%), linear-gradient(135deg, #78350f, #f59e0b);
}

.site-footer {
  margin-top: 42px;
  padding: 42px 0 22px;
  color: #4b5563;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 10px;
  color: #111827;
  font-size: 22px;
}

.footer-grid p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 22px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
  color: #9ca3af;
  font-size: 14px;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-stage {
    min-height: 720px;
  }

  .hero-slide,
  .featured-card,
  .detail-grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    align-content: start;
  }

  .hero-art {
    align-self: end;
  }

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

  .sidebar,
  .info-card {
    position: static;
  }

  .rank-row {
    grid-template-columns: 52px 92px 1fr;
  }

  .rank-row .score-pill {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

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

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

  .hero {
    padding-top: 18px;
  }

  .hero-stage {
    min-height: 690px;
    border-radius: 22px;
  }

  .hero-slide {
    padding: 24px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-rank-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-controls {
    left: 24px;
    bottom: 18px;
  }

  .grid-4,
  .grid-5,
  .grid-6 {
    gap: 14px;
  }

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

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

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

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

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

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