
:root {
  --text: #1f2937;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #ea580c;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 320px, #f8fafc 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.32);
}

.logo-text,
.footer-logo {
  font-size: 22px;
  background: linear-gradient(135deg, var(--amber-dark), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #334155;
}

.desktop-nav a,
.nav-dropdown button {
  padding: 10px 0;
  color: #334155;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown button:hover {
  color: var(--amber-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 190px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.dropdown-panel a {
  padding: 9px 12px;
  border-radius: 10px;
}

.dropdown-panel a:hover {
  background: #fff7ed;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  margin-left: auto;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-search input {
  width: 260px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 11px 15px;
  outline: none;
  background: #ffffff;
  transition: all 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-search input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: #ffffff;
  background: var(--amber);
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  padding: 16px 20px 22px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-panel.open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7ed;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 24px;
  color: #e2e8f0;
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-tags,
.tag-row,
.chip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.tag-row span,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: #92400e;
  background: #fef3c7;
  font-size: 13px;
  font-weight: 800;
}

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

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

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

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

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-cats,
.content-section,
.page-main,
.detail-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-cats {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}

.quick-cats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-cat,
.category-tile,
.category-overview > a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
  border-radius: 24px;
  padding: 22px;
  color: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-cat:hover,
.category-tile:hover,
.category-overview > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-cat span,
.category-tile span,
.category-icon {
  font-size: 40px;
}

.quick-cat strong,
.category-tile strong,
.category-overview h2 {
  font-size: 22px;
}

.blue {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.red {
  background: linear-gradient(135deg, #fb7185, #dc2626);
}

.green {
  background: linear-gradient(135deg, #34d399, #059669);
}

.amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pink {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.cyan {
  background: linear-gradient(135deg, #22d3ee, #0284c7);
}

.yellow {
  background: linear-gradient(135deg, #facc15, #ea580c);
}

.teal {
  background: linear-gradient(135deg, #2dd4bf, #0f766e);
}

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

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section-head a {
  color: var(--amber-dark);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow);
}

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

.movie-card.horizontal .card-cover {
  aspect-ratio: 16 / 10;
}

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

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

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

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

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

.tag-row {
  gap: 6px;
}

.tag-row span {
  padding: 5px 8px;
  font-size: 12px;
}

.gradient-block {
  width: min(1180px, calc(100% - 32px));
  margin-top: 74px;
  padding: 36px;
  border-radius: 32px;
}

.amber-block {
  background: linear-gradient(135deg, #fffbeb, #fed7aa);
}

.cyan-block {
  background: linear-gradient(135deg, #ecfeff, #dbeafe);
  margin-bottom: 72px;
}

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

.category-tile em,
.category-overview p {
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

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

.rank-panel {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.rank-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.rank-title h2 {
  margin: 0;
  font-size: 24px;
}

.rank-title a {
  color: var(--amber-dark);
  font-weight: 900;
}

.compact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.compact-card img {
  width: 58px;
  height: 78px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  background: #fef3c7;
}

.compact-card span {
  min-width: 0;
}

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

.compact-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.mini-rank {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: var(--amber);
  font-weight: 900;
}

.recommend-list,
.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-main,
.detail-main {
  padding: 34px 0 80px;
}

.page-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  border-radius: 32px;
  padding: 42px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: var(--soft-shadow);
}

.soft-hero,
.search-hero {
  color: var(--text);
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  border: 1px solid var(--line);
}

.soft-hero .eyebrow,
.search-hero .eyebrow {
  color: #ffffff;
}

.rank-hero {
  background: linear-gradient(135deg, #0f172a, #92400e);
}

.page-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

.chip-row {
  margin-top: 22px;
}

.chip {
  color: #92400e;
  background: #fef3c7;
}

.chip.active,
.chip:hover {
  color: #ffffff;
  background: var(--amber);
}

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

.category-overview {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.category-overview > a {
  min-height: 190px;
  border-radius: 28px 28px 0 0;
  box-shadow: none;
}

.overview-mini-grid {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-search input {
  width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.filter-row strong {
  margin-right: 4px;
}

.filter-row button {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #92400e;
  background: #fef3c7;
  cursor: pointer;
  font-weight: 800;
}

.filter-row button.active,
.filter-row button:hover {
  color: #ffffff;
  background: var(--amber);
}

.category-listing {
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 700;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  border-radius: 34px;
  padding: 28px;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.55), transparent 35%), linear-gradient(135deg, #111827, #0f172a);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  object-fit: cover;
  background: #fef3c7;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.detail-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-copy p {
  max-width: 780px;
  color: #e2e8f0;
  font-size: 19px;
}

.detail-tags {
  margin: 22px 0 28px;
}

.player-section {
  margin-bottom: 34px;
}

.player-section h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.62));
  cursor: pointer;
}

.play-circle {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

.play-overlay:hover .play-circle {
  transform: translateX(3px) scale(1.08);
}

.player-shell.is-playing .play-overlay {
  display: none;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
  gap: 22px;
}

.story-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

.story-card p {
  margin: 0;
  color: #334155;
}

.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
}

.info-card li:last-child {
  border-bottom: 0;
}

.info-card strong {
  color: #64748b;
}

.info-card a {
  color: var(--amber-dark);
  font-weight: 800;
}

.related-section {
  width: 100%;
}

.search-page-form {
  margin-top: 26px;
}

.search-page-form input {
  width: min(520px, 100%);
}

.search-results {
  margin-bottom: 24px;
}

.search-result-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.search-result-card img {
  width: 92px;
  height: 124px;
  border-radius: 14px;
  object-fit: cover;
  background: #fef3c7;
}

.search-result-card h3 {
  margin: 0;
  font-size: 19px;
}

.search-result-card p {
  margin: 8px 0;
  color: var(--muted);
}

.search-result-card em {
  color: var(--amber-dark);
  font-style: normal;
  font-weight: 800;
}

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

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 520px;
}

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

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

.hidden-card {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .quick-cats-inner,
  .movie-grid,
  .featured-grid,
  .small-grid,
  .category-grid,
  .rank-grid,
  .related-grid,
  .category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column-section,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .nav-shell {
    min-height: 66px;
  }

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

  .hero-carousel {
    height: 620px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .quick-cats {
    margin-top: 18px;
  }

  .quick-cats-inner,
  .movie-grid,
  .featured-grid,
  .small-grid,
  .category-grid,
  .rank-grid,
  .related-grid,
  .category-showcase,
  .category-overview-grid,
  .recommend-list,
  .search-results {
    grid-template-columns: 1fr;
  }

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

  .gradient-block,
  .page-hero,
  .detail-hero {
    padding: 24px;
    border-radius: 24px;
  }

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

  .detail-poster {
    max-width: 250px;
  }

  .filter-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-row button {
    margin-right: 7px;
  }

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