:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand-dark: #1e3a8a;
  --cyan: #06b6d4;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, #0f172a, #1e3a8a 52%, #0f172a);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #dbeafe, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: #93c5fd;
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-panel {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-link {
  display: block;
  padding: 13px 0;
  color: #dbeafe;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.hero-track,
.hero-slide {
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.35)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(6, 182, 212, 0.28), transparent 34%),
    radial-gradient(circle at 10% 78%, rgba(37, 99, 235, 0.32), transparent 38%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 54px;
  padding: 80px 0 150px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 720px;
  color: #dbeafe;
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #67e8f9;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.detail-tags span,
.info-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 7px 12px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

.hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dot.active {
  background: #67e8f9;
}

.hero-search {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(760px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 20px 55px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-search input,
.search-box input,
.inline-filter input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #0f172a;
  background: #ffffff;
}

.hero-search input {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px 0 0 999px;
}

.hero-search button,
.search-box button,
.inline-filter button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  font-weight: 800;
}

.hero-search button {
  min-width: 106px;
  border-radius: 999px;
}

.section-block {
  padding: 72px 0;
}

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

.section-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 800;
}

.section-heading.light {
  color: #ffffff;
}

.section-heading.light span,
.section-heading.light a {
  color: #67e8f9;
}

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

.category-tile,
.category-overview-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: var(--shadow-soft);
}

.category-tile {
  padding: 24px;
}

.category-tile img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.33;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img,
.category-overview-card:hover img {
  opacity: 0.45;
  transform: scale(1.08);
}

.category-tile span,
.category-tile strong,
.category-tile small,
.category-overview-card span,
.category-overview-card h2,
.category-overview-card p {
  position: relative;
  z-index: 2;
}

.category-tile span,
.category-overview-card span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.category-tile small,
.category-overview-card p {
  display: block;
  color: #dbeafe;
  font-size: 14px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

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

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

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

.card-badge,
.rank-num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.rank-num {
  left: auto;
  right: 10px;
  background: rgba(245, 158, 11, 0.95);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.movie-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.45;
}

.movie-card h3 a:hover {
  color: var(--brand);
}

.movie-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 4px 7px;
  font-size: 12px;
}

.rank-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 58%, #155e75);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 55%, #155e75);
}

.compact-page-hero,
.category-page-hero,
.search-page-hero {
  padding: 86px 0;
}

.page-hero h1 {
  max-width: 880px;
  margin: 16px 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

.inline-filter,
.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 780px;
  margin-top: 28px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.inline-filter input,
.search-box input {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
}

.inline-filter button,
.search-box button {
  min-width: 112px;
  border-radius: 12px;
}

.category-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-nav-pills a,
.wide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #1e3a8a;
  padding: 9px 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.category-overview-card {
  min-height: 280px;
  padding: 26px;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.podium-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 28px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.podium-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

.podium-card span,
.podium-card h2,
.podium-card p {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
}

.podium-card span {
  top: 24px;
  color: #67e8f9;
  font-weight: 900;
}

.podium-card h2 {
  bottom: 92px;
  margin: 0;
  font-size: 26px;
}

.podium-card p {
  bottom: 24px;
  margin: 0;
  color: #dbeafe;
}

.detail-hero {
  min-height: 560px;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.48)), var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #bfdbfe;
  font-size: 14px;
}

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

.detail-top {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-top: 56px;
}

.detail-poster {
  width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 26px;
  background: #1e293b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

.detail-copy h1 {
  max-width: 860px;
  margin: 16px 0;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.detail-copy p {
  max-width: 860px;
  color: #dbeafe;
  font-size: 18px;
}

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

.player-card,
.content-card,
.side-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.native-video,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.native-video {
  object-fit: contain;
  background: #020617;
}

.player-cover {
  z-index: 4;
  border: 0;
  padding: 0;
  background: #020617;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.72;
}

.player-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.6), rgba(37, 99, 235, 0.28));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 999px;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.35);
  transform: translate(-50%, -50%);
  font-size: 30px;
}

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

.content-card,
.side-card {
  padding: 26px;
  margin-top: 24px;
}

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

.content-card p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
}

.lead-text {
  color: #1d4ed8 !important;
  font-weight: 700;
}

.info-pills {
  margin-bottom: 22px;
}

.info-pills span,
.detail-tags span {
  background: #eff6ff;
  color: #1d4ed8;
}

.in-card {
  margin-bottom: 20px;
}

.side-card:first-child {
  margin-top: 0;
}

.side-movie {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.side-movie:last-child {
  border-bottom: 0;
}

.side-movie img {
  width: 72px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: #e2e8f0;
}

.side-movie strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
}

.side-movie small {
  color: var(--muted);
}

.wide-link {
  display: flex;
  margin-top: 10px;
  border-radius: 14px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 52px 0 36px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
}

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

.footer-links a:hover {
  color: #67e8f9;
}

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

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[hidden] {
  display: none !important;
}

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

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .hero,
  .hero-track,
  .hero-slide {
    min-height: 700px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 50px;
  }

  .hero-poster {
    width: min(250px, 70vw);
    justify-self: start;
  }

  .category-grid,
  .category-overview-grid,
  .podium-grid,
  .footer-grid,
  .detail-layout,
  .detail-top {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    order: 2;
  }

  .detail-poster {
    width: min(280px, 70vw);
  }
}

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

  .header-inner {
    min-height: 66px;
  }

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

  .brand-text strong {
    font-size: 18px;
  }

  .hero,
  .hero-track,
  .hero-slide {
    min-height: 730px;
  }

  .hero-search,
  .search-box,
  .inline-filter {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .hero-search input {
    border-radius: 12px;
  }

  .hero-search button,
  .search-box button,
  .inline-filter button {
    min-height: 46px;
  }

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

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

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

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

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

  .compact-page-hero,
  .category-page-hero,
  .search-page-hero {
    padding: 60px 0;
  }

  .detail-hero-inner {
    padding-bottom: 48px;
  }

  .detail-top {
    margin-top: 34px;
  }

  .detail-layout {
    padding-top: 32px;
  }

  .content-card,
  .side-card {
    padding: 20px;
  }

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