:root {
  --bg: #07060d;
  --bg-2: #0a0816;
  --surface: #0f0a1c;
  --surface-2: #150f29;
  --surface-3: #1a1232;
  --line: rgba(195, 165, 255, 0.12);
  --line-strong: rgba(195, 165, 255, 0.22);
  --text: #ffffff;
  --text-soft: #cdc4e2;
  --text-dim: #8f87a8;
  --purple: #a17bff;
  --purple-2: #c9a8ff;
  --purple-3: #d8c2ff;
  --purple-deep: #5c2db5;
  --purple-bg: #1d0f3a;
  --shadow: 0 30px 90px rgba(60, 22, 132, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(7, 6, 13, 0.92), rgba(7, 6, 13, 0.55));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: rgba(15, 10, 28, 0.85);
  border: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #3a1a5f, #07060d 70%);
  border: 2px solid #d8c2ff;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(216, 194, 255, 0.7);
}
.nav { display: flex; align-items: center; gap: 38px; }
.nav__list { display: flex; gap: 36px; list-style: none; }
.nav__link {
  font-size: 15px;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn--primary {
  background: linear-gradient(135deg, #d8c2ff, #a17bff);
  color: #1a0a3d;
  box-shadow: 0 10px 28px rgba(161, 123, 255, 0.45);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(161, 123, 255, 0.55); }
.btn--ghost {
  background: rgba(15, 10, 28, 0.7);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--line-strong); }
.btn--social {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #5fb2ff, #2280e0);
  color: #fff;
}
.btn__arrow { font-size: 12px; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 10, 28, 0.85);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.burger__line { width: 16px; height: 2px; background: var(--text); border-radius: 2px; }

.hero { padding: 36px 0 50px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.panel {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 64, 220, 0.28), transparent 55%),
    radial-gradient(circle at 95% 80%, rgba(76, 32, 160, 0.32), transparent 60%),
    linear-gradient(180deg, #0d0820 0%, #07051a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 56px 56px 48px;
  overflow: hidden;
}
.panel--right {
  padding: 36px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(74, 36, 148, 0.35);
  border: 1px solid rgba(195, 165, 255, 0.28);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--purple-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple);
}
.hero__title {
  font-size: clamp(64px, 8vw, 132px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 30px;
  text-transform: uppercase;
}
.hero__title-gradient {
  background: linear-gradient(180deg, #f1e5ff 0%, #b48dff 55%, #6a3ad8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__desc {
  margin-top: 28px;
  max-width: 540px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}
.hero__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.feature-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 18%, rgba(124, 64, 220, 0.35), transparent 60%),
    linear-gradient(180deg, #110a26 0%, #0a0620 100%);
  padding: 28px;
  overflow: hidden;
}
.feature-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.feature-card__dots { letter-spacing: 0.3em; }
.feature-card__body {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.feature-shape {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 35% 35%, rgba(190, 140, 255, 0.55), transparent 60%),
    linear-gradient(180deg, #2a1659, #160a30);
  border: 1px solid rgba(195, 165, 255, 0.2);
  position: relative;
}
.feature-shape--diamond::before {
  content: "";
  position: absolute;
  inset: 30%;
  border: 2px solid rgba(216, 194, 255, 0.7);
  transform: rotate(45deg);
  border-radius: 8px;
}
.feature-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  margin: 14px 0 18px;
  text-transform: uppercase;
}
.feature-card__lead {
  margin-top: 0;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
}
.section-title--sub {
  font-size: clamp(28px, 3.6vw, 46px);
}
.chip-card {
  background: rgba(20, 12, 42, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
}
.chip-card__title {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
}
.chip-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.chip {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  background: rgba(40, 22, 80, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: var(--text);
}
.chip__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.chip__name {
  font-size: 11px;
  color: var(--text);
}

.ticker {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.ticker__band {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  border-radius: var(--radius-pill);
  padding: 18px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 16px;
}
.ticker__band--purple {
  background: linear-gradient(90deg, #d8c2ff, #a17bff, #6a3ad8);
  color: #1a0a3d;
}
.ticker__band--dark {
  background: linear-gradient(90deg, #1a1132, #2a1659, #1a1132);
  color: var(--text);
  border: 1px solid var(--line);
}
.ticker__band--tilt-1 { transform: rotate(-2deg); }
.ticker__band--tilt-2 { transform: rotate(1.2deg); }
.ticker__row { display: flex; gap: 38px; padding: 0 24px; }
.ticker__row span::after { content: " "; margin-left: 38px; }

.section { padding: 90px 0; }
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 16px;
}
.section-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 18px;
}

.identity {
  position: relative;
  background: linear-gradient(180deg, #0a0618 0%, #07051a 100%);
}
.identity__container { position: relative; }
.identity__beyond {
  position: absolute;
  top: 36px;
  left: -28px;
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #6a3ad8 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: -0.02em;
  line-height: 0.9;
  opacity: 0.85;
  pointer-events: none;
}
.identity__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  padding-left: 120px;
}
.identity__text-block { display: flex; flex-direction: column; gap: 22px; }
.identity__copy { font-size: 16px; color: var(--text-soft); line-height: 1.75; }
.note-card {
  margin-top: 12px;
  padding: 24px 26px;
  background: rgba(20, 12, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.note-card__title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}
.note-card__body { margin-top: 10px; color: var(--text-soft); font-size: 15px; }
.identity__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.shape-card {
  aspect-ratio: 1;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 35% 30%, rgba(192, 140, 255, 0.45), transparent 60%),
    linear-gradient(180deg, #1a0e3a, #0d0626);
  position: relative;
}
.shape-card--diamond::before {
  content: "";
  position: absolute;
  inset: 32%;
  border: 2px solid rgba(216, 194, 255, 0.7);
  transform: rotate(45deg);
  border-radius: 8px;
}
.stat-card {
  grid-column: 1 / -1;
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #15092e, #0c0623);
}
.stat-card__number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #a17bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card__text {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.games-section { background: var(--bg); }
.games-section__head { max-width: 720px; }
.games-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 15%, rgba(124, 64, 220, 0.18), transparent 55%),
    linear-gradient(180deg, #110828, #0a051c);
  min-height: 320px;
  overflow: hidden;
}
.game-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.game-card__logo {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #07050f;
  padding: 6px;
  flex-shrink: 0;
}
.game-card__logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(74, 36, 148, 0.35);
  border: 1px solid rgba(195, 165, 255, 0.28);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-soft);
}
.game-card__title {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.game-card__desc {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
.game-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.mini-chip {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(20, 12, 42, 0.55);
  font-size: 11px;
  color: var(--text-soft);
}
.game-card__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.game-card__btn {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.game-card__mood {
  font-size: 12px;
  color: var(--text-dim);
}

.tuning-section { background: linear-gradient(180deg, #07051a 0%, #07060d 100%); }
.tuning-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.tuning-left .section-title { margin-top: 16px; }
.tuning-left__copy { color: var(--text-soft); font-size: 15px; margin-top: 22px; line-height: 1.7; }
.chip-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip-row .tag { font-size: 11px; }
.bar-shape {
  margin-top: 30px;
  height: 90px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 60%, rgba(190, 140, 255, 0.4), transparent 70%),
    linear-gradient(180deg, #1a0e3a, #0d0626);
  border: 1px solid var(--line);
  position: relative;
}
.bar-shape::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 30px;
  height: 1px;
  background: rgba(216, 194, 255, 0.6);
  box-shadow: 0 0 18px rgba(216, 194, 255, 0.6);
}
.tuning-list { display: flex; flex-direction: column; gap: 18px; margin-top: 80px; }
.tuning-card {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(20, 12, 42, 0.55);
}
.tuning-card__title {
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
}
.tuning-card__body {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.footer { background: var(--bg); padding: 90px 0 40px; border-top: 1px solid var(--line); }
.footer__head { max-width: 1000px; }
.footer__title {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer__desc { margin-top: 22px; color: var(--text-soft); font-size: 16px; max-width: 620px; }
.footer__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.footer__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer__info { color: var(--text-soft); font-size: 14.5px; line-height: 1.7; }
.footer__info a:hover { color: var(--text); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  color: var(--text-soft);
  font-size: 14.5px;
}
.footer__links a:hover { color: var(--text); }
.footer__socials { display: flex; gap: 12px; justify-content: flex-end; }
.footer__bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: none;
  z-index: 100;
  box-shadow: var(--shadow);
}
.cookie.is-visible { display: block; }
.cookie__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
.cookie__body { margin-top: 14px; color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
.cookie__actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

.game-detail {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 12% 22%, rgba(124, 64, 220, 0.25), transparent 55%),
    linear-gradient(180deg, #0d0822 0%, #07051a 100%);
}
.game-detail__container { position: relative; }
.game-detail__watermark {
  position: absolute;
  left: -30px;
  top: 36px;
  font-size: clamp(90px, 14vw, 220px);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #c7a4ff 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: -0.02em;
  opacity: 0.85;
  pointer-events: none;
}
.game-detail__panel {
  margin-left: 130px;
  padding: 40px 44px 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 12, 42, 0.55), rgba(10, 6, 28, 0.6));
}
.game-detail__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 26px;
}
.game-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}
.game-detail__copy p { color: var(--text-soft); font-size: 15.5px; line-height: 1.75; }
.game-detail__copy p + p { margin-top: 18px; }
.game-detail__icon {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #07050f;
  padding: 8px;
}
.game-detail__icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.game-detail__cta { margin-top: 30px; }

.legal {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0d0822 0%, #07051a 100%);
}
.legal__container { position: relative; }
.legal__watermark {
  position: absolute;
  left: -16px;
  top: 0;
  font-size: clamp(80px, 11vw, 168px);
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #c7a4ff 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: -0.02em;
  opacity: 0.85;
  pointer-events: none;
  text-transform: uppercase;
}
.legal__inner {
  margin-left: 140px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 880px;
}
.legal__inner h2 {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
}
.legal__inner p, .legal__inner ul { margin-top: 6px; }
.legal__inner ul { padding-left: 22px; }
.legal__inner li { margin: 4px 0; }
.legal__inner a { color: var(--purple-2); text-decoration: underline; }

@media (max-width: 1024px) {
  .hero__grid, .identity__grid, .games-grid, .tuning-grid, .footer__grid { grid-template-columns: 1fr; }
  .panel { padding: 40px 32px; }
  .identity__grid { padding-left: 80px; }
  .identity__beyond { left: -18px; font-size: 96px; }
  .game-detail__panel { margin-left: 100px; padding: 32px; }
  .game-detail__watermark { font-size: 110px; left: -10px; }
  .legal__inner { margin-left: 100px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .tuning-list { margin-top: 0; }
  .footer__socials { justify-content: flex-start; }
  .nav__list { gap: 22px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .nav__list { display: none; }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 18px;
    right: 18px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    z-index: 60;
  }
  .nav__cta { display: none; }
  .burger { display: inline-flex; }
  .panel { padding: 32px 22px; border-radius: 22px; }
  .hero__title { font-size: 60px; }
  .feature-card__body { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .identity__grid { padding-left: 60px; }
  .identity__beyond { font-size: 64px; left: -8px; }
  .identity__visual { grid-template-columns: 1fr 1fr; }
  .game-detail__panel { margin-left: 60px; padding: 26px 22px; }
  .game-detail__watermark { font-size: 72px; left: 0; }
  .game-detail__grid { grid-template-columns: 1fr; }
  .legal__inner { margin-left: 60px; }
  .legal__watermark { font-size: 68px; }
  .stat-card { padding: 22px; }
  .stat-card__number { font-size: 48px; }
  .footer__title { font-size: 42px; }
  .footer__bottom { flex-direction: column; }
}
