:root {
  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;
  --bronze-800: #846358;
  --bronze-700: #977669;
  --bronze-600: #a18072;
  --bronze-400: #d2bab0;
  --bronze-100: #f2e8e5;
  --bronze-50: #fdf8f6;
  --heritage-100: #e4e4e1;
  --heritage-50: #f7f7f6;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(28, 25, 23, 0.12);
  --shadow-strong: 0 26px 60px rgba(12, 10, 9, 0.28);
  --radius-large: 24px;
  --radius-card: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-900);
  background: var(--stone-50);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand {
  color: var(--white);
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
  box-shadow: 0 12px 32px rgba(161, 128, 114, 0.35);
}

.brand-text {
  font-size: 1.05rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--stone-300);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(210, 186, 176, 0.16);
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.nav-search input {
  width: 210px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 12px 10px 16px;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.nav-search button {
  border: 0;
  color: var(--white);
  background: var(--bronze-600);
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-search button:hover {
  background: var(--bronze-700);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero-carousel {
  position: relative;
  height: 68vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--stone-950);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(210, 186, 176, 0.22), transparent 34%),
    linear-gradient(to top, rgba(12, 10, 9, 0.98), rgba(12, 10, 9, 0.64), rgba(12, 10, 9, 0.16));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 0;
  color: var(--white);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze-100);
  background: rgba(161, 128, 114, 0.3);
  border: 1px solid rgba(210, 186, 176, 0.3);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.hero-text h1,
.hero-text h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-text p {
  max-width: 680px;
  color: var(--stone-200);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 28px;
}

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

.button,
.button-soft,
.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button {
  color: var(--white);
  background: var(--bronze-600);
  box-shadow: 0 16px 36px rgba(161, 128, 114, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--bronze-700);
}

.button-soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-soft:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-dark {
  color: var(--white);
  background: var(--stone-900);
}

.button-dark:hover {
  background: var(--stone-800);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(12, 10, 9, 0.55);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(12, 10, 9, 0.76);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-next {
  right: 22px;
  transform: translateY(-50%);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  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.is-active {
  width: 34px;
  background: var(--bronze-400);
}

.page-main {
  padding: 56px 0 72px;
}

.section {
  margin: 0 0 62px;
}

.section-muted {
  background: var(--heritage-100);
  margin-left: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
  margin-right: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
  padding: 54px calc((100vw - min(1180px, calc(100vw - 32px))) / 2);
}

.section-dark {
  background: var(--stone-900);
  color: var(--white);
  border-radius: var(--radius-large);
  padding: 38px;
  box-shadow: var(--shadow-strong);
}

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

.section-kicker {
  color: var(--bronze-700);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-head h1,
.section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--stone-600);
}

.section-dark .section-head p {
  color: var(--stone-300);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(28, 25, 23, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--stone-200);
  overflow: hidden;
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.76), rgba(12, 10, 9, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card-link:hover .poster-shade {
  opacity: 1;
}

.region-badge,
.rank-badge,
.heat-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
}

.region-badge {
  right: 12px;
  background: var(--bronze-600);
}

.rank-badge {
  left: 12px;
  background: rgba(12, 10, 9, 0.78);
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.movie-card-body strong {
  color: var(--stone-900);
  font-size: 1.05rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-desc {
  color: var(--stone-600);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--stone-500);
  font-size: 0.82rem;
}

.movie-meta span:first-child {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card-compact .poster-wrap {
  aspect-ratio: 3 / 4;
}

.scroller {
  overflow-x: auto;
  padding: 4px 0 18px;
}

.scroller-row {
  display: flex;
  gap: 18px;
  min-width: max-content;
}

.scroller-row .movie-card {
  width: 286px;
  flex: 0 0 286px;
}

.category-card {
  display: block;
  min-height: 230px;
  border-radius: var(--radius-large);
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(210, 186, 176, 0.45), transparent 40%),
    linear-gradient(135deg, var(--white), var(--bronze-50));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(210, 186, 176, 0.35);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(28, 25, 23, 0.17);
}

.category-card em {
  color: var(--bronze-700);
  font-style: normal;
  font-weight: 800;
  font-size: 0.8rem;
}

.category-card h2,
.category-card h3 {
  margin: 18px 0 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.category-card p {
  margin: 0;
  color: var(--stone-600);
}

.category-card span {
  display: inline-flex;
  margin-top: 26px;
  color: var(--bronze-700);
  font-weight: 800;
}

.media-list {
  display: grid;
  gap: 16px;
}

.media-row {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.media-row:hover {
  transform: translateX(4px);
}

.media-thumb {
  width: 118px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--stone-200);
  flex: 0 0 auto;
}

.media-row strong {
  display: block;
  color: var(--stone-900);
  line-height: 1.35;
}

.media-row em {
  display: block;
  margin-top: 8px;
  color: var(--bronze-700);
  font-style: normal;
  font-size: 0.86rem;
}

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

.channel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--stone-800);
  font-size: 1.25rem;
}

.channel h3::before {
  content: "";
  width: 5px;
  height: 26px;
  border-radius: 999px;
  background: var(--bronze-600);
}

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

.dark-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  background: var(--stone-800);
}

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

.dark-poster:hover img {
  transform: scale(1.08);
}

.dark-poster span {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.92), transparent);
  color: var(--white);
  font-weight: 700;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(210, 186, 176, 0.22), transparent 35%),
    linear-gradient(135deg, var(--stone-950), var(--stone-900) 55%, var(--bronze-800));
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--stone-200);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--stone-500);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--bronze-700);
  font-weight: 700;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, 180px);
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-input,
.filter-select {
  width: 100%;
  border: 1px solid var(--stone-200);
  background: var(--stone-50);
  color: var(--stone-900);
  border-radius: 12px;
  padding: 12px 14px;
  outline: 0;
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--bronze-600);
  box-shadow: 0 0 0 4px rgba(161, 128, 114, 0.12);
}

.movie-card.is-hidden,
.media-row.is-hidden {
  display: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 380px;
  gap: 34px;
  align-items: start;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--stone-950);
  box-shadow: var(--shadow-strong);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--stone-950);
  overflow: hidden;
}

.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--stone-950);
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  background: transparent;
}

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

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

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(161, 128, 114, 0.24), transparent 34%),
    linear-gradient(to top, rgba(12, 10, 9, 0.86), rgba(12, 10, 9, 0.2));
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: var(--bronze-600);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 20px 48px rgba(12, 10, 9, 0.35);
}

.player-title {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  text-align: left;
}

.player-title strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

.player-title span {
  display: block;
  margin-top: 8px;
  color: var(--stone-200);
}

.detail-copy {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.detail-meta span,
.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--bronze-800);
  background: var(--bronze-100);
  font-weight: 700;
  font-size: 0.86rem;
}

.copy-section {
  margin-top: 28px;
}

.copy-section h2 {
  margin: 0 0 12px;
  color: var(--stone-900);
  font-size: 1.35rem;
}

.copy-section p {
  margin: 0;
  color: var(--stone-700);
}

.detail-side {
  display: grid;
  gap: 22px;
}

.side-card {
  padding: 22px;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.side-card h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.poster-side {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--stone-200);
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.prev-next a {
  display: block;
  padding: 16px;
  border-radius: 14px;
  background: var(--heritage-50);
  color: var(--stone-700);
  font-weight: 700;
}

.prev-next a:hover {
  color: var(--bronze-700);
}

.site-footer {
  color: var(--stone-400);
  background: var(--stone-950);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 500px;
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--stone-100);
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.site-footer a:hover {
  color: var(--bronze-400);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--stone-800);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

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

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

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

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

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

@media (max-width: 820px) {
  .mobile-menu-button {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 16px;
    border-radius: 20px;
    background: rgba(12, 10, 9, 0.96);
    box-shadow: var(--shadow-strong);
  }

  .nav-panel.is-open {
    display: grid;
    gap: 16px;
  }

  .site-nav {
    display: grid;
    gap: 6px;
  }

  .nav-search {
    width: 100%;
  }

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

  .hero-carousel {
    height: 72vh;
    min-height: 520px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    padding: 52px 0 66px;
  }

  .section-head {
    display: block;
  }

  .section-muted {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-dark {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 34px 16px;
  }

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

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

  .movie-grid,
  .movie-grid-large,
  .category-grid,
  .channel-columns,
  .two-col,
  .filter-panel,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding: 40px 0 56px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .player-title {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .play-circle {
    width: 66px;
    height: 66px;
    font-size: 1.5rem;
  }

  .scroller-row .movie-card {
    width: 245px;
    flex-basis: 245px;
  }

  .footer-bottom {
    display: grid;
  }
}
