:root {
  --bg: #0d1110;
  --panel: #141b18;
  --panel-2: #1b231f;
  --text: #f5f2e8;
  --muted: #b8c0b3;
  --green: #18b56b;
  --green-dark: #0b6d46;
  --gold: #f5b942;
  --red: #d94d45;
  --line: rgba(245, 242, 232, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.6;
}

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

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

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 40px;
  padding: 8px 18px;
  background: #211914;
  border-bottom: 1px solid rgba(245, 185, 66, 0.32);
  color: #ffe6aa;
  font-size: 13px;
}

.notice p {
  margin: 0;
}

.icon-btn,
.menu-toggle {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(13, 17, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #03140d;
}

.brand-name {
  color: var(--gold);
  font-size: 26px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 8px;
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding: clamp(40px, 6vw, 76px) clamp(18px, 4vw, 56px) 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(13, 17, 16, 0), #0d1110);
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.btn-primary {
  background: var(--green);
  color: #02130c;
}

.btn-secondary {
  background: var(--gold);
  color: #1b1300;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-wide {
  width: 100%;
  margin-top: 14px;
}

.trust-row {
  margin-top: 24px;
  color: #d9dfd5;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.hero-media {
  justify-self: end;
}

.hero-media img {
  width: min(720px, 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-grid,
.two-column,
.game-grid {
  display: grid;
  gap: 16px;
}

.quick-grid {
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(18px, 4vw, 56px) 44px;
}

.quick-item,
.content-card,
.action-panel,
.game-grid article,
.tab-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.quick-item {
  display: grid;
  gap: 6px;
  min-height: 150px;
  padding: 18px;
}

.quick-icon {
  width: 40px;
  height: 30px;
  color: var(--gold);
  font-weight: 900;
}

.quick-item strong {
  font-size: 19px;
}

.quick-item small {
  color: var(--muted);
}

.split-section,
.feature-band,
.payments,
.game-section,
.support-section,
.faq {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.split-section > div:first-child p,
.band-copy p,
.section-head p,
.content-card p,
.game-grid p,
.support-section p,
.tab-panel p {
  color: var(--muted);
}

.action-panel {
  padding: 24px;
  background: var(--panel-2);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: -18px;
  margin-right: 10px;
  border-radius: 99px;
  background: var(--green);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: 24px;
  align-items: center;
  background: #101614;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps div {
  min-height: 150px;
  padding: 20px;
  border-radius: 8px;
  background: #f5f2e8;
  color: #151811;
}

.steps span {
  display: block;
  color: var(--red);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.steps p {
  margin: 18px 0 0;
  font-weight: 900;
}

.two-column {
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(52px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.content-card {
  min-height: 260px;
  padding: 26px;
}

.alert-card {
  background: #231b18;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
}

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

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.tab.active {
  background: var(--green);
  color: #03140d;
}

.tab-panel {
  max-width: 900px;
  padding: 24px;
}

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

.game-grid article {
  min-height: 210px;
  padding: 24px;
}

.game-grid article:nth-child(2) {
  background: #17201f;
}

.game-grid article:nth-child(3) {
  background: #211a19;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: #f5f2e8;
  color: #141812;
}

.support-section .section-kicker {
  color: var(--red);
}

.support-section p {
  color: #374037;
  font-size: 19px;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 12px 0 22px;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 44px clamp(18px, 4vw, 56px) 88px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 14px;
}

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

.footer-links a {
  font-weight: 800;
}

.mobile-actions {
  display: none;
}

.page-hero {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(120deg, rgba(24, 181, 107, 0.15), rgba(245, 185, 66, 0.08)),
    #101614;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.article-body {
  max-width: 900px;
}

.article-body section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body a {
  color: var(--gold);
  font-weight: 800;
}

.side-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.link-list a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .feature-band,
  .support-section,
  .site-footer,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: stretch;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 65px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111713;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 34px;
  }

  .quick-grid,
  .two-column,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .notice {
    justify-content: space-between;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(13, 17, 16, 0.95);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--text);
    font-weight: 900;
  }

  .mobile-actions a:nth-child(2) {
    background: var(--green);
    color: #03140d;
  }
}
