:root {
  --color-primary: #fcb900;
  --color-accent: #ff6900;
  --color-bg: #231c12;
  --color-bg-2: #191208;
  --color-text: #ffffff;
  --color-secondary: #00d084;
  --color-cta: #ff6900;
  --color-cta-hover: #f05a00;
  --color-muted: #e5cda9;
  --container: 1160px;
  --radius: 8px;
  --line: rgba(255, 255, 255, .13);
  --panel: rgba(255, 255, 255, .075);
  --shadow: 0 18px 54px rgba(0, 0, 0, .36);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(252, 185, 0, .18), transparent 36rem),
    linear-gradient(180deg, var(--color-bg), var(--color-bg-2));
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: calc(100vw - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(16px, calc((100vw - var(--container)) / 2));
  background: rgba(25, 18, 8, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

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

.nav a,
.site-footer a {
  color: var(--color-muted);
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--color-cta), var(--color-cta-hover));
  color: #1d1005;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 105, 0, .27);
  transition: transform .18s ease, filter .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-header {
  min-height: 40px;
  padding: 9px 15px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vw, 76px) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 18, 8, .18), rgba(25, 18, 8, .95)),
    url("../images/1.png") center / cover no-repeat;
  opacity: .34;
}

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

.hero-copy,
.card,
.faq-wrap,
.payment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 640px;
  color: #f7ead5;
  font-size: 1.12rem;
}

.bonus-badge {
  display: grid;
  gap: 3px;
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(252, 185, 0, .95), rgba(255, 105, 0, .95));
  color: #1c1207;
}

.bonus-badge span {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-badge strong {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.hero-actions,
.trust-row,
.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-bottom: 22px;
}

.trust-row span,
.provider-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  color: #f5dfbf;
  font-weight: 800;
  font-size: .9rem;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .2);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 72% center;
}

.hero-visual figcaption {
  padding: 12px 16px;
  color: var(--color-muted);
  font-size: .9rem;
}

.section {
  padding: clamp(44px, 8vw, 84px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head p,
.compact-grid p {
  color: #ecd8bb;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 22px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #1d1005;
  font-weight: 900;
}

.step-card p,
.bonus-table p {
  color: #ecd8bb;
}

.bonus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.bonus-layout > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  margin: 14px 0 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .18);
}

th,
td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--color-muted);
  width: 34%;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.games-band {
  background: rgba(0, 0, 0, .18);
  border-block: 1px solid var(--line);
}

.games-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.provider-row {
  margin-top: 20px;
}

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

.game {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.game img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .24s ease;
}

.game:hover img {
  transform: scale(1.05);
}

.game span {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 14px 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent);
  font-weight: 900;
}

.compact-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: start;
}

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

.payment-card {
  padding: 18px;
}

.payment-card strong,
.payment-card span {
  display: block;
}

.payment-card img {
  width: auto;
  height: 34px;
  margin-bottom: 12px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: #fff;
}

.payment-card span {
  margin-top: 6px;
  color: var(--color-muted);
}

.faq-section {
  padding-top: 0;
}

.faq-wrap {
  padding: clamp(22px, 4vw, 36px);
}

details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
  color: #ecd8bb;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .28);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding-block: 26px;
}

.footer-inner p {
  margin: 0;
  color: var(--color-muted);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

  .nav {
    display: none;
  }

  .hero-grid,
  .bonus-layout,
  .games-layout,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 16px;
  }

  .wordmark {
    font-size: 1.2rem;
  }

  .btn-header {
    min-height: 38px;
    padding-inline: 12px;
    font-size: .9rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy {
    padding: 20px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}
