:root {
  --void: #07080C;
  --ink: #0E1118;
  --panel: #161B24;
  --line: rgba(212, 184, 122, 0.16);
  --line-strong: rgba(232, 201, 160, 0.28);
  --text: #F3EDE4;
  --muted: #A3988A;
  --gold: #D4B87A;
  --gold-bright: #F0D5A0;
  --bordeaux: #9E2A3A;
  --rose: #C75B6A;
  --sage: #4A8B7A;
  --shell: 1160px;
  --radius: 14px;
  --font-head: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

html:not(.age-ok) body {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.topbar {
  background: linear-gradient(90deg, #141018 0%, #1C1418 48%, #12161C 100%);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
  padding-block: 7px;
}

.topbar__notice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.topbar__badge {
  flex: none;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 21px;
  padding-inline: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--bordeaux));
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
  color: var(--muted);
}

.topbar__meta li {
  position: relative;
  white-space: nowrap;
}

.topbar__meta li + li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1px;
  border-radius: 50%;
  background: var(--line-strong);
}

.topbar__meta a {
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1px dotted rgba(240, 213, 160, 0.45);
}

.topbar__meta a:hover {
  color: #fff;
}

.header {
  position: relative;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: radial-gradient(120% 120% at 28% 12%, #2A2228 0%, #161018 70%);
  border: 1px solid rgba(212, 184, 122, 0.42);
  box-shadow: 0 8px 22px -12px rgba(158, 42, 58, 0.7);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__name {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.brand__name em {
  font-style: normal;
  color: var(--gold-bright);
}

.brand__tag {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  display: block;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link.is-current {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.burger__box {
  display: block;
  position: relative;
  width: 22px;
  height: 15px;
}

.burger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.15s ease, top 0.2s ease;
}

.burger__bar:nth-child(1) {
  top: 0;
}

.burger__bar:nth-child(2) {
  top: 6.5px;
}

.burger__bar:nth-child(3) {
  top: 13px;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 220px at 8% -40%, rgba(158, 42, 58, 0.28), transparent 62%),
    radial-gradient(520px 200px at 92% 0%, rgba(212, 184, 122, 0.16), transparent 60%),
    linear-gradient(180deg, #12151C 0%, var(--void) 100%);
  border-bottom: 1px solid var(--line);
}

.hero__glow {
  position: absolute;
  top: -90px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(240, 213, 160, 0.14), transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-block: 34px 36px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.32);
  background: rgba(212, 184, 122, 0.08);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.hero__title {
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 700;
  color: #fff;
}

.hero__title span {
  color: var(--gold-bright);
}

.hero__lead {
  margin-top: 12px;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--muted);
}

.listing {
  padding-block: 46px 66px;
}

.listing__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.listing__title {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  color: #fff;
}

.listing__note {
  margin-top: 9px;
  max-width: 640px;
  font-size: 14.5px;
  color: var(--muted);
}

.listing__stamp {
  flex: none;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(212, 184, 122, 0.08);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table__head,
.offer__row {
  display: grid;
  grid-template-columns: 56px 136px minmax(120px, 1fr) minmax(200px, 1.3fr) 92px 182px;
  align-items: center;
  gap: 18px;
}

.table__head {
  padding: 0 20px 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #151A23 0%, #10141B 100%);
  overflow: hidden;
}

.offer--top {
  border-color: rgba(212, 184, 122, 0.4);
  box-shadow: 0 20px 44px -30px rgba(212, 184, 122, 0.85);
}

.offer__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 14px;
  border-radius: 0 0 12px 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer__row {
  padding: 22px 20px;
}

.offer__rank span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(212, 184, 122, 0.08);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-bright);
}

.offer__logo {
  display: grid;
  place-items: center;
  height: 66px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.offer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.offer__name {
  font-size: 19px;
  color: #fff;
}

.offer__meta {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--muted);
}

.cell__label {
  display: none;
}

.offer__bonus-value {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.offer__bonus-extra {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}

.offer__score-value {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(212, 184, 122, 0.45);
  background: radial-gradient(80% 80% at 50% 20%, rgba(212, 184, 122, 0.16), transparent 70%);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: filter 0.2s ease;
}

.btn:hover {
  filter: brightness(1.07);
}

.offer__cta-note {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
}

.offer__terms {
  padding: 14px 20px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 5, 8, 0.9);
  backdrop-filter: blur(6px);
}

.age-ok .gate {
  display: none;
}

.gate__panel {
  width: 100%;
  max-width: 480px;
  padding: 30px 28px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    radial-gradient(600px 220px at 50% -30%, rgba(158, 42, 58, 0.35), transparent 65%),
    linear-gradient(180deg, #151A23 0%, #0D1116 100%);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.gate__badge {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 2px solid rgba(212, 184, 122, 0.5);
  background: rgba(212, 184, 122, 0.12);
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--gold-bright);
}

.gate__badge--stop {
  border-color: rgba(199, 91, 106, 0.6);
  background: rgba(158, 42, 58, 0.18);
  color: #F0A9B2;
}

.gate__title {
  font-size: 25px;
  color: #fff;
}

.gate__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.gate__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gate__ghost:hover {
  color: var(--text);
  border-color: var(--gold);
}

.gate__note {
  margin-top: 18px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
}

.gate__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1px dotted rgba(240, 213, 160, 0.5);
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  border-top: 1px solid var(--line-strong);
  background: rgba(13, 17, 22, 0.98);
  box-shadow: 0 -20px 44px -30px rgba(0, 0, 0, 0.95);
}

.cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
}

.cookie__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie__text a {
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1px dotted rgba(240, 213, 160, 0.5);
}

.cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.cookie__actions .btn,
.cookie__actions .gate__ghost {
  width: auto;
  min-height: 42px;
  padding-inline: 24px;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0C0F14 0%, #08090D 100%);
  padding-block: 46px 26px;
}

.footer__care {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}

.footer__care-block {
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.footer__care-block--age {
  border-color: rgba(199, 91, 106, 0.32);
  background: linear-gradient(160deg, rgba(158, 42, 58, 0.14), rgba(255, 255, 255, 0.02));
}

.footer__care-title {
  font-size: 19px;
  color: #fff;
}

.footer__care-text {
  margin-top: 11px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.footer__care-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer__care-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--muted);
}

.footer__care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

.footer__care-list a {
  color: var(--gold-bright);
  font-weight: 600;
}

.footer__age-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 2px solid rgba(199, 91, 106, 0.55);
  background: rgba(158, 42, 58, 0.2);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #F0A9B2;
}

.footer__age-icon--sm {
  flex: none;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.footer__badges li {
  display: grid;
  place-items: center;
  min-width: 130px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.footer__badges img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 30px;
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer__brand-text {
  margin-top: 15px;
  max-width: 330px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.footer__col-title {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.footer__col ul {
  display: grid;
  gap: 9px;
}

.footer__col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__disclosure {
  margin-top: 32px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

.footer__disclosure strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.footer__age-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(199, 91, 106, 0.3);
  border-radius: 14px;
  background: rgba(158, 42, 58, 0.1);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .table__head,
  .offer__row {
    grid-template-columns: 52px 118px minmax(100px, 1fr) minmax(170px, 1.2fr) 78px 158px;
    gap: 14px;
  }

  .offer__score-value {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .btn {
    font-size: 14px;
    padding-inline: 12px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: inline-flex;
    order: 3;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 39;
    display: none;
    padding: 10px 22px 18px;
    background: #12151C;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.9);
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }

  .table__head {
    display: none;
  }

  .offer__row {
    grid-template-columns: 52px minmax(0, 1fr) 58px;
    grid-template-areas:
      "rank logo score"
      "brand brand brand"
      "bonus bonus bonus"
      "cta cta cta";
    gap: 16px 14px;
    padding: 20px 18px;
  }

  .offer__rank {
    grid-area: rank;
  }

  .offer__logo {
    grid-area: logo;
    justify-self: start;
    width: 100%;
    max-width: 150px;
    height: 58px;
  }

  .offer__brand {
    grid-area: brand;
  }

  .offer__bonus {
    grid-area: bonus;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .offer__score {
    grid-area: score;
    justify-self: end;
  }

  .offer__cta {
    grid-area: cta;
  }

  .cell__label {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .offer__score .cell__label {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-block: 9px;
  }

  .topbar__notice {
    align-items: flex-start;
  }

  .topbar__badge {
    margin-top: 2px;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand__name {
    font-size: 20px;
  }

  .hero__inner {
    padding-block: 28px 30px;
  }

  .listing {
    padding-block: 36px 50px;
  }

  .listing__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .offer__ribbon {
    position: static;
    display: block;
    border-radius: 0;
    text-align: center;
  }

  .footer {
    padding-block: 34px 22px;
  }

  .footer__care {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
    padding-top: 26px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie__actions .btn,
  .cookie__actions .gate__ghost {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .shell {
    padding-inline: 16px;
  }

  .nav {
    padding-inline: 16px;
  }

  .topbar__meta {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .offer__row {
    grid-template-columns: 46px minmax(0, 1fr) 50px;
    gap: 14px 12px;
    padding: 18px 14px;
  }

  .offer__rank span {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .offer__logo {
    height: 52px;
    padding: 6px 10px;
  }

  .offer__score-value {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .offer__bonus-value {
    font-size: 14.5px;
  }

  .offer__terms {
    padding: 12px 14px 14px;
    font-size: 12px;
  }

  .gate {
    padding: 16px;
  }

  .gate__panel {
    padding: 26px 20px 22px;
  }

  .gate__title {
    font-size: 22px;
  }

  .footer__badges {
    gap: 10px;
    padding: 14px;
  }

  .footer__badges li {
    min-width: calc(50% - 5px);
    flex: 1;
  }

  .footer__age-row {
    align-items: flex-start;
    padding: 14px 16px;
  }
}

.page-hero .hero__inner {
  max-width: 860px;
  padding-block: 38px 40px;
}

.page-content {
  padding-block: 48px 70px;
}

.page-content__inner {
  max-width: 940px;
}

.prose {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.86), rgba(14, 17, 24, 0.9));
  box-shadow: 0 28px 70px -52px rgba(212, 184, 122, 0.75);
}

.prose h2 {
  margin-top: 34px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: #fff;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 17px;
  color: var(--gold-bright);
}

.prose p {
  margin-top: 12px;
  color: var(--muted);
}

.prose > ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.prose > ul li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.prose > ul li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

.legal-copy h2 {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.info-card {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.info-card p {
  margin-top: 8px;
  font-size: 14px;
}

.page-callout {
  margin-top: 28px;
  padding: 17px 19px;
  border: 1px solid rgba(212, 184, 122, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(212, 184, 122, 0.07);
  color: var(--muted);
}

.page-callout strong {
  color: var(--gold-bright);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(212, 184, 122, 0.34);
  border-radius: 14px;
  background: rgba(212, 184, 122, 0.07);
}

.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card strong {
  color: var(--gold-bright);
  font-size: clamp(18px, 4vw, 23px);
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .page-hero .hero__inner {
    padding-block: 30px 32px;
  }

  .page-content {
    padding-block: 34px 50px;
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .prose {
    border-radius: 16px;
  }
}
