/* =====================================================================
   Rajveerbook — "Frost & Steel" Design System
   Fonts: Exo 2 (headings) + Mulish (body)
   Light gray dominant · charcoal dark sections · cyan accent pops
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --primary: #0dcaf0;
  --primary-dark: #0aa8cc;
  --bg-body: #f8f9fa;
  --bg-dark: #343a40;
  --bg-dark-2: #2b3035;
  --bg-card: #ffffff;
  --border: #dee2e6;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --accent: #20c997;
  --gold: #d4af37;

  --shadow-sm: 0 1px 3px rgba(33, 37, 41, .08), 0 1px 2px rgba(33, 37, 41, .06);
  --shadow-md: 0 4px 12px rgba(33, 37, 41, .10), 0 2px 4px rgba(33, 37, 41, .06);
  --shadow-lg: 0 12px 32px rgba(33, 37, 41, .14), 0 4px 8px rgba(33, 37, 41, .08);
  --shadow-cyan: 0 6px 20px rgba(13, 202, 240, .28);

  --radius-card: 12px;
  --radius-btn: 8px;
  --maxw: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --font-head: "Exo 2", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary); }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--text-primary); letter-spacing: -.01em; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tight { padding: clamp(36px, 5vw, 60px) 0; }
.section--dark { background: var(--bg-dark); color: #e9ecef; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .text-secondary { color: #adb5bd; }
.text-secondary { color: var(--text-secondary); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.measure { max-width: 68ch; }

/* Thin cyan divider (section separator) */
.cyan-rule { height: 3px; width: 100%; border: 0; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: .9; }
.cyan-tick { display: inline-block; width: 56px; height: 4px; background: var(--primary); border-radius: 2px; margin-bottom: 18px; }

/* Section heading block */
.sec-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 44px); }
.sec-head.center { margin-inline: auto; }
.eyebrow { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--primary-dark); display: inline-block; margin-bottom: 10px; }
.section--dark .eyebrow { color: var(--primary); }
.sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.sec-head p { margin-top: 14px; color: var(--text-secondary); font-size: 1.05rem; }
.section--dark .sec-head p { color: #adb5bd; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: var(--radius-btn); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn--primary { background: var(--primary); color: #06232b; box-shadow: var(--shadow-cyan); }
.btn--primary:hover { background: var(--primary-dark); color: #052029; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(13,202,240,.4); }
.btn--dark { background: var(--bg-dark); color: #fff; border-color: var(--primary); }
.btn--dark:hover { background: #23272b; color: var(--primary); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.section--dark .btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--lg { padding: 16px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(13,202,240,.4); }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 10px;
  background: rgba(13,202,240,.12); color: var(--primary-dark); margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--text-secondary); font-size: .98rem; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border); height: var(--header-h);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { height: 42px; width: auto; }
.brand__text { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; color: var(--text-primary); }
.brand__text span { color: var(--primary-dark); }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text-primary);
  padding: 9px 13px; border-radius: 6px; transition: background .2s, color .2s;
}
.nav__links a:hover, .nav__links a.active { background: rgba(13,202,240,.12); color: var(--primary-dark); }
.nav__cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav__toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; color: var(--text-primary); }

.has-dropdown { position: relative; }
.dropdown { list-style: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s ease; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; }

/* ---------- Hero (charcoal, two-column) ---------- */
.hero { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(1000px 500px at 12% -10%, rgba(13,202,240,.16), transparent 60%),
    radial-gradient(700px 400px at 100% 120%, rgba(32,201,151,.12), transparent 60%);
  pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 56px); align-items: center; padding: clamp(52px, 8vw, 96px) 0; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(13,202,240,.14); border: 1px solid rgba(13,202,240,.35); color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .05em; padding: 7px 14px; border-radius: 100px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; margin: 20px 0 0; line-height: 1.05; }
.hero h1 .hl { color: var(--primary); }
.hero__sub { color: #ced4da; font-size: 1.12rem; margin-top: 20px; max-width: 54ch; }
.hero .btn-row { margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.6rem; color: var(--primary); line-height: 1; }
.hero__trust span { font-size: .82rem; color: #adb5bd; margin-top: 4px; }

/* Live odds ticker (hero right column) */
.odds-panel { background: var(--bg-dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.odds-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.odds-panel__head h3 { font-size: 1rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff4757; box-shadow: 0 0 0 0 rgba(255,71,87,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,71,87,.6);} 70% { box-shadow: 0 0 0 10px rgba(255,71,87,0);} 100% { box-shadow: 0 0 0 0 rgba(255,71,87,0);} }
.odds-panel__tag { font-size: .72rem; color: #adb5bd; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; }
.odds-list { list-style: none; margin: 0; padding: 6px; }
.odds-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 12px 12px; border-radius: 9px; transition: background .2s; }
.odds-row + .odds-row { border-top: 1px solid rgba(255,255,255,.05); }
.odds-row:hover { background: rgba(255,255,255,.03); }
.odds-match { display: flex; flex-direction: column; }
.odds-match b { color: #fff; font-family: var(--font-head); font-size: .92rem; font-weight: 700; }
.odds-match small { color: #868e96; font-size: .74rem; }
.odds-val { font-family: var(--font-head); font-weight: 700; font-size: .95rem; min-width: 52px; text-align: center; padding: 6px 8px; border-radius: 7px; background: rgba(13,202,240,.12); color: var(--primary); transition: background .3s, color .3s, transform .3s; }
.odds-val.up { background: rgba(32,201,151,.18); color: #4ade80; }
.odds-val.down { background: rgba(255,71,87,.18); color: #ff7285; }
.odds-val.flash { transform: scale(1.08); }
.odds-panel__foot { padding: 12px 18px; font-size: .72rem; color: #6c757d; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }

/* ---------- Marquee strip (partners) ---------- */
.strip { background: var(--bg-dark-2); border-block: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 18px 0; }
.marquee { display: flex; gap: 48px; align-items: center; width: max-content; animation: marquee 26s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 700; color: #868e96; font-size: 1.05rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
.marquee span::before { content: "◆"; color: var(--primary); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Masonry games grid ---------- */
.masonry { columns: 4 240px; column-gap: 20px; }
.masonry__item { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-card); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); border: 1px solid var(--border); background: #000; transition: transform .25s ease, box-shadow .25s ease; }
.masonry__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.masonry__item img { width: 100%; transition: transform .5s ease; }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__cap { position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; background: linear-gradient(transparent, rgba(0,0,0,.85)); color: #fff; }
.masonry__cap b { font-family: var(--font-head); font-size: 1.05rem; display: block; }
.masonry__cap small { color: var(--primary); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Horizontal scroll features (snap) ---------- */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 340px); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 22px; scrollbar-width: thin; scrollbar-color: var(--primary) var(--border); }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-track { background: var(--border); border-radius: 100px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 100px; }
.hscroll__card { scroll-snap-align: start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.hscroll__card .num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--primary); line-height: 1; opacity: .5; }
.hscroll__card h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.hscroll__card p { color: var(--text-secondary); font-size: .96rem; }
.hscroll-hint { font-size: .82rem; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; margin-top: 6px; }

/* ---------- Stats (large cyan numbers inline) ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat b { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--primary); display: block; line-height: 1; }
.stat span { color: var(--text-secondary); font-weight: 500; font-size: .95rem; margin-top: 6px; display: block; }
.section--dark .stat span { color: #adb5bd; }

/* Inline stat run-in text */
.stat-inline { font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.6; font-weight: 500; max-width: 62ch; }
.stat-inline b { font-family: var(--font-head); font-weight: 800; color: var(--primary); font-size: 1.35em; }

/* ---------- Newspaper columns (about) ---------- */
.newspaper { column-count: 2; column-gap: 40px; column-rule: 1px solid var(--border); }
.newspaper p { margin-bottom: 16px; }
.newspaper p:first-of-type::first-letter { font-family: var(--font-head); font-weight: 800; font-size: 3.4em; float: left; line-height: .8; padding: 6px 10px 0 0; color: var(--primary-dark); }
.pullquote { break-inside: avoid; margin: 6px 0 18px; padding: 20px 22px; background: rgba(13,202,240,.07); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; }
.pullquote p { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--text-primary); margin: 0; line-height: 1.35; }
.pullquote cite { display: block; margin-top: 10px; font-style: normal; font-size: .85rem; color: var(--text-secondary); font-weight: 600; }

/* ---------- Tools ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column; }
.tool__head { padding: 20px 22px; border-bottom: 2px solid var(--primary); background: linear-gradient(180deg, #fff, #fbfdff); }
.tool__head h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
.tool__head .tool__icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--bg-dark); color: var(--primary); flex: 0 0 auto; }
.tool__icon svg { width: 20px; height: 20px; }
.tool__head p { font-size: .84rem; color: var(--text-secondary); margin-top: 6px; }
.tool__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--text-primary); }
.field input, .field select { font-family: var(--font-body); font-size: 1rem; padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--radius-btn); background: #fff; color: var(--text-primary); transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,202,240,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Margin calculator output table */
.calc-table { width: 100%; border-collapse: collapse; margin-top: 4px; font-size: .95rem; }
.calc-table th, .calc-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.calc-table th { font-family: var(--font-head); color: var(--text-secondary); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.calc-table td { font-family: var(--font-head); font-weight: 700; }
.calc-result { margin-top: 4px; padding: 14px 16px; border-radius: 10px; font-family: var(--font-head); font-weight: 700; text-align: center; }
.calc-result.tight { background: rgba(32,201,151,.14); color: #0f9d68; }
.calc-result.wide { background: rgba(255,71,87,.12); color: #d63031; }
.calc-result.neutral { background: rgba(13,202,240,.12); color: var(--primary-dark); }

/* Lucky number — slot machine rolling digits */
.slot-display { display: flex; justify-content: center; gap: 8px; padding: 18px; background: var(--bg-dark); border-radius: 12px; }
.slot-reel { width: 52px; height: 74px; background: linear-gradient(180deg, #23272b, #16191c); border: 1px solid rgba(13,202,240,.4); border-radius: 8px; overflow: hidden; position: relative; box-shadow: inset 0 0 18px rgba(0,0,0,.6); }
.slot-reel::before, .slot-reel::after { content: ""; position: absolute; left: 0; right: 0; height: 22px; z-index: 2; pointer-events: none; }
.slot-reel::before { top: 0; background: linear-gradient(#16191c, transparent); }
.slot-reel::after { bottom: 0; background: linear-gradient(transparent, #16191c); }
.slot-strip { display: flex; flex-direction: column; will-change: transform; }
.slot-strip span { height: 74px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--primary); }
.slot-caption { text-align: center; font-size: .82rem; color: var(--text-secondary); }

/* Countdown — flip clock */
.flipclock { display: flex; justify-content: center; gap: 10px; }
.flip-unit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flip-card { position: relative; width: 60px; height: 74px; background: var(--bg-dark); color: #fff; border-radius: 9px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-md); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; overflow: hidden; }
.flip-card::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,.5); z-index: 2; }
.flip-card.tick { animation: flip 0.4s ease; }
@keyframes flip { 0% { transform: rotateX(0);} 50% { transform: rotateX(-14deg); filter: brightness(1.3);} 100% { transform: rotateX(0);} }
.flip-label { font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-secondary); font-weight: 700; }
.countdown-match { text-align: center; font-family: var(--font-head); font-weight: 700; margin-top: 4px; color: var(--text-primary); }
.countdown-live { text-align:center; color:#0f9d68; font-family:var(--font-head); font-weight:800; }

/* ---------- Provider banner cards ---------- */
.providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.provider { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; background: #000; }
.provider:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.provider img { width: 100%; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--bg-dark), var(--bg-dark-2)); border-radius: 16px; padding: clamp(32px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(13,202,240,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-band p { color: #ced4da; margin: 14px auto 26px; max-width: 56ch; }

/* ---------- Feature list w/ checks ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(13,202,240,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230aa8cc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat; margin-top: 3px; }
.section--dark .checklist li::before { background-color: rgba(13,202,240,.22); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.acc-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q:hover { color: var(--primary-dark); }
.acc-q .chev { flex: 0 0 auto; transition: transform .25s; color: var(--primary-dark); }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a__inner { padding: 0 20px 18px; color: var(--text-secondary); }

/* ---------- Prose (legal/content pages) ---------- */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.25rem; margin: 1.5rem 0 .6rem; }
.prose p { margin-bottom: 1rem; color: #343a40; }
.prose ul, .prose ol { margin: 0 0 1rem 0; padding-left: 1.4rem; }
.prose li { margin-bottom: .5rem; color: #343a40; }
.prose a { text-decoration: underline; }
.prose strong { color: var(--text-primary); }
.toc { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 10px; padding: 20px 24px; margin-bottom: 32px; }
.toc h3 { font-size: 1rem; margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: 4px; }

/* Page hero (interior pages) */
.page-hero { background: var(--bg-dark); color: #fff; padding: clamp(44px, 7vw, 76px) 0; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 320px at 85% -20%, rgba(13,202,240,.18), transparent 60%); }
.page-hero .container { position: relative; }
.breadcrumb { font-size: .85rem; color: #adb5bd; margin-bottom: 12px; font-family: var(--font-head); font-weight: 600; }
.breadcrumb a { color: var(--primary); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: #ced4da; margin-top: 14px; max-width: 62ch; font-size: 1.08rem; }

/* Notice / callout boxes */
.notice { border-radius: 10px; padding: 18px 20px; margin: 22px 0; border: 1px solid var(--border); background: #fff; display: flex; gap: 14px; }
.notice svg { flex: 0 0 auto; width: 24px; height: 24px; }
.notice--warn { border-color: rgba(255,71,87,.3); background: rgba(255,71,87,.05); }
.notice--warn svg { color: #d63031; }
.notice--info { border-color: rgba(13,202,240,.3); background: rgba(13,202,240,.06); }
.notice--info svg { color: var(--primary-dark); }
.notice b { display: block; font-family: var(--font-head); margin-bottom: 4px; }

/* Auth (login/signup) */
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { background: var(--bg-dark); color: #fff; padding: clamp(36px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-visual::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 320px at 20% 10%, rgba(13,202,240,.2), transparent 60%), radial-gradient(500px 300px at 90% 100%, rgba(32,201,151,.14), transparent 60%); }
.auth-visual > * { position: relative; }
.auth-visual h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.auth-visual p { color: #ced4da; margin-top: 14px; }
.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 5vw, 64px); background: var(--bg-body); }
.auth-card { width: 100%; max-width: 440px; }
.auth-card .card { padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.auth-card h1 { font-size: 1.8rem; }
.auth-sub { color: var(--text-secondary); margin: 8px 0 24px; }
.divider-or { display: flex; align-items: center; gap: 14px; color: var(--text-secondary); font-size: .85rem; margin: 20px 0; }
.divider-or::before, .divider-or::after { content: ""; height: 1px; background: var(--border); flex: 1; }
.form-note { font-size: .8rem; color: var(--text-secondary); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--text-secondary); }
.checkbox-row input { margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-methods { display: grid; gap: 16px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: var(--shadow-sm); }
.contact-method .cm-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(13,202,240,.12); color: var(--primary-dark); display: grid; place-items: center; flex: 0 0 auto; }
.contact-method h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-method p, .contact-method a { font-size: .95rem; color: var(--text-secondary); }

/* Responsible gaming badges */
.rg-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.rg-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; border: 2px solid; border-radius: 8px; padding: 8px 14px; font-size: .9rem; }
.rg-18 { border-color: #d63031; color: #d63031; }
.rg-gc { border-color: var(--text-secondary); color: var(--text-secondary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #adb5bd; padding-top: clamp(48px, 7vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; color: #adb5bd; max-width: 38ch; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-size: .82rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: #adb5bd; font-size: .92rem; }
.footer-links a:hover { color: var(--primary); }
.footer-rg { margin-top: 40px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.footer-disclaimer { font-size: .82rem; color: #868e96; max-width: 70ch; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .85rem; color: #868e96; }
.footer-bottom a { color: #adb5bd; }
.footer-bottom a:hover { color: var(--primary); }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* Age gate pill */
.age-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(214,48,49,.12); color: #d63031; border: 1px solid rgba(214,48,49,.3); font-family: var(--font-head); font-weight: 800; font-size: .8rem; padding: 6px 12px; border-radius: 100px; }

/* Utility */
.hidden { display: none !important; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-head); font-weight: 700; font-size: .82rem; padding: 6px 12px; border-radius: 100px; background: rgba(13,202,240,.12); color: var(--primary-dark); border: 1px solid rgba(13,202,240,.25); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .newspaper { column-count: 1; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry { columns: 3 200px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links { display: flex; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--border); padding: 12px; gap: 4px; box-shadow: var(--shadow-lg); }
  .nav.open .nav__links a { padding: 14px; }
  .nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; }
  .providers { grid-template-columns: 1fr; }
  .masonry { columns: 2 150px; column-gap: 14px; }
  .masonry__item { margin-bottom: 14px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4, .stats-band { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__trust { gap: 16px; }
  .flip-card { width: 52px; height: 66px; font-size: 1.8rem; }
  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
