:root {
  --h-bg: #1e0b0b;
  --gold: #e6b900;
  --accent: #1d2730;
  --body-bg: #f8f8fa;
  --btn-bg: #efb237;
  --btn-text: #000;
  --btn-hover-text: #fff;
  --btn-border: #efb237;
  --text: #1d2730;
  --link: #8a6500;
  --link-hover: #5f4700;
  --green: #33b63c;
  --radius: 10px;
  --tr: 0.25s;
  --ft-bg: #303030;
  --ft-text: #fff;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  background: var(--body-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font: 15px/1.43 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--btn-bg);
  color: #000;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

:where(a:any-link, button):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(239, 178, 55, 0.7);
}

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

.w {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border: 2px solid var(--btn-border);
  border-radius: var(--radius);
  font: 600 12px/1 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--tr), background-color var(--tr), border-color var(--tr);
}

.btn--fill {
  border-color: var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-text);
}

.btn--fill:hover {
  color: var(--btn-hover-text);
}

.btn--ghost {
  background: transparent;
  color: var(--btn-border);
}

.btn--ghost:hover {
  background: var(--btn-bg);
  color: #000;
}

.btn--white {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.btn--white:hover {
  background: #fff;
  color: #000;
}

.btn--lg {
  min-width: 200px;
  padding: 14px 32px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
  min-height: 45px;
  padding: 14px;
  font-size: 16px;
}

.btn-center {
  margin: 20px 0;
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.header {
  position: relative;
  z-index: 100;
  background: var(--h-bg);
  border-bottom: 2px solid var(--gold);
}

.header .w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 15px;
}

.header__logo img {
  width: auto;
  height: 36px;
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
}

.header__nav a {
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.header__nav a:hover,
.header__nav a.active {
  border-bottom-color: var(--btn-bg);
  color: var(--btn-bg);
}

.header__btns {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mob-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--h-bg);
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mob-overlay.open .mob-menu {
  transform: translateX(0);
}

.mob-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-menu__logo img {
  width: auto;
  height: 28px;
}

.mob-close {
  padding: 4px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mob-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.mob-nav a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s, background-color 0.2s;
}

.mob-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--btn-bg);
}

.mob-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.mob-btns .btn {
  width: 100%;
}

.hero,
.page-hero {
  background: #042335;
  color: #fff;
}

.hero {
  padding: 50px 0 56px;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero__left {
  flex: 1;
  min-width: 0;
}

.hero__right {
  flex: 0 0 340px;
  text-align: center;
}

.hero__right img {
  width: min(280px, 100%);
  max-width: 300px;
  border-radius: 12px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero__desc {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.hero__stat {
  margin: 0;
}

.hero__stat-val {
  display: block;
  color: var(--btn-bg);
  font-size: 18px;
  font-weight: 800;
}

.hero__stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
}

.hero__bonus {
  margin-bottom: 22px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero__bonus strong {
  color: var(--btn-bg);
  font-size: 16px;
}

.hero__bonus-sub {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.hero__promo {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin-bottom: 26px;
}

.hero__promo-code {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 12px 20px;
  border: 1.5px dashed var(--btn-bg);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--btn-bg);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-align: center;
}

.hero__promo-copy {
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--btn-bg);
  color: #000;
  font: 700 12px/1 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.hero__dl {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero__tabs {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.hero__tab {
  padding: 10px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font: 600 13px/1 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--tr), background-color var(--tr), border-color var(--tr);
}

.hero__tab.active {
  border-color: var(--btn-bg);
  background: var(--btn-bg);
  color: #000;
}

.page-hero {
  padding: 44px 0 50px;
}

.crumb,
.page-hero__crumb {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.crumb strong,
.page-hero__crumb strong {
  color: var(--btn-bg);
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 700px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.page-hero a {
  color: var(--btn-bg);
}

.anchors {
  position: sticky;
  top: 0;
  z-index: 90;
  overflow-x: auto;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.anchors .w {
  display: flex;
  gap: 6px;
}

.label {
  padding: 7px 12px;
  color: #59636f;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.anchors a {
  display: block;
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  background: #f0f0f2;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}

.anchors a:hover {
  background: var(--btn-bg);
  color: #000;
}

.sec {
  padding: 30px 0;
}

.sec + .sec {
  border-top: 1px solid #e8e8e8;
}

h2.t {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

h2.t::before {
  position: absolute;
  bottom: 0;
  display: block;
  width: 32px;
  border-bottom: 2px solid var(--accent);
  content: "";
}

h3.st {
  margin: 24px 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.sec-img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.step-img {
  width: 100%;
  max-width: 500px;
  margin: -8px 0 20px 48px;
  border-radius: var(--radius);
}

.fg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin: 20px 0 24px;
}

.fc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.fc__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
}

.fc__lbl {
  margin: 0 0 3px;
  color: #606a75;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.fc__val {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.step__n {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--btn-bg);
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.step__title {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700;
}

.step__desc {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.55;
}

.sec p a,
.page-hero p a,
.step__desc a,
.fl__item a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ibox {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.ibox ol {
  margin: 0;
  padding: 0;
  counter-reset: i;
}

.ibox li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
  counter-increment: i;
}

.ibox li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  content: counter(i);
}

.fl__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.fl__item::before {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.fl__item strong {
  font-size: 14px;
}

.fl__item span {
  color: #555;
  font-size: 13px;
}

.fl__item.text-white span {
  color: rgba(255, 255, 255, 0.92);
}

.cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 24px;
}

.cmp__col {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.cmp__col h3,
.cmp__col h4 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--btn-bg);
  font-size: 14px;
  font-weight: 700;
}

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

.cmp__col li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.cmp__col li::before {
  position: absolute;
  left: 0;
  color: var(--btn-bg);
  font-weight: 700;
  content: "•";
}

.sg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0 24px;
}

.sc {
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.sc__lbl {
  margin: 0 0 4px;
  color: #606a75;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.sc__val {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.dt {
  width: 100%;
  margin-bottom: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}

.dt table {
  width: 100%;
  min-width: max(100%, 560px);
  border-collapse: collapse;
}

.dt caption {
  padding: 10px 14px;
  background: rgba(29, 39, 48, 0.06);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.dt th {
  padding: 10px 14px;
  background: rgba(29, 39, 48, 0.03);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.dt td {
  padding: 10px 14px;
  font-size: 14px;
}

.dt th:not(:last-child),
.dt td:not(:last-child) {
  border-right: 1px solid var(--accent);
}

.dt tr:not(:last-child) {
  border-bottom: 1px solid var(--accent);
}

.dt tr td:first-child {
  min-width: 140px;
  background: rgba(29, 39, 48, 0.03);
  font-weight: 600;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.screenshots img,
.two-col__img img {
  width: 100%;
  border-radius: var(--radius);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 16px 0 24px;
}

.game-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: cover;
}

.game-sec {
  margin-bottom: 16px;
}

.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.provider-chip {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.text-white {
  color: #fff;
}

.func-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.func-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.func-card img {
  width: 100%;
}

.func-card p {
  margin: 0;
  padding: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.two-col {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.two-col__text {
  flex: 1;
}

.two-col__img {
  flex: 0 0 380px;
}

.faq details {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.faq details::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid currentColor;
  opacity: 0.3;
  content: "";
}

.faq details[open] .faq__icon,
.faq details[open] .fi {
  rotate: 180deg;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::marker {
  content: "";
}

.faq h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.faq__question {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.faq__icon,
.fi {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: rotate 0.25s;
}

.faq__icon svg *,
.fi svg * {
  fill: currentColor;
}

.faq .ans {
  margin: 0;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.err {
  padding: 60px 0 80px;
  text-align: center;
}

.err__code {
  margin-bottom: 8px;
  color: var(--btn-bg);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
}

.err h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.err p {
  margin: 0 0 28px;
  color: #666;
  font-size: 15px;
}

.err__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.err__links {
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.err__links p {
  margin-bottom: 12px;
  color: #999;
  font-size: 13px;
}

.err__links a {
  display: inline-block;
  margin: 0 8px 8px;
  padding: 6px 14px;
  border-radius: 16px;
  background: #f0f0f2;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, background-color 0.2s;
}

.err__links a:hover {
  background: var(--btn-bg);
  color: #000;
}

.footer {
  padding: 40px 0 24px;
  background: var(--ft-bg);
  color: var(--ft-text);
}

.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-logo img {
  width: auto;
  height: 32px;
}

.ft-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ft-nav a {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.ft-nav a:hover {
  color: var(--btn-bg);
}

.ft-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px 0;
}

.ft-legal a {
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 0.2s, border-color 0.2s;
}

.ft-legal a:hover {
  border-color: var(--btn-bg);
  color: #fff;
}

.ft-info {
  display: flex;
  gap: 30px;
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-info__block {
  flex: 1;
}

.ft-info__block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
}

.ft-info__block strong {
  color: rgba(255, 255, 255, 0.7);
}

.ft-info__contact {
  flex-shrink: 0;
}

.ft-info__contact p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.ft-social {
  display: flex;
  gap: 10px;
}

.ft-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, background-color 0.2s;
}

.ft-social__icon:hover {
  background: var(--btn-bg);
  color: #000;
}

.ft-badge {
  padding: 4px 10px;
  border-radius: 4px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.ft-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero__top {
    flex-direction: column;
  }

  .hero__right {
    flex: unset;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .step-img {
    max-width: 100%;
    margin-left: 0;
  }

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

  .two-col {
    flex-direction: column;
  }

  .two-col__img {
    flex: unset;
    width: 100%;
  }

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

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

  .ft-info {
    flex-direction: column;
    gap: 16px;
  }

  .ft-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }

  .ft-copy {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .header__btns {
    display: none;
  }

  .header__logo img {
    height: 28px;
  }

  .hero__dl {
    flex-direction: column;
  }

  .hero__dl .btn,
  .hero__promo-code {
    width: 100%;
  }

  .hero__promo {
    flex-direction: column;
    max-width: 100%;
  }

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

  .err__code {
    font-size: 80px;
  }

  .err__btns {
    flex-direction: column;
    align-items: center;
  }
}
