:root {
  color-scheme: light;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --rose-600: #e11d48;
  --blue-600: #2563eb;
  --emerald-600: #059669;
  --teal-600: #0d9488;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans SC",
    "Microsoft YaHei",
    sans-serif;
  color: var(--slate-800);
  background: linear-gradient(
    180deg,
    var(--amber-50) 0%,
    #ffffff 38%,
    var(--slate-50) 100%
  );
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    var(--amber-900),
    var(--amber-700),
    #7f1d1d
  );
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.24);
}

.header-inner {
  width: min(var(--content), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--amber-900);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.36),
    0 12px 22px rgba(0, 0, 0, 0.16);
}

.brand-text {
  font-size: 22px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--amber-900),
    var(--amber-700),
    #7f1d1d
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0 2px, transparent 2px),
    radial-gradient(circle at 80% 40%, #ffffff 0 2px, transparent 2px);
  background-size:
    58px 58px,
    92px 92px;
  animation: pulse 2.6s ease-in-out infinite;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(120, 53, 15, 0.96) 0%,
    rgba(120, 53, 15, 0.78) 44%,
    rgba(15, 23, 42, 0.36) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 32px));
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-200);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 850;
}

.hero-text {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--amber-100);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.65;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.tag-row span {
  color: var(--amber-800);
  background: var(--amber-100);
}

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

.primary-btn,
.ghost-btn,
.filter-reset,
.text-link,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-btn {
  color: var(--amber-900);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.primary-btn:hover,
.ghost-btn:hover,
.filter-reset:hover,
.text-link:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero-side-panel {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100% - var(--content)) / 2));
  top: 50%;
  width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  box-shadow: var(--shadow);
}

.hero-side-panel p {
  margin: 0 0 12px;
  color: var(--amber-100);
  font-weight: 850;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-mini-card + .hero-mini-card {
  margin-top: 10px;
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-3px);
}

.hero-mini-card img {
  width: 58px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-mini-card span {
  font-weight: 800;
  line-height: 1.35;
}

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

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

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.content-section {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--content)) / 2));
  padding-right: max(16px, calc((100% - var(--content)) / 2));
  background: linear-gradient(90deg, var(--slate-100), var(--amber-50));
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.section-more,
.text-link {
  color: var(--amber-700);
  background: var(--amber-100);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--slate-200));
}

.featured-grid .poster-link {
  aspect-ratio: 16 / 10;
}

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

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

.poster-badge,
.poster-type {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.poster-badge {
  left: 12px;
  background: var(--amber-600);
}

.poster-type {
  right: 12px;
  background: var(--blue-600);
}

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

.movie-title {
  display: block;
  color: var(--slate-800);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-title:hover,
.rank-title:hover,
.category-overview-card h2 a:hover {
  color: var(--amber-700);
}

.movie-meta {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 14px;
}

.movie-desc {
  margin: 10px 0 0;
  color: var(--slate-700);
  line-height: 1.65;
}

.clamp-2,
.clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-3 {
  -webkit-line-clamp: 3;
}

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

.rank-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 92px 1fr;
  gap: 16px;
  min-height: 146px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.rank-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--rose-600);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(225, 29, 72, 0.22);
}

.rank-poster img {
  width: 92px;
  height: 124px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-title {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-800);
  font-size: 18px;
  font-weight: 900;
}

.rank-content p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.rank-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 12px;
  font-weight: 750;
}

.category-band {
  color: #ffffff;
  background: linear-gradient(135deg, #172554, #312e81, var(--slate-900));
}

.category-band .section-heading h2,
.category-band .section-heading p {
  color: #ffffff;
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--amber-900),
    var(--amber-700),
    #7f1d1d
  );
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.small-hero,
.category-hero,
.ranking-hero {
  background: linear-gradient(
    135deg,
    var(--amber-900),
    var(--amber-700),
    var(--slate-900)
  );
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--amber-100);
  font-size: 20px;
  line-height: 1.7;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.category-overview-card h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: 28px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 10px 0 16px;
  color: var(--slate-600);
  line-height: 1.7;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 22px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: end;
  gap: 16px;
}

.filter-grid label span {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-700);
  font-weight: 850;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  color: var(--slate-800);
  background: #ffffff;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.filter-reset {
  border: 0;
  color: #ffffff;
  background: var(--amber-600);
}

.empty-state {
  margin: 18px 0 0;
  color: var(--rose-600);
  font-weight: 800;
}

.ranking-list {
  display: grid;
  gap: 18px;
}

.ranking-list .rank-item {
  grid-template-columns: 56px 110px 1fr;
}

.detail-hero {
  min-height: 520px;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.96),
    rgba(120, 53, 15, 0.8),
    rgba(15, 23, 42, 0.55)
  );
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 850;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster img {
  width: 260px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.36);
}

.detail-copy h1 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 68px);
}

.detail-one-line {
  max-width: 860px;
  margin: 20px 0 0;
  color: var(--amber-100);
  font-size: 21px;
  line-height: 1.7;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.player-section {
  padding-bottom: 24px;
}

.player-card {
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-900), var(--amber-900));
  box-shadow: var(--shadow);
}

.light-heading h2,
.light-heading p {
  color: #ffffff;
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38));
  transition: opacity 0.2s ease;
}

.play-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--amber-900);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
}

.player-box.is-started .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
  gap: 26px;
}

.detail-article,
.detail-side {
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: var(--slate-800);
  font-size: 28px;
  font-weight: 900;
}

.detail-article h2:not(:first-child) {
  margin-top: 28px;
}

.detail-article p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.9;
}

.detail-side dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-side dt {
  color: var(--slate-500);
  font-weight: 800;
}

.detail-side dd {
  margin: -8px 0 0;
  color: var(--slate-800);
  font-weight: 850;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
}

.footer-inner {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 750;
}

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

[hidden] {
  display: none !important;
}

@keyframes pulse {
  50% {
    opacity: 0.08;
  }
}

@media (max-width: 1100px) {
  .hero-side-panel {
    display: none;
  }

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

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

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

  .menu-toggle {
    display: flex;
  }

  .brand-text {
    font-size: 19px;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
    height: 560px;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-btn,
  .ghost-btn,
  .section-more,
  .text-link,
  .filter-reset {
    min-height: 42px;
    padding: 0 14px;
  }

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

  .movie-grid,
  .rank-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-item,
  .ranking-list .rank-item {
    grid-template-columns: 44px 82px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .rank-num {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .rank-poster img {
    width: 82px;
    height: 112px;
  }

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

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

  .category-cover-stack {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-poster img {
    width: min(260px, 100%);
  }

  .player-card,
  .detail-article,
  .detail-side {
    padding: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
