/* ===========================================================
   BetNinja — Bonus Guide (green)
   Matches uploaded screenshot · responsive · honest intl version
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Saira:wght@500;600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --bg:        #0c0e0c;
  --panel:     #14181490;
  --panel-2:   #15191588;
  --border:    #232a23;
  --border-2:  #34412f;
  --neon:      #39ff8b;
  --neon-2:    #15c768;
  --gold:      #ffd35c;
  --text:      #f2f6f2;
  --muted:     #9aa79c;
  --radius:    14px;
  --maxw:      1180px;
  --display:   'Saira', system-ui, sans-serif;
  --body:      'Barlow', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(820px 460px at 78% -6%, rgba(57,255,139,.10), transparent 60%),
    var(--bg);
  color: var(--text); font-family: var(--body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--neon); text-decoration: none; transition: color .2s; }
a:hover { color: #7dffb0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
h1,h2,h3,h4 { font-family: var(--display); letter-spacing: .2px; line-height: 1.12; }

/* ---------- top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: rgba(8,10,8,.82); border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 34px; width: 34px; }
.brand span { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: .5px; }
.brand b { color: var(--neon); }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--muted); font-weight: 600; font-size: .92rem; }
.nav a:hover, .nav a.active { color: var(--neon); }
.nav .pill { padding: 9px 16px; border-radius: 999px; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; font-size: .8rem; letter-spacing: .5px; }
.nav .pill.green { background: linear-gradient(135deg, var(--neon), var(--neon-2)); color: #04130a;
  box-shadow: 0 0 0 1px rgba(57,255,139,.3), 0 10px 26px -12px rgba(57,255,139,.8); }
.nav .pill.green:hover { color: #04130a; filter: brightness(1.07); }
.nav .pill.dark { background: #1c211c; color: var(--text); border: 1px solid var(--border-2); }
.nav .pill.dark:hover { color: var(--neon); }
.menu-btn { display: none; background: none; border: 1px solid var(--border-2); border-radius: 10px; padding: 8px 10px; cursor: pointer; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--neon); margin: 4px 0; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display);
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: .92rem;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer; transition: transform .18s, box-shadow .25s, filter .2s; }
.btn.green { background: linear-gradient(135deg, var(--neon), var(--neon-2)); color: #04130a;
  box-shadow: 0 0 0 1px rgba(57,255,139,.28), 0 14px 32px -12px rgba(57,255,139,.85); }
.btn.green:hover { transform: translateY(-2px); filter: brightness(1.06); color: #04130a; }
.btn.dark { background: #1c211c; color: var(--text); border: 1px solid var(--border-2); }
.btn.dark:hover { transform: translateY(-2px); border-color: var(--neon); color: var(--neon); }

/* ---------- hero ---------- */
.hero { padding: 50px 0 38px; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.hero p { color: var(--muted); margin-bottom: 14px; max-width: 54ch; }
.hero .cta-row { margin-top: 20px; display: flex; gap: 13px; flex-wrap: wrap; }

/* hero illustration */
.hero-art { border-radius: 18px; overflow: hidden; border: 1px solid var(--border-2);
  background: radial-gradient(420px 320px at 50% 30%, rgba(57,255,139,.18), transparent 70%), #07100b;
  aspect-ratio: 16/12; display: grid; place-items: center; }
.hero-art svg { width: 100%; height: 100%; }

/* ---------- disclaimer ---------- */
.disclaimer { margin: 6px 0; border: 1px solid var(--border-2); border-left: 3px solid var(--neon);
  background: linear-gradient(90deg, rgba(57,255,139,.06), transparent); border-radius: 12px;
  padding: 14px 18px; color: var(--muted); font-size: .9rem; }
.disclaimer b { color: var(--text); }

/* ---------- content bar + cards ---------- */
.content-bar { background: #121512; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 20px; margin: 18px 0; font-family: var(--display); font-weight: 700; color: var(--muted);
  display: flex; align-items: center; gap: 8px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; transition: transform .2s, border-color .25s; }
.card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.card h3 { color: var(--text); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.card ul { list-style: none; }
.card li { color: var(--muted); padding: 8px 0; border-bottom: 1px dashed #1e251d; display: flex; gap: 10px; align-items: center; }
.card li:last-child { border-bottom: none; }
.card li .ic { color: var(--neon); }
.card li b { color: var(--text); }
.card li .hl { color: var(--neon); font-weight: 600; }
.card p { color: var(--muted); margin: 6px 0; }
.card p b { color: var(--text); }

/* ---------- sections ---------- */
section.block { padding: 24px 0; }
.section-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.section-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px var(--neon); }
.section-head h2 { font-size: 1.6rem; font-weight: 800; }

.panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; }
.panel h3 { font-size: 1.2rem; margin-bottom: 10px; }
.panel p { color: var(--muted); margin-bottom: 10px; }
.panel ul { list-style: none; margin-top: 6px; }
.panel li { color: var(--muted); padding: 7px 0 7px 22px; position: relative; }
.panel li::before { content: '▸'; color: var(--neon); position: absolute; left: 0; }
.panel li b { color: var(--text); }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* numbered claim steps */
.claim { counter-reset: c; list-style: none; }
.claim li { counter-increment: c; position: relative; padding: 10px 0 10px 44px; color: var(--muted); border-bottom: 1px dashed #1e251d; }
.claim li:last-child { border-bottom: none; }
.claim li::before { content: counter(c); position: absolute; left: 0; top: 9px; width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--neon), var(--neon-2)); color: #04130a; border-radius: 8px;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .85rem; }

/* wagering callout */
.callout { background: linear-gradient(90deg, rgba(255,211,92,.08), transparent); border: 1px solid #4a4327;
  border-left: 3px solid var(--gold); border-radius: 12px; padding: 14px 18px; color: var(--muted); margin: 14px 0; }
.callout b { color: var(--gold); }

/* table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: #0c100c; color: var(--neon); font-family: var(--display); font-weight: 700; }
td { color: var(--muted); }
td:first-child { color: var(--text); font-weight: 600; }
tr:last-child td { border-bottom: none; }

/* faq */
.faq details { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 0 18px; margin-bottom: 10px; }
.faq details[open] { border-color: var(--border-2); }
.faq summary { cursor: pointer; list-style: none; padding: 15px 0; font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--neon); font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 15px; }

/* responsible + footer */
.responsible { background: var(--panel-2); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 26px 28px; }
.responsible h2 { font-size: 1.4rem; margin-bottom: 10px; }
.responsible p, .responsible li { color: var(--muted); }
footer { margin-top: 46px; border-top: 1px solid var(--border); padding: 26px 0 56px; color: var(--muted); font-size: .87rem; }
footer .container { display: flex; flex-direction: column; gap: 9px; }
footer .legal { font-size: .81rem; color: #677066; }

[data-rise] { opacity: 0; transform: translateY(16px); animation: rise .7s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* mobile */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .grid2 { grid-template-columns: 1fr; }
  .nav { position: fixed; inset: 66px 0 auto 0; flex-direction: column; gap: 0; background: #070a07;
    border-bottom: 1px solid var(--border); padding: 10px 22px 20px; transform: translateY(-130%); transition: transform .3s; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav .pill { width: 100%; text-align: center; }
  .menu-btn { display: block; }
}
@media (max-width: 480px) {
  .hero { padding: 32px 0 24px; }
  .btn { width: 100%; justify-content: center; }
  .hero .cta-row { flex-direction: column; }
}

/* ---- withdrawals-page additions ---- */
.showcase { border: 1px solid var(--border-2); border-radius: 18px; padding: 36px 28px;
  background: radial-gradient(420px 320px at 50% 30%, rgba(57,255,139,.18), transparent 70%), #07100b;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.showcase img { width: 132px; height: 132px; filter: drop-shadow(0 0 24px rgba(57,255,139,.5)); }
.showcase .wm { font-family: var(--display); font-weight: 800; font-size: 2.1rem; letter-spacing: -.5px; }
.showcase .wm b { color: var(--neon); }
.showcase .tag { color: var(--muted); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.chip { font-family: var(--display); font-weight: 600; font-size: .78rem; background: #101510;
  border: 1px solid var(--border-2); color: var(--text); padding: 6px 11px; border-radius: 999px; }
.fast { color: var(--neon); font-weight: 700; }
.slow { color: var(--gold); font-weight: 700; }
.no2 { color: #ff6b6b; font-weight: 700; }
