:root {
  --green: #00a651;
  --green-dark: #007a3d;
  --green-light: #00c960;
  --green-glow: rgba(0,166,81,0.18);
  --gold: #f5c518;
  --gold-dark: #c9960a;
  --bg: #0a0f0d;
  --bg2: #111a14;
  --bg3: #162019;
  --card: #1a2620;
  --card2: #1f2e27;
  --border: #2a3d32;
  --text: #e8f0eb;
  --text-muted: #8aa898;
  --text-dim: #5a7868;
  --white: #ffffff;
  --red: #e53935;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-green: 0 0 24px rgba(0,166,81,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--green-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

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

/* ─── TOP BANNER ─────────────────────────────────── */
.top-banner {
  background: linear-gradient(90deg, var(--green-dark) 0%, #005a2b 50%, var(--green-dark) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-banner p {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}
.top-banner p span { color: var(--gold); }
.top-banner .btn-banner {
  display: inline-block;
  margin-left: 18px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: .85rem;
  padding: 6px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, transform .1s;
  border: none;
  vertical-align: middle;
}
.top-banner .btn-banner:hover { background: var(--gold-dark); transform: scale(1.04); }

/* ─── HEADER / NAV ───────────────────────────────── */
header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 53px;
  z-index: 999;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 16px;
}

/* ─── LOGO ───────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-text .l1 { color: var(--green-light); }
.logo-text .l2 { color: var(--gold); font-size: .75em; display: block; letter-spacing: .08em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--white); background: var(--green-glow); }

.btn-cta {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}
.btn-cta:hover { background: var(--green-dark); transform: scale(1.04); color: var(--white); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; }
.mobile-nav { display: none; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 60%, #0d1f15 100%);
  padding: 64px 20px 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,166,81,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: var(--green-glow);
  border: 1px solid var(--green);
  color: var(--green-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--green-light); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-bonus-box {
  display: inline-block;
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 22px 36px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-green);
}
.hero-bonus-box .amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-bonus-box .sub {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 4px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--green); color: var(--green-light); }

/* game badges strip */
.game-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.game-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.game-badge .icon { color: var(--green-light); font-size: 1rem; }

/* ─── SECTIONS ───────────────────────────────────── */
.section { padding: 60px 20px; }
.section-alt { background: var(--bg2); }
.section-center { text-align: center; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--green-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 36px;
}
p { margin-bottom: 14px; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ─── TOC ────────────────────────────────────────── */
.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.toc h3 { margin-bottom: 14px; }
.toc ol { padding-left: 20px; }
.toc ol li { margin-bottom: 6px; }
.toc a { color: var(--green-light); font-size: .95rem; }

/* ─── CARDS GRID ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--green); box-shadow: var(--shadow-green); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.card h3 { font-size: 1rem; margin-bottom: 8px; }
.card p { font-size: .88rem; margin-bottom: 0; }

/* ─── FEATURES LIST ───────────────────────────────── */
.features-list { list-style: none; padding: 0; margin-top: 28px; }
.features-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.features-list li:last-child { border-bottom: none; }
.feat-icon {
  color: var(--green-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-title { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.feat-desc { font-size: .88rem; color: var(--text-muted); }

/* ─── TABLE ───────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 28px;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 500px; }
thead tr { background: var(--card2); }
th {
  padding: 14px 16px;
  text-align: left;
  color: var(--green-light);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem;
}
tr:hover td { background: rgba(0,166,81,0.04); }

/* ─── STEPS ───────────────────────────────────────── */
.steps { display: grid; gap: 16px; margin-top: 28px; }
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-size: .95rem; margin-bottom: 4px; }
.step-body p { font-size: .87rem; margin-bottom: 0; }

/* ─── MID BANNER ─────────────────────────────────── */
.mid-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #003d1e 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 36px 20px;
  text-align: center;
}
.mid-banner h2 { color: var(--white); margin-bottom: 8px; }
.mid-banner p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 22px; }
.mid-banner .amount-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* ─── PAYMENTS ───────────────────────────────────── */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.pay-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pay-badge svg { flex-shrink: 0; }

/* ─── FAQ ────────────────────────────────────────── */
.faq { margin-top: 28px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 18px 22px;
  text-align: left;
  color: var(--white);
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
  font-family: var(--font-body);
}
.faq-q:hover { background: var(--card2); }
.faq-chevron {
  color: var(--green-light);
  font-size: 1.2rem;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  background: var(--bg2);
  padding: 0 22px;
}
.faq-a p { margin: 0; padding: 16px 0; font-size: .92rem; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ─── AUTHOR ────────────────────────────────────── */
.author-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
}
.author-info h3 { font-size: .95rem; margin-bottom: 4px; }
.author-info p { font-size: .85rem; margin-bottom: 0; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 28px;
  align-items: start;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.footer-links a { color: var(--text-dim); font-size: .85rem; }
.footer-links a:hover { color: var(--green-light); }
.footer-payment-row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-pay {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.disclaimer {
  font-size: .75rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 700px;
}
.age-badge {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  padding: 5px 12px;
  border-radius: 6px;
  flex-shrink: 0;
}
.copyright { font-size: .78rem; color: var(--text-dim); }

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg) 100%);
  padding: 50px 20px 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { max-width: 580px; margin: 0 auto; font-size: 1rem; }

/* ─── HIGHLIGHT BOX ───────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,166,81,0.1) 0%, rgba(0,60,30,0.3) 100%);
  border: 1px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin: 28px 0;
}
.highlight-box h3 { color: var(--green-light); margin-bottom: 8px; }

/* ─── 2-COL LAYOUT ────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 56px; }
  .mobile-nav {
    display: block;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .mobile-nav.open { max-height: 600px; }
  .mobile-nav a {
    display: block;
    padding: 13px 24px;
    color: var(--text-muted);
    font-size: .95rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a:hover { color: var(--white); background: var(--green-glow); }
  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .top-banner p { font-size: .82rem; }
  .top-banner .btn-banner { margin-left: 8px; }
  .footer-top { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
}
@media (max-width: 560px) {
  .hero { padding: 44px 16px 52px; }
  .hero-bonus-box { padding: 16px 22px; }
  .section { padding: 44px 16px; }
  .toc { padding: 20px; }
  .top-banner { position: relative; top: 0; }
  header { top: 0; }
}
