/* ============================================================
   Casino Click  |  casino-click.us.com  |  2026
   US sweepstakes (social) casino review — DARK NEON theme:
   deep navy surface + electric neon blue + treasure gold + prize green,
   pink flower accent (from the logo). hero-main = shared hero background.
   Two-currency model: Gold Coins (GC, fun) + Sweeps Coins (SC, redeemable).
   "Click" brand cue = arrow-cursor mascot + gold cursor mark.
   ============================================================ */

:root {
  --bg-0:        #060a18;
  --bg-1:        #0a1024;
  --card:        #121a33;
  --card-2:      #18223f;
  --card-3:      #1f2b4d;
  --blue:        #2f7bff;
  --blue-2:      #1f6dff;
  --blue-deep:   #1450c8;
  --blue-dark:   #0e3aa0;
  --blue-light:  #6aa6ff;
  --gold:        #ffc21f;
  --gold-2:      #ffd75e;
  --gold-deep:   #b9760a;
  --gold-ink:    #2a1c00;
  --green:       #18c46e;
  --green-2:     #38e08c;
  --green-ink:   #04220f;
  --pink:        #ff5fa2;
  --red-2:       #ff6b6b;
  --link:        #7cb6ff;
  --ink:         #f6f8ff;
  --ink-2:       #e7ecfb;
  --text:        #cdd6ee;
  --text-dim:    #dbe2f4;
  --muted:       #9aa6cc;
  --footer-bg:   #050811;
  --footer-txt:  #bcc6e2;
  --footer-dim:  #8893b6;
  --line:        rgba(255,255,255,.10);
  --line-2:      rgba(255,255,255,.18);
  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 18px 44px rgba(0,0,0,.55);
  --shadow-sm:   0 8px 22px rgba(0,0,0,.42);
  --maxw:        1180px;
  --font-disp:   'Rubik', 'Segoe UI', system-ui, sans-serif;
  --font-ui:     'Montserrat', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(1100px 540px at 86% -8%, rgba(47,123,255,.22) 0%, transparent 56%),
    radial-gradient(1000px 560px at -4% 2%, rgba(106,166,255,.14) 0%, transparent 55%),
    radial-gradient(900px 720px at 50% 120%, rgba(20,80,200,.18) 0%, transparent 60%),
    linear-gradient(180deg, #0c1428 0%, var(--bg-1) 42%, var(--bg-0) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
h1, h2, h3, .display { font-family: var(--font-disp); font-weight: 800; line-height: 1.08; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 800; text-transform: uppercase;
  letter-spacing: .4px; border: none; cursor: pointer; white-space: nowrap;
  border-radius: 40px; padding: 14px 30px; font-size: 15px;
  transition: transform .12s ease, filter .12s ease, box-shadow .15s ease; user-select: none;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }
/* Primary CTA — treasure gold (matches the in-app PLAY NOW + "CLICK" wordmark) */
.btn-gold {
  color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  border-bottom: 4px solid var(--gold-deep);
  box-shadow: 0 12px 26px rgba(255,194,31,.34), inset 0 1px 0 rgba(255,255,255,.55);
}
/* Secondary CTA — electric neon blue (brand mascot/glow) */
.btn-blue {
  color: #fff;
  background: linear-gradient(180deg, #3f88ff 0%, var(--blue-2) 55%, var(--blue-deep) 100%);
  border-bottom: 4px solid #0a2f86;
  box-shadow: 0 12px 26px rgba(31,109,255,.5), inset 0 1px 0 rgba(255,255,255,.26);
  text-shadow: 0 1px 2px rgba(0,12,45,.5);
}
.btn-ghost {
  color: var(--blue-light); background: rgba(47,123,255,.14);
  border: 1.5px solid rgba(47,123,255,.42); padding: 11px 22px;
}
.btn-ghost:hover { background: rgba(47,123,255,.24); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 40px; font-size: 17px; }

/* ---------- Badges / tags ---------- */
.tag {
  display: inline-block; font-weight: 800; font-size: 12px; text-transform: uppercase;
  letter-spacing: .5px; color: #fff; padding: 5px 14px; border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}
.tag-hot    { background: linear-gradient(180deg, #ff85b3, var(--pink)); }
.tag-new    { background: linear-gradient(180deg, #3f88ff, var(--blue-deep)); }
.tag-excl   { color: var(--gold-ink); background: linear-gradient(180deg, var(--gold-2), var(--gold)); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,16,36,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 22px rgba(0,0,0,.5);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.nav a {
  font-weight: 700; font-size: 14.5px; color: var(--ink-2);
  padding: 9px 12px; border-radius: 10px; transition: color .15s, background .15s; white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(47,123,255,.16); }
.nav a.active { color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--blue-deep)); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--blue-light); border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ---------- Hero (shared hero-main background, text on LEFT) ---------- */
.hero {
  position: relative; border-radius: 0 0 26px 26px; overflow: hidden;
  background-color: #0a1430; background-size: cover; background-position: center;
  min-height: 440px; display: flex; align-items: center;
  box-shadow: 0 24px 50px -26px rgba(0,0,0,.8);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,9,22,.94) 0%, rgba(7,13,34,.82) 38%, rgba(8,16,42,.38) 64%, rgba(8,16,42,.05) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,9,22,.6) 0%, transparent 42%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 48px 20px; }
.hero .eyebrow {
  display: inline-block; background: linear-gradient(180deg, var(--blue-2), var(--blue-deep));
  color: #fff; font-weight: 700; font-size: 14px; padding: 7px 18px; border-radius: 20px;
  margin-bottom: 18px; box-shadow: 0 8px 18px rgba(31,109,255,.5);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 50px); text-transform: uppercase; color: #fff;
  text-shadow: 0 3px 18px rgba(0,6,26,.8); margin-bottom: 12px; max-width: 690px;
}
.hero h1 .amt { color: var(--gold-2); }
.hero p { color: #e8ecfb; font-size: 17px; margin-bottom: 26px; max-width: 500px; font-weight: 500; text-shadow: 0 1px 8px rgba(0,6,26,.7); }

/* ---------- Sections ---------- */
.section { padding: 54px 0; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; color: var(--ink); }
.section-head p { color: var(--muted); margin-top: 8px; font-size: 16px; }
.section-head .bar { width: 70px; height: 5px; border-radius: 5px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--blue), var(--gold)); }

/* ---------- Slots grid (PORTRAIT tiles, names baked in) ---------- */
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 24px 0; }
.slot {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .16s ease, box-shadow .16s ease; background: var(--card);
}
.slot:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 18px 36px rgba(47,123,255,.34); border-color: rgba(47,123,255,.5); }
.slot .art { aspect-ratio: 2/3; background: var(--card-3); }
.slot .art img { width: 100%; height: 100%; object-fit: cover; }
.slot .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 12px 10px;
  background: linear-gradient(180deg, rgba(6,10,24,0), rgba(6,10,24,.92)); color: #fff;
  font-weight: 700; font-size: 13px; }
.slot .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; background: rgba(8,14,38,.55); transition: opacity .18s ease;
}
.slot:hover .play { opacity: 1; }
.slot .play .btn { padding: 10px 24px; font-size: 13px; }
.slot .tag { position: absolute; top: 10px; left: 10px; z-index: 3; }

/* ---------- Mobile app split ---------- */
.app-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; margin: 26px 0; }
.app-copy .app-h { font-family: var(--font-disp); font-weight: 800; font-size: clamp(19px,2.4vw,23px);
  color: var(--ink); line-height: 1.12; margin: 0 0 12px; }
.app-copy h2 { font-size: clamp(26px,4vw,42px); text-transform: uppercase; margin-bottom: 14px; }
.app-copy p { color: var(--text-dim); font-size: 17px; margin-bottom: 22px; }
.app-feats { list-style: none; margin: 0 0 26px; display: grid; gap: 12px; }
.app-feats li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-weight: 600; }
.app-feats li::before { content: "\2713"; flex: 0 0 26px; height: 26px; display: grid; place-items: center;
  background: linear-gradient(180deg,var(--green-2),var(--green)); color: var(--green-ink); border-radius: 50%; font-weight: 900; }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.app-shots { display: flex; justify-content: center; align-items: center; }
.app-shots img { width: 100%; max-width: 540px; height: auto; filter: drop-shadow(0 22px 40px rgba(0,0,0,.6)); border-radius: 16px; }

/* ---------- Author ---------- */
.author-card {
  display: flex; gap: 24px; align-items: center; max-width: 860px; margin: 0 auto;
  background: linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.author-card .photo {
  flex: 0 0 110px; width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
  background: radial-gradient(circle at 50% 35%, var(--blue-light), var(--blue-deep));
  display: grid; place-items: center; border: 3px solid rgba(47,123,255,.6);
  box-shadow: 0 0 0 5px rgba(47,123,255,.16);
}
.author-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.author-card .info h3 { font-size: 22px; color: var(--ink); }
.author-card .info .role { color: var(--gold-2); font-weight: 700; font-size: 14px; margin: 2px 0 10px;
  text-transform: uppercase; letter-spacing: .4px; }
.author-card .info p { color: var(--text-dim); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 40px; background: var(--footer-bg); color: var(--footer-txt); border-top: 3px solid var(--blue); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding: 44px 0 30px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--footer-dim); font-size: 14px; max-width: 370px; }
.footer-col .fc-h { font-family: var(--font-disp); font-size: 14px; text-transform: uppercase; letter-spacing: .5px; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--footer-dim); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.age-badge { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--blue); color: var(--blue-light); font-weight: 900; font-size: 14px; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0 40px;
  color: var(--footer-dim); font-size: 12.5px; text-align: center; line-height: 1.7; }

/* ---------- CENTER bonus pop-up modal (client request: banner pops in the middle) ---------- */
.bonus-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.bonus-modal.hide { display: none; }
.bm-backdrop { position: absolute; inset: 0; background: rgba(3,6,16,.82); backdrop-filter: blur(5px); }
.bm-card {
  position: relative; z-index: 2; width: 100%; max-width: 540px;
  background: #0a1024; border: 1px solid rgba(47,123,255,.55); border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.78), 0 0 0 1px rgba(106,166,255,.16);
  animation: pop .34s cubic-bezier(.2,.9,.3,1.25);
}
.bm-card > img { width: 100%; height: auto; display: block; }
.bm-cta { text-align: center; padding: 16px 20px 18px; background: linear-gradient(180deg, #0c1430 0%, #0a1024 100%); }
.bm-cta .btn { width: 100%; padding: 14px 18px; font-size: 15px; }
.bm-fine { color: var(--muted); font-size: 11px; margin: 9px 0 0; line-height: 1.45; }
.bm-close {
  position: absolute; top: 10px; right: 12px; width: 34px; height: 34px; border-radius: 50%; z-index: 4;
  border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.55); color: #fff; font-size: 20px; cursor: pointer;
  line-height: 1; display: grid; place-items: center;
}
.bm-close:hover { background: rgba(0,0,0,.8); }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 560px) {
  .bonus-modal { padding: 12px; }
  .bm-cta { padding: 13px 14px 15px; }
  .bm-cta .btn { padding: 12px 14px; font-size: 13.5px; }
  .bm-fine { font-size: 10px; }
}

/* ============================================================
   ARTICLE: typography, tables, charts, FAQ, CTA, etc.
   ============================================================ */
.breadcrumb { font-size: 13.5px; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--link); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span { margin: 0 7px; opacity: .55; }

.article { max-width: 860px; margin: 0 auto; }
.article.wide { max-width: 1080px; }
.article h1 { font-family: var(--font-disp); font-size: clamp(26px, 4.2vw, 40px); color: var(--ink); line-height: 1.1; margin: 6px 0 14px; }
.article h2 { font-size: clamp(23px, 3vw, 32px); color: var(--ink); margin: 38px 0 14px; }
.article h2:first-child { margin-top: 6px; }
.article h3 { font-size: clamp(19px, 2.4vw, 23px); color: var(--ink-2); margin: 26px 0 10px; }
.article p { color: var(--text-dim); font-size: 16.5px; margin: 0 0 16px; }
.article a:not(.btn) { color: var(--link); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.article a:not(.btn):hover { color: var(--gold-2); }
.article strong { color: var(--ink); }
.article em { color: var(--blue-light); font-style: italic; }
.article ul, .article ol { color: var(--text-dim); font-size: 16.5px; margin: 0 0 18px; padding-left: 4px; list-style: none; }
.article ul li, .article ol li { position: relative; padding: 6px 0 6px 30px; }
.article ul li::before { content: "\25B9"; position: absolute; left: 6px; color: var(--gold); font-weight: 900; }
.article ol { counter-reset: li; }
.article ol li::before { counter-increment: li; content: counter(li); position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px; background: linear-gradient(180deg,var(--blue-2),var(--blue-dark));
  color: #fff; border-radius: 50%; font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.lead { font-size: 18.5px !important; color: var(--ink-2) !important; font-weight: 500; }

/* Byline */
.byline { font-size: 14px; color: var(--muted); margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.byline a { color: var(--link); font-weight: 700; }
.byline time { color: var(--text-dim); }

/* Note / highlight box */
.note {
  background: linear-gradient(180deg, rgba(47,123,255,.14), rgba(47,123,255,.04));
  border: 1px solid rgba(47,123,255,.32); border-left: 4px solid var(--blue);
  border-radius: 14px; padding: 16px 20px; margin: 22px 0; color: var(--text-dim); font-size: 15.5px;
}
.note strong { color: var(--ink); }
.note.gold { background: linear-gradient(180deg, rgba(255,194,31,.13), rgba(255,194,31,.03)); border-color: rgba(255,194,31,.34); border-left-color: var(--gold); }

/* Pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.proscons .col { border-radius: 16px; padding: 18px 20px; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); }
.proscons .pros { background: linear-gradient(180deg, rgba(24,196,110,.13), rgba(24,196,110,.03)); border-color: rgba(24,196,110,.32); }
.proscons .cons { background: linear-gradient(180deg, rgba(255,107,107,.12), rgba(255,107,107,.03)); border-color: rgba(255,107,107,.32); }
.proscons h3 { color: var(--ink); font-size: 16px; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .4px; }
.proscons ul { margin: 0; }
.proscons .pros li::before { content: "\2713"; color: var(--green-2); }
.proscons .cons li::before { content: "\2715"; color: var(--red-2); }

/* Data tables */
.table-wrap { overflow-x: auto; margin: 22px 0; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--card); }
.data-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 15px; }
.data-table caption { caption-side: top; text-align: left; color: var(--muted); font-size: 13.5px; padding: 12px 16px 8px; }
.data-table thead th {
  background: linear-gradient(180deg, var(--blue-deep), var(--blue-dark));
  color: #fff; font-weight: 800; text-align: left; padding: 13px 16px; font-size: 13.5px;
  text-transform: uppercase; letter-spacing: .3px; white-space: nowrap;
}
.data-table tbody td { padding: 12px 16px; color: var(--text-dim); border-top: 1px solid var(--line); }
.data-table tbody tr:nth-child(odd) { background: rgba(47,123,255,.05); }
.data-table tbody tr:hover { background: rgba(255,194,31,.08); }
.data-table .hl { color: var(--gold-2); font-weight: 800; }
.data-table tr.feat td { background: rgba(255,194,31,.10); }
.data-table td strong { color: var(--ink); }
.pill-yes { color: var(--green-2); font-weight: 800; }
.pill-no { color: var(--red-2); font-weight: 800; }

/* Chart: bars */
.bars { margin: 24px 0; display: grid; gap: 14px; }
.bars .row { display: grid; grid-template-columns: 200px 1fr 70px; align-items: center; gap: 12px; }
.bars .lbl { color: var(--text-dim); font-size: 14px; font-weight: 600; }
.bars .track { background: rgba(255,255,255,.10); border-radius: 8px; height: 16px; overflow: hidden; }
.bars .fill { height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--blue), var(--gold)); }
.bars .val { color: var(--blue-light); font-weight: 800; font-size: 14px; text-align: right; }
@media (max-width: 560px){ .bars .row { grid-template-columns: 120px 1fr 54px; } .bars .lbl { font-size: 12.5px; } }

/* Chart: donut */
.donut-wrap { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin: 24px 0; justify-content: center; }
.donut { width: 190px; height: 190px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; position: relative; box-shadow: var(--shadow-sm); }
.donut::after { content: ""; position: absolute; width: 58%; height: 58%; background: var(--card); border-radius: 50%; }
.donut .center { position: relative; z-index: 2; text-align: center; }
.donut .center b { font-family: var(--font-disp); font-size: 26px; color: var(--ink); display: block; line-height: 1; }
.donut .center span { font-size: 12px; color: var(--muted); }
.legend { display: grid; gap: 10px; }
.legend .it { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 14.5px; font-weight: 500; }
.legend .dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }

/* Chart: gauge (semicircle) */
.gauge-wrap { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; justify-content: center; margin: 24px 0; }
.gauge { width: 240px; height: 130px; position: relative; overflow: hidden; }
.gauge .dial { width: 240px; height: 240px; border-radius: 50%;
  background: conic-gradient(from -90deg, var(--red-2) 0 18%, var(--gold) 18% 46%, var(--green-2) 46% 90%, rgba(255,255,255,.08) 90% 100%); }
.gauge .hole { position: absolute; left: 30px; top: 30px; width: 180px; height: 180px; border-radius: 50%; background: var(--card); }
.gauge .needle { position: absolute; left: 50%; bottom: 0; width: 4px; height: 104px; background: var(--ink);
  transform-origin: bottom center; border-radius: 4px; box-shadow: 0 0 8px rgba(0,0,0,.5); }
.gauge .cap { position: absolute; left: 50%; bottom: -7px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink); transform: translateX(-50%); }
.gauge-read { text-align: center; }
.gauge-read b { font-family: var(--font-disp); font-size: 30px; color: var(--gold-2); display: block; line-height: 1; }
.gauge-read span { color: var(--muted); font-size: 13.5px; }

/* Chart: steps / steps-flow */
.steps-flow { display: grid; gap: 14px; margin: 24px 0; }
.steps-flow .step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 14px; padding: 16px 18px; }
.steps-flow .n { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 20px; color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: 0 6px 14px rgba(255,194,31,.4); }
.steps-flow .step h3 { color: var(--ink); font-size: 16.5px; margin: 0 0 3px; }
.steps-flow .step p { margin: 0; font-size: 14.5px; }

/* Timeline (vertical) */
.timeline { position: relative; margin: 24px 0; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--gold)); border-radius: 3px; }
.timeline .tl { position: relative; margin-bottom: 18px; }
.timeline .tl::before { content: ""; position: absolute; left: -29px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--bg-1); box-shadow: 0 0 0 2px var(--blue); }
.timeline .tl h3 { color: var(--ink); font-size: 16.5px; margin: 0 0 4px; }
.timeline .tl p { margin: 0; font-size: 14.5px; }

/* Jackpot ladder */
.jp-ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0; }
.jp-tile { border-radius: 16px; padding: 20px 16px; text-align: center; border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-2), var(--card)); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.jp-tile .tier { font-family: var(--font-disp); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: 14px; margin-bottom: 8px; }
.jp-tile .amt { font-family: var(--font-disp); font-weight: 800; font-size: clamp(20px,2.6vw,27px); color: var(--gold-2); line-height: 1; }
.jp-tile .sub { color: var(--muted); font-size: 12.5px; margin-top: 7px; }
.jp-tile.mini .tier   { color: var(--blue-light); }
.jp-tile.minor .tier  { color: var(--green-2); }
.jp-tile.major .tier  { color: var(--pink); }
.jp-tile.grand { border-color: rgba(255,194,31,.45); background: linear-gradient(180deg, rgba(255,194,31,.16), rgba(255,194,31,.03)); }
.jp-tile.grand .tier  { color: var(--gold); }
@media (max-width: 680px){ .jp-ladder { grid-template-columns: 1fr 1fr; } }

/* Currency chips (GC gold / SC green) */
.cur-chips { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0; }
.cur { flex: 1 1 260px; display: flex; align-items: center; gap: 14px; border-radius: 16px; padding: 16px 18px;
  border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); }
.cur .coin { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 17px; }
.cur.gc .coin { background: radial-gradient(circle at 38% 30%, #ffe79a, var(--gold-deep)); color: var(--gold-ink); border: 2px solid #ffe9a3; }
.cur.sc .coin { background: radial-gradient(circle at 38% 30%, #7af0b3, #0b8c4d); color: var(--green-ink); border: 2px solid #8ff3c0; }
.cur .ct b { font-family: var(--font-disp); color: var(--ink); font-size: 16px; display: block; }
.cur .ct span { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq { margin: 22px 0; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 50px 16px 20px; position: relative; font-weight: 700; color: var(--ink); font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: rgba(47,123,255,.18); color: var(--blue-light);
  display: grid; place-items: center; font-size: 20px; transition: transform .2s; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { color: var(--blue-light); }
.faq .faq-body { padding: 0 20px 18px; color: var(--text-dim); font-size: 15.5px; }
.faq .faq-body p { margin: 0 0 10px; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chips .chip { background: var(--card-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 16px; font-weight: 700; font-size: 14px; color: var(--text-dim); box-shadow: var(--shadow-sm); }

/* Quick-facts / specs grid */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.specs .sp { display: flex; gap: 12px; align-items: center; background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px; box-shadow: var(--shadow-sm); }
.specs .sp .k { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .3px; }
.specs .sp .v { color: var(--ink); font-weight: 700; font-size: 15px; }
@media (max-width: 560px){ .specs { grid-template-columns: 1fr; } }

/* Tracker in mobile header */
.mobile-cta { display: none; }
@media (max-width: 980px) { .mobile-cta { display: inline-flex; } }

/* Inline CTA */
.inline-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  background: linear-gradient(110deg, var(--blue-deep) 0%, var(--blue-dark) 55%, #0a2a78 140%);
  border-radius: 18px; padding: 22px 26px; margin: 28px 0; box-shadow: var(--shadow); border: 1px solid rgba(106,166,255,.22); }
.inline-cta .txt b { color: #fff; font-family: var(--font-disp); font-size: 20px; display: block; }
.inline-cta .txt b .amt { color: var(--gold-2); }
.inline-cta .txt span { color: rgba(255,255,255,.92); font-size: 15px; }

/* Mini stat cards */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0; }
.stat { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 14px; padding: 18px; text-align: center; }
.stat b { font-family: var(--font-disp); font-size: 26px; color: var(--gold-2); display: block; }
.stat span { color: var(--muted); font-size: 13px; }
@media (max-width: 680px) { .stat-row { grid-template-columns: 1fr 1fr; } .proscons { grid-template-columns: 1fr; } }

/* Feature illustration (finished promo banner shown as a plain figure) */
.feature-illus { margin: 24px 0 8px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); background: var(--card-3); }
.feature-illus img { width: 100%; height: auto; display: block; }
.feature-illus.center { max-width: 820px; margin-left: auto; margin-right: auto; }
.fig-cta { text-align: center; margin: 0 0 28px; }

/* Promo banner: finished neon banner with copy + CTA overlaid on its empty side */
.promo-banner { position: relative; margin: 24px 0 28px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow); background: #0a1430; }
.promo-banner > img { width: 100%; height: auto; display: block; }
.promo-banner .pb-content { position: absolute; top: 0; bottom: 0; width: 52%; display: flex;
  flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; padding: 4% 4.5%; }
.promo-banner.right .pb-content { right: 0;
  background: linear-gradient(270deg, rgba(8,15,40,.94) 20%, rgba(8,15,40,.55) 66%, rgba(8,15,40,0) 100%); }
.promo-banner.left .pb-content { left: 0;
  background: linear-gradient(90deg, rgba(8,15,40,.94) 20%, rgba(8,15,40,.55) 66%, rgba(8,15,40,0) 100%); }
.promo-banner .pb-title { font-family: var(--font-disp); font-weight: 800; color: #fff;
  font-size: clamp(18px, 2.7vw, 28px); line-height: 1.08; text-shadow: 0 2px 14px rgba(0,6,26,.85); }
.promo-banner .pb-title .amt { color: var(--gold-2); }
.promo-banner .pb-text { color: #e8ecfb; font-size: clamp(12.5px, 1.4vw, 15px); line-height: 1.42; margin: 0;
  text-shadow: 0 1px 10px rgba(0,6,26,.9); }
.promo-banner .pb-content .btn { align-self: flex-start; }
@media (max-width: 640px) {
  .promo-banner .pb-content { position: static; width: 100%; align-items: stretch; padding: 16px 18px 18px;
    background: #0c1430 !important; }
  .promo-banner .pb-content .btn { align-self: stretch; }
}

/* Skip link + focus */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200;
  background: linear-gradient(180deg, #3f88ff, var(--blue-2)); color: #fff; font-weight: 800; padding: 12px 22px; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; border-radius: 6px; }

/* Cookie consent */
.cookie-bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 96;
  width: calc(100% - 32px); max-width: 940px; background: var(--card);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  display: flex; gap: 16px 22px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cookie-bar.hide { display: none; }
.cookie-bar p { color: var(--text-dim); font-size: 14px; margin: 0; flex: 1 1 380px; line-height: 1.45; }
.cookie-bar p a { color: var(--link); text-decoration: underline; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 10px 22px; font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-actions .desk-only { display: none; }
  .burger { display: block; }
  .header-actions { margin-left: auto; }
  .nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0; margin: 0;
    background: #0c1430; padding: 12px 18px 18px; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.6); }
  .nav.open a { padding: 13px 12px; }
  .app-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .bm-card { animation: none !important; }
  .btn:hover, .slot:hover, .stat:hover { transform: none !important; }
}
@media (max-width: 680px) {
  .hero { min-height: 400px; background-position: 64% top; }
  .hero::before { background: linear-gradient(180deg, rgba(5,9,22,.72) 0%, rgba(5,9,22,.86) 55%, rgba(5,9,22,.96) 100%); }
  .hero-inner { padding: 34px 0; }
  .author-card { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 42px 0; }
  .specs { grid-template-columns: 1fr; }
}
