:root {
  --ink: #17263a;
  --ink-soft: #21344d;
  --text: #202936;
  --muted: #667085;
  --paper: #f5f2ea;
  --white: #ffffff;
  --blue: #245c9e;
  --blue-dark: #1b477b;
  --gold: #b58a42;
  --gold-soft: #e8ddc7;
  --green: #39705a;
  --red: #a85448;
  --line: #ddd8cc;
  --line-dark: rgba(255, 255, 255, 0.15);
  --radius: 18px;
  --shadow: 0 18px 48px rgba(23, 38, 58, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

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

p {
  margin: 0 0 1.15rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.55rem, 5vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

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

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid #6f9ed0;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 38, 58, 0.1);
  background: rgba(245, 242, 234, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
}

.menu-button {
  display: grid;
  gap: 6px;
  align-content: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 26px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.desktop-nav a {
  color: #465365;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.age-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cbbda4;
  border-radius: 50%;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 38, 58, 0.18);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #16263a;
}

.button-gold:hover {
  border-color: #c49a52;
  background: #c49a52;
}

.mobile-menu {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  padding: 18px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 105px 0 95px;
  background: var(--ink);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(90deg, transparent 49px, rgba(255,255,255,.32) 50px, transparent 51px),
    linear-gradient(0deg, transparent 49px, rgba(255,255,255,.16) 50px, transparent 51px);
  background-size: 100px 100px;
  mask-image: linear-gradient(90deg, transparent 0%, black 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.panel-label {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.light {
  color: #dce5ef;
}

.hero-lead {
  max-width: 720px;
  margin-top: 28px;
  color: #cbd5df;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
}

.light-link {
  color: var(--white);
}

.text-link:hover span {
  transform: translateX(4px);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: #d8e0e8;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
}

.updated {
  margin-top: 23px;
  color: #8fa0b3;
  font-size: 13px;
}

.hero-comparison {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.comparison-label {
  margin-bottom: 13px;
  color: #a9b7c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mini-offer {
  display: grid;
  grid-template-columns: 32px 112px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 98px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #f9f7f1;
}

.mini-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.mini-offer img {
  width: 105px;
  height: 54px;
  object-fit: contain;
}

.mini-offer div {
  display: grid;
}

.mini-offer strong {
  color: var(--ink);
  font-size: 21px;
}

.mini-offer div span {
  color: var(--muted);
  font-size: 12px;
}

.comparison-note {
  margin-top: 16px;
  padding-left: 13px;
  border-left: 2px solid var(--gold);
  color: #cbd5df;
  font-family: Georgia, serif;
  font-size: 15px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.faq-heading h2 {
  margin-top: 12px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.section-kicker,
.panel-label {
  color: var(--blue);
}

.section-kicker.gold {
  color: #d0a75f;
}

.offer-section {
  background: var(--paper);
}

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

.offer-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) 170px minmax(310px, 1fr) 185px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 38, 58, 0.045);
}

.offer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.offer-brand img {
  width: 110px;
  height: 62px;
  padding: 6px;
  object-fit: contain;
}

.offer-brand h3 {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.offer-brand span {
  color: var(--muted);
  font-size: 11px;
}

.offer-main {
  display: grid;
  gap: 2px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.offer-percent {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.offer-main strong {
  color: var(--muted);
  font-size: 12px;
}

.offer-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 0;
}

.offer-facts div {
  display: grid;
}

.offer-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.offer-action {
  display: grid;
  gap: 6px;
  text-align: center;
}

.offer-action small {
  color: var(--muted);
  font-size: 10px;
}

.offer-details {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.offer-details summary {
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.offer-details p {
  max-width: 900px;
  margin: 12px 0 0;
}

.method-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.method-intro,
.method-item {
  min-height: 210px;
  padding: 28px;
  background: #eee9de;
}

.method-intro h3 {
  margin: 10px 0 12px;
}

.method-intro p,
.method-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.method-item {
  display: grid;
  align-content: start;
  background: var(--white);
}

.method-item > span {
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.method-item strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.dark-section {
  background: var(--ink);
  color: #cbd5df;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 90px;
}

.section-lead {
  margin: 26px 0 42px;
  color: #b7c4d1;
  font-size: 20px;
}

.dark-lead {
  color: var(--muted);
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-block h3,
.text-block h3 {
  margin-bottom: 12px;
}

.legal-block p {
  margin: 0;
  color: #b7c4d1;
}

.license-panel {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
}

.license-panel .panel-label {
  color: #d0a75f;
}

.license-row {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.license-row > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.license-row strong {
  color: var(--white);
}

.license-row p {
  margin: 3px 0 0;
  color: #aebbc9;
  font-size: 13px;
}

.warning-card {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(181,138,66,.55);
  border-radius: 12px;
  background: rgba(181,138,66,.09);
}

.warning-card strong {
  color: #e4c68f;
}

.warning-card p {
  margin: 5px 0 0;
  color: #c6d0da;
  font-size: 13px;
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 24px;
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: #aebbc9;
  text-align: center;
}

.media-placeholder span,
.media-placeholder small {
  grid-area: 1 / 1;
}

.media-placeholder span {
  transform: translateY(-12px);
  font-family: Georgia, serif;
}

.media-placeholder small {
  transform: translateY(17px);
  color: #728499;
}

.verification-grid {
  align-items: start;
}

.text-block {
  max-width: 760px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.text-block p {
  margin: 0;
  color: var(--muted);
}

.document-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.document-card h3 {
  margin: 12px 0 24px;
}

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

.document-card li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.document-card li span {
  color: var(--gold);
  font-size: 11px;
}

.inline-alert {
  margin-top: 24px;
  padding: 16px;
  border-left: 3px solid var(--red);
  background: #f7eeeb;
  color: #75413b;
  font-size: 13px;
  font-weight: 700;
}

.bonus-section {
  background: #e9e4d9;
}

.bonus-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.bonus-copy h3 {
  margin: 0 0 14px;
}

.bonus-copy h3:not(:first-child) {
  margin-top: 38px;
}

.bonus-copy p {
  color: var(--muted);
}

.bonus-calculator {
  align-self: start;
  overflow: hidden;
  border: 1px solid #d1c9b9;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bonus-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f6f3ec;
}

.bonus-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.bonus-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.formula-card {
  padding: 32px;
}

.formula-caption {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.35fr;
  gap: 14px;
  align-items: end;
  margin-top: 28px;
}

.formula > div {
  display: grid;
}

.formula small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.formula strong {
  color: var(--ink);
  font-size: 28px;
}

.formula > span {
  padding-bottom: 7px;
  color: var(--gold);
  font-weight: 900;
}

.formula-result {
  padding: 13px;
  border-radius: 10px;
  background: var(--ink);
}

.formula-result small {
  color: #aebbc9;
}

.formula-result strong {
  color: var(--white);
}

.formula-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.formula-facts span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.no-deposit {
  display: grid;
  grid-template-columns: 240px 1fr 250px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 52px;
  padding: 25px;
  border: 1px solid #d1c9b9;
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
}

.no-deposit > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.no-deposit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-dot.negative {
  background: var(--red);
}

.status-dot.neutral {
  background: var(--gold);
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.payment-logos div {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.payment-logos img {
  width: 72px;
  height: 36px;
  object-fit: contain;
}

.asset-disclaimer {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-top: 52px;
}

.payment-grid > div {
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}

.payment-grid h3 {
  margin-bottom: 13px;
}

.payment-grid p {
  color: var(--muted);
}

.withdrawal-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 155px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.flow-step strong {
  align-self: end;
  color: var(--ink);
}

.flow-step small {
  color: var(--muted);
}

.flow-step i {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  font-style: normal;
  transform: translateY(-50%);
}

.wide-text {
  max-width: 900px;
  margin-top: 36px;
}

.guide-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin-left: auto;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 44px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 0 0 54px;
}

.timeline-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold);
  font-weight: 900;
}

.timeline-step > div {
  padding-top: 10px;
}

.timeline-step h3 {
  margin-bottom: 13px;
}

.timeline-step p {
  max-width: 760px;
  color: var(--muted);
}

.game-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.game-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.game-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.game-strip figcaption {
  min-height: 41px;
  padding: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.game-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.decision-section {
  background: var(--paper);
}

.tradeoff-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.tradeoff-head,
.tradeoff-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tradeoff-head {
  background: var(--ink);
  color: var(--white);
}

.tradeoff-head span {
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tradeoff-row {
  border-top: 1px solid var(--line);
}

.tradeoff-row > * {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.tradeoff-row > *:last-child {
  border-right: 0;
}

.tradeoff-row strong {
  color: var(--green);
}

.tradeoff-row span:nth-child(2) {
  color: var(--gold);
  font-weight: 750;
}

.tradeoff-row span:last-child {
  color: var(--red);
}

.responsible-panel {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  padding: 38px;
  border-radius: 20px;
  background: var(--ink);
  color: #c3cfda;
}

.responsible-panel > div {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.large-age {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(208,167,95,.7);
  border-radius: 50%;
  color: #d9b97b;
  font-size: 21px;
  font-weight: 900;
}

.responsible-panel h3 {
  color: var(--white);
}

.responsible-panel p {
  margin: 9px 0 0;
}

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

.responsible-panel li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}

.responsible-panel li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "✓";
}

.faq-section {
  background: var(--white);
}

.faq-container {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-heading p {
  margin-top: 20px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 17px;
  letter-spacing: 0;
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-item i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-style: normal;
}

.faq-answer {
  max-width: 720px;
  padding: 0 55px 22px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.final-section {
  padding: 82px 0;
  border-top: 4px solid var(--gold);
  background: var(--ink);
  color: #c7d1db;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 90px;
  align-items: center;
}

.final-section h2 {
  margin: 12px 0 18px;
  color: var(--white);
}

.final-section p {
  margin: 0;
}

.final-actions {
  display: grid;
  gap: 17px;
  justify-items: start;
}

.final-actions small {
  color: #8fa0b3;
}

.site-footer {
  padding: 75px 0 24px;
  border-top: 1px solid var(--line-dark);
  background: #101d2e;
  color: #99a8b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .75fr .75fr 1fr;
  gap: 55px;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.footer-brand p {
  max-width: 380px;
  margin-top: 20px;
  font-size: 13px;
}

.footer-title {
  display: block;
  margin-bottom: 17px;
  color: var(--white);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-warning {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

.footer-warning p {
  font-size: 13px;
}

.support-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 52px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.support-logos img {
  width: 110px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .62;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  font-size: 11px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .hero-grid,
  .split-grid,
  .bonus-layout {
    gap: 48px;
  }

  .offer-card {
    grid-template-columns: 1fr 160px 1fr;
  }

  .offer-action {
    grid-column: 3;
  }

  .offer-facts {
    grid-column: 1 / 3;
    grid-row: 2;
  }

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

  .method-intro {
    grid-column: 1 / -1;
  }

  .no-deposit {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(100% - 32px, 680px);
  }

  .header-actions .age-mark {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 78px 0;
  }

  .hero-grid,
  .split-grid,
  .bonus-layout,
  .faq-container,
  .final-grid,
  .responsible-panel {
    grid-template-columns: 1fr;
  }

  .hero-comparison {
    margin-top: 15px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .offer-card {
    grid-template-columns: 1fr 1fr;
  }

  .offer-brand {
    grid-column: 1 / -1;
  }

  .offer-main {
    border-left: 0;
    padding-left: 0;
  }

  .offer-facts {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .offer-action {
    grid-column: auto;
    align-self: end;
  }

  .payment-logos {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .withdrawal-flow {
    grid-template-columns: 1fr 1fr;
  }

  .flow-step:nth-child(2) {
    border-right: 0;
  }

  .flow-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .flow-step i {
    display: none;
  }

  .game-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-heading {
    position: static;
  }

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

  .footer-warning {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-actions .button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-actions,
  .trust-list {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mini-offer {
    grid-template-columns: 24px 90px 1fr;
  }

  .mini-offer img {
    width: 84px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .offer-brand,
  .offer-facts,
  .offer-details {
    grid-column: auto;
  }

  .offer-brand {
    align-items: flex-start;
  }

  .offer-brand img {
    width: 90px;
  }

  .offer-main {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .offer-action {
    grid-column: auto;
  }

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

  .method-intro {
    grid-column: auto;
  }

  .method-intro,
  .method-item {
    min-height: auto;
  }

  .method-item > span {
    margin-bottom: 15px;
  }

  .license-panel,
  .document-card,
  .formula-card {
    padding: 23px;
  }

  .formula {
    grid-template-columns: 1fr auto 1fr;
  }

  .formula > span:nth-of-type(2) {
    grid-column: 1 / -1;
    padding: 0;
    text-align: center;
  }

  .formula-result {
    grid-column: 1 / -1;
  }

  .no-deposit {
    grid-template-columns: 1fr;
  }

  .payment-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .withdrawal-flow {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    margin-left: 0;
  }

  .timeline::before {
    left: 29px;
  }

  .timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .timeline-number {
    width: 58px;
    height: 58px;
  }

  .game-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .tradeoff-head {
    display: none;
  }

  .tradeoff-row {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .tradeoff-row > * {
    padding: 7px 18px;
    border-right: 0;
  }

  .responsible-panel {
    gap: 25px;
    padding: 25px;
  }

  .responsible-panel > div {
    display: grid;
  }

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

  .footer-brand,
  .footer-warning {
    grid-column: 1 / -1;
  }

  .support-logos {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
