:root {
  --page-bg: #0f172a;
  --panel-bg: #111827;
  --panel-soft: #172033;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.22);
  --orange: #f97316;
  --orange-soft: rgba(249, 115, 22, 0.16);
  --rose: #e11d48;
  --violet: #7c3aed;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 2%, rgba(249, 115, 22, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(124, 58, 237, 0.18), transparent 34rem),
    linear-gradient(180deg, #0f172a 0%, #111827 42%, #0b1120 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 45px rgba(2, 6, 23, 0.32);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand {
  flex: 0 0 auto;
  font-size: 21px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  color: var(--text-soft);
  font-size: 14px;
}

.desktop-nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-search {
  width: 300px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
}

.header-search input {
  min-width: 0;
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 7px 8px 7px 12px;
}

.header-search input::placeholder {
  color: #64748b;
}

.header-search button,
.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-search button,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.header-search button {
  padding: 7px 14px;
  font-size: 13px;
}

.primary-button {
  gap: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.secondary-button,
.text-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.secondary-button {
  padding: 12px 18px;
  font-weight: 700;
}

.text-button {
  padding: 9px 13px;
  font-size: 14px;
}

.header-search button:hover,
.primary-button:hover,
.secondary-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--text-soft);
}

.mobile-nav a:hover {
  color: #fff;
  background: rgba(249, 115, 22, 0.12);
}

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

main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  margin: 28px auto 48px;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.83) 45%, rgba(15, 23, 42, 0.52) 100%),
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.22), transparent 28rem),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.13);
  border: 1px solid rgba(251, 146, 60, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy p {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.hero-tags,
.detail-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.hero-tags span,
.detail-tags span,
.tag-list span {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
}

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

.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 35% 15%, rgba(249, 115, 22, 0.3), transparent 18rem),
    linear-gradient(145deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.96));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: 0.92;
}

.hero-card-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

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

.hero-card-info span {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-controls {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: linear-gradient(135deg, var(--orange), var(--rose));
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.section-block {
  margin: 52px 0;
}

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

.section-title h1,
.section-title h2,
.detail-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-title p {
  max-width: 820px;
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.42);
}

.category-card h2,
.category-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.category-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.category-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #fed7aa;
  font-weight: 700;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.42);
  background: rgba(30, 41, 59, 0.86);
}

.card-poster {
  position: relative;
  display: block;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 22%, rgba(249, 115, 22, 0.28), transparent 9rem),
    linear-gradient(145deg, #1e293b, #0f172a);
}

.poster-card {
  aspect-ratio: 3 / 4.2;
}

.poster-mini {
  aspect-ratio: 3 / 4.2;
  border-radius: 14px;
}

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

.movie-card:hover .poster-frame img,
.mini-card:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.66));
  opacity: 0;
}

.poster-frame.image-empty .poster-title {
  opacity: 1;
}

.poster-frame.image-empty img,
.hero-media.image-empty img,
.detail-poster.image-empty img {
  display: none;
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  left: 10px;
  bottom: 10px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  padding: 5px 9px;
}

.rank-badge {
  top: 10px;
  left: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  padding: 6px 10px;
}

.card-body {
  padding: 14px;
}

.card-meta,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fed7aa;
  font-size: 12px;
  font-weight: 700;
}

.card-body h2 {
  margin: 9px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--orange);
}

.card-body p {
  min-height: 54px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12px;
}

.card-foot a {
  color: #fdba74;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.66);
}

.rank-row:hover {
  border-color: rgba(249, 115, 22, 0.42);
  background: rgba(30, 41, 59, 0.86);
}

.rank-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  font-weight: 900;
}

.rank-row h2,
.rank-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-row p {
  margin: 7px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.rank-heat {
  color: #fdba74;
  font-weight: 900;
}

.side-panel {
  position: sticky;
  top: 90px;
  align-self: start;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.72);
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

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

.mini-card {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.mini-card:hover {
  color: #fff;
}

.filter-panel {
  margin: 20px 0 24px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.68);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  outline: 0;
  padding: 0 13px;
}

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

.filter-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-selects select {
  width: 142px;
}

.empty-state {
  display: block;
  padding: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 22px;
  color: var(--text-muted);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 8%, rgba(249, 115, 22, 0.18), transparent 26rem),
    linear-gradient(145deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 35% 22%, rgba(249, 115, 22, 0.28), transparent 12rem),
    linear-gradient(145deg, #1e293b, #0f172a);
}

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

.detail-copy h1 {
  margin-top: 14px;
}

.detail-copy .lead {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.watch-panel {
  margin: 34px 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background:
    radial-gradient(circle at 48% 10%, rgba(249, 115, 22, 0.15), transparent 22rem),
    #020617;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.18), rgba(2, 6, 23, 0.78)),
    rgba(2, 6, 23, 0.72);
  cursor: pointer;
}

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

.play-orb {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.34);
  font-size: 30px;
}

.player-cover strong {
  font-size: 28px;
}

.player-cover span:last-child,
.player-status {
  color: var(--text-muted);
}

.player-status {
  margin: 12px 4px 0;
  font-size: 14px;
}

.content-card {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.66);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  color: var(--text-soft);
  line-height: 1.9;
}

.content-stack {
  display: grid;
  gap: 18px;
}

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

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.62);
}

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

.footer-brand {
  margin-bottom: 14px;
  font-size: 20px;
}

.site-footer p {
  max-width: 520px;
  color: var(--text-muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(249, 115, 22, 0.16);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 30px;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 13px;
    font-size: 13px;
  }

  .header-search {
    width: 250px;
  }

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

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

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-controls {
    left: 34px;
    right: 34px;
  }

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

  .rank-layout,
  .detail-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 640px) {
  .header-inner,
  main,
  .footer-grid,
  .footer-bottom,
  .mobile-nav {
    width: min(100% - 22px, 1280px);
  }

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

  .hero {
    margin-top: 14px;
    min-height: 760px;
    border-radius: 24px;
  }

  .hero-slide {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .detail-copy .lead {
    font-size: 16px;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .detail-actions a {
    width: 100%;
  }

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

  .category-grid,
  .movie-grid,
  .category-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rank-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .rank-heat {
    grid-column: 2;
  }

  .detail-hero {
    padding: 18px;
    border-radius: 24px;
  }

  .content-card {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
