:root {
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 48%, var(--blue) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #f7f8fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner,
.content-section,
.section-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 14px 26px rgba(236, 72, 153, 0.28);
}

.brand-name,
.footer-brand {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

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

.nav-link {
  position: relative;
  padding: 23px 0;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--gradient);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--pink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #111827;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px 20px;
}

.mobile-nav.is-open {
  display: flex;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 94px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::after,
.detail-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(236, 72, 153, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.78) 45%, rgba(15, 23, 42, 0.58) 100%);
}

.hero-bg img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: blur(10px) saturate(1.25);
  transform: scale(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f9a8d4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.hero-summary {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.tag-row,
.hero-actions,
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta {
  margin-top: 24px;
}

.hero-meta span,
.tag-row span,
.quick-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags {
  margin-top: 18px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-btn,
.ghost-btn,
.search-bar button,
.advanced-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.primary-btn,
.search-bar button,
.advanced-search button {
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 16px 30px rgba(236, 72, 153, 0.24);
}

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

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  aspect-ratio: 3 / 4;
  background: var(--gradient);
}

.hero-poster img,
.detail-poster img,
.movie-card img,
.poster-mini img,
.side-related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1f2937, #4c1d95 45%, #be185d);
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dot,
.hero-arrow {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

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

.hero-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  font-size: 28px;
}

.quick-search {
  position: relative;
  z-index: 5;
  margin-top: -40px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-bar input,
.advanced-search input,
.advanced-search select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #111827;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  outline: none;
}

.search-bar input:focus,
.advanced-search input:focus,
.advanced-search select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.quick-tags {
  margin-top: 15px;
}

.quick-tags a {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.14);
  background: #f5f3ff;
}

.content-section {
  padding: 56px 0;
}

.tinted-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

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

.section-heading h2,
.ranking-box h2,
.detail-block h2,
.detail-side h2,
.ranking-panel h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  color: var(--pink);
  font-weight: 900;
}

.featured-grid,
.movie-grid,
.category-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gradient);
}

.movie-card:not(.movie-card-large) .poster-wrap {
  aspect-ratio: 3 / 4;
}

.movie-card img {
  transition: transform 0.35s ease;
}

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.play-chip {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: var(--gradient);
}

.card-body {
  display: flex;
  min-height: 190px;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.movie-card-large .card-body {
  min-height: 160px;
}

.card-body strong {
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-body em {
  color: var(--pink);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.card-body small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-body .tag-row {
  margin-top: auto;
}

.card-body .tag-row span {
  min-height: 26px;
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.12);
  background: #f5f3ff;
  font-size: 12px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 24px;
  color: #ffffff;
  border-radius: 26px;
  background: var(--category-gradient, var(--gradient));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.13);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow);
}

.category-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card strong,
.category-card span,
.category-card em {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card strong {
  font-size: 24px;
  font-weight: 950;
}

.category-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.category-card em {
  margin-top: 22px;
  font-style: normal;
  font-weight: 900;
}

.category-card.big {
  min-height: 210px;
}

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

.ranking-box,
.detail-side,
.ranking-panel,
.detail-block,
.player-section,
.advanced-search,
.search-status {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.ranking-box,
.detail-side {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.ranking-box .mt {
  margin-top: 28px;
}

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

.rank-item:last-child {
  border-bottom: 0;
}

.rank-item b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #ffffff;
  border-radius: 10px;
  background: var(--gradient);
  font-size: 13px;
}

.rank-item span {
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-item em {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  padding: 58px;
  color: #ffffff;
  border-radius: 34px;
  background: var(--gradient);
  box-shadow: var(--shadow);
}

.slim-hero {
  color: #111827;
  background:
    radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.18), transparent 28%),
    #ffffff;
}

.slim-hero .eyebrow {
  color: var(--pink);
}

.page-hero h1 {
  color: inherit;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.category-hero {
  background: var(--category-gradient, var(--gradient));
}

.small-actions {
  margin-top: 24px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.stat-card strong {
  display: block;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 34px;
  font-weight: 950;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

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

.page-link,
.page-control,
.page-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  font-weight: 900;
}

.page-link.is-active,
.page-control:hover,
.page-link:hover {
  color: #ffffff;
  border-color: transparent;
  background: var(--gradient);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 3 / 4;
  background: var(--gradient);
}

.detail-info h1 {
  max-width: 820px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-section {
  overflow: hidden;
  padding: 0 0 18px;
}

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

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.32), rgba(2, 6, 23, 0.45));
  cursor: pointer;
}

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

.player-overlay span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 18px 48px rgba(236, 72, 153, 0.32);
  font-size: 28px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 18px 0;
}

.source-btn {
  min-height: 38px;
  padding: 0 14px;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  background: #f5f3ff;
  font-weight: 900;
  cursor: pointer;
}

.source-btn.is-active {
  color: #ffffff;
  border-color: transparent;
  background: var(--gradient);
}

.player-tip {
  margin: 12px 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-block {
  padding: 26px;
}

.detail-block p {
  margin: 14px 0 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
}

.metadata-block dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.metadata-block div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
}

.metadata-block dt {
  color: var(--muted);
  font-weight: 900;
}

.metadata-block dd {
  margin: 0;
  color: #111827;
}

.side-related {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.side-related img {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
}

.side-related strong {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 950;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-related em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.ranking-panel {
  overflow: hidden;
  padding: 22px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 38px 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-row:last-child {
  border-bottom: 0;
}

.ranking-row b {
  color: var(--pink);
  font-size: 17px;
  font-weight: 950;
}

.poster-mini {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
}

.ranking-title strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-title em,
.ranking-score {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.search-page {
  padding-top: 28px;
}

.advanced-search {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
}

.advanced-search label span {
  display: block;
  margin-bottom: 7px;
  color: #374151;
  font-size: 13px;
  font-weight: 900;
}

.search-status {
  margin: 18px 0 24px;
  padding: 16px 20px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  margin-top: 48px;
  color: #d1d5db;
  background: #0f172a;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 640px;
  margin: 12px 0 0;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  justify-content: end;
}

.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: #9ca3af;
}

@media (max-width: 1100px) {
  .hero-slide,
  .detail-inner,
  .two-column-layout,
  .detail-layout,
  .ranking-layout,
  .advanced-search {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-poster {
    max-width: 360px;
  }

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

  .ranking-box,
  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-slide {
    padding: 52px 0 88px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 42px;
  }

  .search-bar,
  .footer-inner,
  .featured-grid,
  .movie-grid,
  .compact-grid,
  .listing-grid,
  .category-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .detail-inner {
    padding: 44px 0;
  }

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

  .ranking-row {
    grid-template-columns: 32px 54px minmax(0, 1fr);
  }

  .ranking-score {
    grid-column: 3;
  }

  .footer-links {
    justify-content: start;
  }
}
