:root {
  color-scheme: dark;
  --bg: #06100d;
  --bg-deep: #020705;
  --panel: rgba(6, 26, 20, 0.82);
  --panel-strong: rgba(7, 35, 26, 0.94);
  --line: rgba(112, 255, 54, 0.18);
  --line-strong: rgba(112, 255, 54, 0.38);
  --text: #f6fff8;
  --muted: #aebdb4;
  --green: #61f232;
  --green-strong: #7cff28;
  --green-dark: #143f19;
  --orange: #ff8b1a;
  --yellow: #ffe25d;
  --red: #ff392e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 112, 18, 0.16), transparent 30rem),
    radial-gradient(circle at 8% 36%, rgba(97, 242, 50, 0.12), transparent 24rem),
    linear-gradient(180deg, #010402 0%, var(--bg) 42%, var(--bg-deep) 100%);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.global-click-target {
  cursor: pointer;
}

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: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 12px;
  background: linear-gradient(180deg, rgba(3, 7, 5, 0.95), rgba(3, 7, 5, 0.76) 78%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(97, 242, 50, 0.8));
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.4rem;
  font-weight: 900;
}

.brand small {
  margin-top: 4px;
  color: var(--green-strong);
  font-size: 0.7rem;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #f4fff6;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.btn,
.locale,
.nav-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #071308;
  background: linear-gradient(180deg, var(--green-strong), #4edc22);
  border-color: rgba(124, 255, 40, 0.72);
  box-shadow: 0 12px 28px rgba(97, 242, 50, 0.24);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--large {
  min-width: 260px;
  min-height: 54px;
}

.btn--small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.locale__flag {
  width: 18px;
  height: 13px;
  background: linear-gradient(180deg, #fff 0 33%, #1456d9 33% 66%, #e52b34 66%);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(520px, 0.58fr);
  align-items: center;
  gap: 34px;
  width: min(var(--container), calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  padding: 48px 0 78px;
}

.hero::before {
  position: absolute;
  inset: 0 -20px 28px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 70% 45%, rgba(255, 110, 18, 0.28), transparent 25rem),
    radial-gradient(circle at 92% 48%, rgba(97, 242, 50, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(3, 7, 5, 0.98) 0%, rgba(3, 7, 5, 0.9) 35%, rgba(18, 14, 8, 0.76) 58%, rgba(35, 13, 5, 0.58) 100%);
  border-bottom: 1px solid rgba(124, 255, 40, 0.16);
  opacity: 0.65;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 86%, transparent 100%);
}

.hero__content {
  max-width: 360px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.bonus h2,
.vip-card h2,
.seo-section h2,
.faq h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--green-strong);
  text-shadow: 0 0 24px rgba(97, 242, 50, 0.42);
}

.hero h1 strong {
  color: #fff;
  font: inherit;
  white-space: nowrap;
}

.hero__lead {
  max-width: 330px;
  margin: 18px 0 0;
  color: #e8f0eb;
  font-size: 1.45rem;
  line-height: 1.35;
}

.hero__actions,
.bonus__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.hero__note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 610px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.68));
}

.hero__visual::after {
  position: absolute;
  right: 4%;
  bottom: 8%;
  left: 9%;
  height: 22%;
  content: "";
  background: rgba(97, 242, 50, 0.24);
  filter: blur(34px);
  z-index: -1;
}

.hero__visual img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  mask-image:
    linear-gradient(90deg, transparent 0%, black 9%, black 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 8%, black 93%, transparent 100%);
  mask-composite: intersect;
}

.trust-band,
.stats-band {
  display: grid;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(6, 31, 23, 0.9), rgba(4, 19, 15, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-band {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-36px);
}

.trust-band article,
.stats-band article {
  min-width: 0;
  padding: 26px 30px;
}

.trust-band article + article,
.stats-band article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-band strong,
.stats-band strong {
  display: block;
  font-size: 1.05rem;
}

.trust-band p,
.stats-band p {
  margin: 2px 0 0;
  color: var(--muted);
}

.trust-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--green-strong);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 5px rgba(124, 255, 40, 0.95))
    drop-shadow(0 0 12px rgba(97, 242, 50, 0.55));
}

.section,
.faq {
  width: min(var(--container), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 34px 0 0;
}

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

.section__head h2,
.bonus h2,
.vip-card h2,
.seo-section h2,
.faq h2 {
  font-size: 2rem;
  font-weight: 950;
}

.section__head--compact {
  align-items: center;
  margin-bottom: 18px;
}

.section__head--compact h2 {
  font-size: 1.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-strong);
  font-weight: 800;
}

.text-link::after {
  content: "›";
  font-size: 1.35rem;
  line-height: 1;
}

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

.game-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.game-card img {
  width: 100%;
  height: clamp(168px, 13.5vw, 210px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(97, 242, 50, 0.12), transparent 10rem),
    linear-gradient(180deg, rgba(7, 22, 17, 0.95), rgba(2, 8, 6, 0.98));
}

.game-card div {
  padding: 10px 10px 12px;
}

.game-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 4px 7px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--red);
  border-radius: 5px;
}

.badge--new {
  background: #2bdd4f;
}

.bonus {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(430px, 1fr) minmax(270px, 0.8fr);
  align-items: center;
  gap: 20px;
  width: min(var(--container), calc(100% - 40px));
  min-height: 270px;
  margin: 44px auto 0;
  padding: 16px 28px;
  background:
    radial-gradient(circle at 22% 52%, rgba(97, 242, 50, 0.12), transparent 18rem),
    radial-gradient(circle at 78% 46%, rgba(255, 226, 93, 0.13), transparent 18rem),
    linear-gradient(90deg, rgba(3, 10, 7, 0.76), rgba(4, 30, 18, 0.9) 45%, rgba(5, 17, 12, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bonus__copy {
  min-width: 0;
  max-width: 450px;
  z-index: 1;
}

.bonus h2 span,
.bonus h2 strong {
  display: block;
}

.bonus h2 span {
  color: var(--green-strong);
  text-shadow: 0 0 18px rgba(97, 242, 50, 0.42);
}

.bonus h2 strong {
  color: #fff;
  font: inherit;
  margin-top: 4px;
}

.bonus__copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 16px 0 0;
  color: #d7e3dc;
  font-size: 1.05rem;
}

.bonus__mascot,
.bonus__gift {
  width: 100%;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.46));
}

.bonus__mascot {
  align-self: end;
  max-height: 252px;
  object-fit: contain;
  object-position: left bottom;
}

.bonus__gift {
  justify-self: end;
  max-width: 300px;
  max-height: 214px;
  object-fit: contain;
  object-position: right center;
}

.stats-band {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 18px;
  min-height: 96px;
}

.stats-band article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
}

.stats-band strong {
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
}

.stats-band p {
  text-transform: capitalize;
}

.stat-icon,
.vip-card__icon {
  flex: 0 0 auto;
  color: var(--green-strong);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 5px rgba(124, 255, 40, 0.9))
    drop-shadow(0 0 12px rgba(97, 242, 50, 0.44));
}

.stat-icon {
  width: 44px;
  height: 44px;
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  width: min(var(--container), calc(100% - 40px));
  margin: 18px auto 0;
}

.vip-card,
.tournaments {
  min-width: 0;
  min-height: 260px;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 66% 50%, rgba(97, 242, 50, 0.11), transparent 13rem),
    linear-gradient(180deg, rgba(6, 31, 23, 0.9), rgba(4, 19, 15, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vip-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(170px, 1fr);
  align-items: center;
  gap: 16px;
}

.vip-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-strong);
  font-size: 1.8rem;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(97, 242, 50, 0.38);
}

.vip-card__icon {
  width: 38px;
  height: 38px;
}

.vip-card ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 26px;
  padding: 0;
  color: #d5e3da;
  list-style: none;
}

.vip-card img {
  width: 100%;
  max-height: 215px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 18px 34px rgba(97, 242, 50, 0.16));
}

.tournament-row {
  display: grid;
  grid-template-columns: 86px minmax(150px, 1fr) minmax(104px, auto) minmax(104px, auto) auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.tournament-row + .tournament-row {
  margin-top: 12px;
}

.tournament-row img {
  width: 86px;
  height: 58px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 7px;
}

.tournament-row h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1rem;
  text-transform: uppercase;
}

.tournament-row:nth-of-type(3) h3 {
  color: #c45cff;
}

.tournament-row__meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.tournament-row__meta strong,
.tournament-row__meta time {
  display: block;
  min-width: max-content;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
  width: min(var(--container), calc(100% - 40px));
  margin: 62px auto 0;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-section p {
  color: #d7e3dc;
}

.steps {
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.steps h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #d7e3dc;
}

.faq {
  margin-top: 18px;
  padding-bottom: 44px;
}

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

details {
  min-width: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.8fr) 1.25fr;
  gap: 34px;
  width: min(var(--container), calc(100% - 40px));
  margin: 18px auto 36px;
  padding: 40px 10px 0;
  border-top: 1px solid var(--line);
}

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

.site-footer nav,
.payments,
.footer-brand {
  min-width: 0;
}

.site-footer nav a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand .age {
  margin-top: 6px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    right: 20px;
    left: 20px;
    z-index: 30;
    display: none;
    background: rgba(3, 11, 8, 0.98);
    border: 1px solid var(--line);
  }

  .main-nav {
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-actions {
    top: 374px;
    justify-content: stretch;
    padding: 10px;
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .header-actions .btn,
  .header-actions .locale {
    flex: 1;
  }

  body.menu-open .main-nav,
  body.menu-open .header-actions {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.42fr) minmax(430px, 0.58fr);
    gap: 24px;
    min-height: 440px;
    padding-top: 32px;
  }

  .hero__content {
    max-width: 340px;
  }

  .hero__visual {
    justify-self: end;
  }

  .trust-band,
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band article:nth-child(3),
  .stats-band article:nth-child(3),
  .stats-band article:nth-child(5) {
    border-left: 0;
  }

  .trust-band article:nth-child(n + 3),
  .stats-band article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .bonus {
    grid-template-columns: 0.8fr 1fr;
  }

  .bonus__gift {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: end;
  }

  .promo-grid,
  .seo-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header,
  .hero,
  .trust-band,
  .section,
  .bonus,
  .stats-band,
  .promo-grid,
  .seo-section,
  .faq,
  .site-footer {
    width: min(100% - 28px, var(--container));
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero::before {
    inset: 0 0 28px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    justify-self: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero h1 strong {
    white-space: normal;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__actions,
  .bonus__actions {
    flex-direction: column;
  }

  .btn--large,
  .hero__actions .btn,
  .bonus__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .trust-band,
  .stats-band,
  .games-grid,
  .faq__items,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-band article,
  .stats-band article {
    border-left: 0;
  }

  .trust-band article + article,
  .stats-band article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .games-grid {
    gap: 14px;
  }

  .game-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
  }

  .game-card img {
    height: 118px;
    object-fit: contain;
  }

  .game-card h3 {
    white-space: normal;
  }

  .bonus {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bonus__mascot,
  .bonus__gift {
    max-width: 320px;
    justify-self: center;
  }

  .vip-card,
  .tournament-row {
    grid-template-columns: 1fr;
  }

  .vip-card img {
    max-width: 260px;
    justify-self: center;
  }

  .vip-card h2 {
    white-space: normal;
  }

  .tournament-row img {
    width: 96px;
    height: 96px;
  }

  .tournament-row .btn {
    width: 100%;
  }

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

  .section__head h2,
  .bonus h2,
  .vip-card h2,
  .seo-section h2,
  .faq h2 {
    font-size: 1.65rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.48rem;
  }

  .main-nav,
  .header-actions {
    right: 14px;
    left: 14px;
  }

  .header-actions {
    flex-direction: column;
    top: 374px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
