/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0A1628;
  --surface:   #111E35;
  --blue:      #4A90D9;
  --blue-dim:  #2A5A9A;
  --white:     #F0F4FF;
  --subtext:   #6B85AA;
  --border:    #1E2E4A;
  --radius:    12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}

.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--subtext);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); text-decoration: none; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(74, 144, 217, 0.15);
  border: 1px solid rgba(74, 144, 217, 0.4);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--blue); }

.hero p {
  font-size: 18px;
  color: var(--subtext);
  max-width: 540px;
  margin: 0 auto 40px;
}

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, opacity 0.15s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); opacity: 0.9; text-decoration: none; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--white);
}

/* ── Section ──────────────────────────────────────────────────────── */
section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }

.section-label {
  text-align: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 56px;
}

/* ── Features grid ────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--subtext); line-height: 1.6; }

/* ── How it works ─────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(74, 144, 217, 0.15);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--blue);
  font-size: 15px;
}

.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step p  { font-size: 14px; color: var(--subtext); }

/* ── No gambling banner ───────────────────────────────────────────── */
.no-gambling {
  background: rgba(74, 144, 217, 0.07);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.no-gambling h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.no-gambling p  { color: var(--subtext); font-size: 15px; }

/* ── Download ─────────────────────────────────────────────────────── */
.download { text-align: center; }
.download p { color: var(--subtext); margin-bottom: 32px; font-size: 16px; }

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--subtext);
  font-size: 13px;
}

footer a { color: var(--subtext); margin: 0 12px; }
footer a:hover { color: var(--white); }
.footer-links { margin-bottom: 12px; }

/* ── Legal pages ──────────────────────────────────────────────────── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}

.legal-page .effective {
  color: var(--subtext);
  font-size: 13px;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin: 32px 0 8px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  color: #B0BFDA;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-page ul { padding-left: 20px; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 64px 20px 60px; }
}
