:root {
  --bg: #060b14;
  --bg-2: #0b1526;
  --bg-3: #101c31;
  --card: #0f1a2c;
  --ink: #eaf1ff;
  --muted: #9bb0c9;
  --line: rgba(173, 204, 255, 0.14);
  --cyan: #3ecfff;
  --cyan-2: #1ab4e8;
  --gold: #f0b429;
  --orange: #e08a1e;
  --ok: #3dd68c;
  --danger: #ff6b6b;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Outfit", "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 50% -10%, #143056 0%, var(--bg) 52%);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7de3ff; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px 12px; z-index: 99; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(6, 11, 20, 0.82);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px; flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand img { height: 36px; width: auto; }
.brand small { display: block; font-size: 10px; letter-spacing: .14em; color: var(--muted); }
nav.primary { display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; }
nav.primary a {
  color: var(--muted); font-size: 14px; font-weight: 500; padding: 8px 10px; border-radius: 999px;
}
nav.primary a[aria-current="page"], nav.primary a:hover {
  color: var(--ink); background: rgba(62, 207, 255, 0.12);
}
.menu-btn {
  display: none; background: transparent; border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 8px 12px; cursor: pointer;
}
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
  color: #042433; font-weight: 700; border-radius: 999px; padding: 11px 18px;
  box-shadow: 0 10px 24px rgba(62, 207, 255, 0.25);
}
.cta:hover { color: #042433; filter: brightness(1.05); }
.cta.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none;
}
.cta.gold {
  background: linear-gradient(180deg, #ffd56a, var(--gold));
  color: #3a2700;
}

.hero {
  padding: 48px 0 28px;
}
.hero-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(16, 28, 49, 0.7), rgba(6, 11, 20, 0.92)),
    url("../assets/img/banner1.png") center/cover no-repeat;
  min-height: 520px;
  padding: 48px 28px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,11,20,.35), rgba(6,11,20,.82));
}
.hero-card > * { position: relative; z-index: 1; }
.logo-badge {
  width: min(220px, 70vw); margin: 0 auto 22px;
  background: rgba(8, 14, 26, .72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0 0 14px; text-transform: uppercase; }
.lede { font-size: 1.15rem; color: #d7e6f8; margin: 0 auto 10px; max-width: 720px; }
.sub { color: var(--muted); max-width: 680px; margin: 0 auto 22px; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 18px 0 24px; }
.pill {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #cfe4ff;
  background: rgba(8, 16, 30, .55);
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(15,26,44,.7)); }
.kicker { color: var(--cyan); letter-spacing: .16em; font-size: 12px; text-transform: uppercase; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 8px 0 16px; text-transform: uppercase; }
p { color: #d3e0f0; }
.prose { max-width: 760px; }
.prose p { margin: 0 0 14px; }
.grid { display: grid; gap: 18px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-6 { grid-template-columns: repeat(6, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin: 12px 0 8px; font-size: 1.15rem; }
.media { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.caption {
  padding: 10px 12px; font-weight: 600; font-size: 14px;
  background: #0c1626;
}
.steps { display: grid; gap: 12px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px;
}
.num {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800; color: #042433;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; background: var(--card); }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 14px; }
th { color: var(--cyan); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 4px; }
.graph {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.graph .node {
  text-align: center; padding: 16px 10px; border-radius: 16px;
  border: 1px solid var(--line); background: linear-gradient(180deg, #15263f, #0d1728);
}
.graph .node strong { display: block; }
.trust { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.trust img { height: 28px; width: auto; background: #fff; border-radius: 6px; padding: 4px 8px; }
.providers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.providers img, .casino-grid img { width: 100%; border-radius: 12px; aspect-ratio: 16/10; object-fit: cover; }
.casino-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.pay img { width: 100%; background: #fff; border-radius: 12px; padding: 10px; }
.footer {
  border-top: 1px solid var(--line); padding: 40px 0 24px; background: #050910;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.footer a { color: #c9d8ea; display: block; margin: 6px 0; }
.disclaimer { font-size: 13px; color: var(--muted); }
.legal { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.legal img { height: 28px; }
.sticky-cta {
  position: sticky; bottom: 12px; z-index: 30; display: flex; justify-content: center; pointer-events: none;
  padding-right: 92px;
}
.sticky-cta a { pointer-events: auto; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #083b1e;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
}
.whatsapp-float:hover { color: #083b1e; filter: brightness(1.05); }
.whatsapp-float svg { flex-shrink: 0; }
.page-hero { padding: 40px 0 10px; }
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; background: #0a1322; border: 1px solid var(--line); color: var(--ink);
  border-radius: 12px; padding: 12px 14px; font: inherit;
}
.form button { cursor: pointer; border: 0; }
.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.breadcrumbs a { color: var(--muted); }
.answer-box {
  border-left: 3px solid var(--cyan); padding: 8px 0 8px 16px; margin: 0 0 18px;
}
.speakable { font-size: 1.05rem; }

@media (max-width: 980px) {
  .g-2, .g-3, .g-4, .g-6, .graph, .providers, .casino-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; }
  nav.primary.open { display: flex; position: absolute; left: 0; right: 0; top: 72px; background: #08101c; padding: 16px; flex-direction: column; }
  .menu-btn { display: inline-flex; }
  .topbar-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .g-2, .g-3, .g-4, .g-6, .graph, .providers, .casino-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 32px 16px; min-height: 440px; }
  h1 { font-size: 1.7rem; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .whatsapp-float {
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .sticky-cta { padding-right: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
