: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, .38);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 208, 132, .14), transparent 30rem),
    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);
}

.brand img {
  width: 150px;
  height: auto;
}

.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-small {
  min-height: 40px;
  padding: 9px 15px;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 18, 8, .96), rgba(25, 18, 8, .64) 46%, rgba(25, 18, 8, .3)),
    linear-gradient(180deg, rgba(25, 18, 8, .08), rgba(25, 18, 8, .95)),
    url("../images/2.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  padding-block: clamp(84px, 16vw, 170px) 54px;
}

.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 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.55rem, 7vw, 5.3rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 720px;
  color: #f3dfc2;
  font-size: 1.16rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 26px 0;
}

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

.hero-panel div {
  padding: 16px;
}

.hero-panel span,
.feature-card span,
.mini-muted {
  display: block;
  color: var(--color-muted);
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.bonus-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
}

.section-copy p,
.section-head p,
.highlight p,
.faq-card p,
.payment-layout p {
  color: #ecd8bb;
}

.bonus-grid > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

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

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

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);
}

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

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

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

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

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

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

.provider-row,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

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

.feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 22px;
}

.feature-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 1.12rem;
}

.feature-card span {
  margin-top: 6px;
}

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

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

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
}

.payment-row {
  margin-top: 0;
}

.payment-row span {
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-row img {
  width: auto;
  height: 24px;
  padding: 3px 5px;
  border-radius: 5px;
  background: #fff;
}

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

.faq-card {
  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;
}

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

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

.footer-inner img {
  width: 150px;
  height: auto;
}

.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: 1000px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .nav {
    display: none;
  }

  .hero-panel,
  .bonus-grid,
  .feature-layout,
  .payment-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .brand img {
    width: 126px;
  }

  .btn-small {
    padding-inline: 12px;
    font-size: .9rem;
  }

  .hero-content {
    padding-block: 92px 42px;
  }

  .hero-actions {
    display: grid;
  }

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

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