/* ===================================================================
   Betguru - Sports Dashboard Grid
   Fonts: Montserrat (headings), Manrope (body)
   Palette: amber #ffb80c, black #000, white #fff, gray #e7e7e7
   =================================================================== */

:root {
  --amber: #ffb80c;
  --amber-dark: #d99a00;
  --amber-soft: rgba(255, 184, 12, 0.12);
  --black: #000000;
  --ink: #14161a;
  --white: #ffffff;
  --gray: #e7e7e7;
  --gray-mid: #b7bcc4;
  --gray-soft: #f6f7f9;
  --panel: #101216;
  --panel-2: #181b21;
  --line: #23262d;
  --text: #14161a;
  --text-soft: #4c525c;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  --shadow-lift: 0 18px 44px rgba(0, 0, 0, 0.18);
  --maxw: 1180px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 74px 0; }
.section--tight { padding: 52px 0; }
.section--gray { background: var(--gray-soft); border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.section--dark { background: var(--black); color: var(--gray); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--amber); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; margin-bottom: 0; }
.section--dark .section-head p { color: var(--gray-mid); }

.amber-rule { height: 3px; width: 56px; background: var(--amber); border: 0; border-radius: 3px; margin: 0 0 22px; }
.section-head--center .amber-rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: #1a1300; box-shadow: 0 8px 22px rgba(255, 184, 12, 0.32); }
.btn-primary:hover { background: #ffc93a; box-shadow: 0 12px 28px rgba(255, 184, 12, 0.42); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.32); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray);
  padding: 9px 13px;
  border-radius: 8px;
  position: relative;
  transition: color 0.16s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); text-decoration: none; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 18px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 40px;
  cursor: pointer;
  color: var(--white);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(255, 184, 12, 0.18), transparent 60%),
    radial-gradient(760px 460px at 6% 110%, rgba(255, 184, 12, 0.08), transparent 55%),
    var(--black);
  color: var(--gray);
  padding: 68px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 .hl { color: var(--amber); }
.hero-lead { font-size: 1.16rem; color: var(--gray-mid); max-width: 560px; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; color: var(--gray-mid); font-size: 0.9rem; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* hero stat panel */
.stat-panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-lift);
}
.stat-panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.stat-panel-top .live { display: inline-flex; align-items: center; gap: 8px; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); }
.live .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(255, 184, 12, 0.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 184, 12, 0.55); } 70% { box-shadow: 0 0 0 12px rgba(255, 184, 12, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 184, 12, 0); } }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 15px;
}
.stat-tile .num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.85rem; color: var(--white); line-height: 1; }
.stat-tile .num .suffix { color: var(--amber); }
.stat-tile .lbl { font-size: 0.82rem; color: var(--gray-mid); margin-top: 6px; }
.stat-tile--wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
.odds-row { display: flex; align-items: center; gap: 10px; }
.odds-chip { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.85rem; padding: 6px 11px; border-radius: 8px; background: var(--amber); color: #1a1300; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--amber); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 0; }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber-soft); color: var(--amber-dark);
  margin-bottom: 16px;
}
.card .ico svg { width: 26px; height: 26px; }

.card--dark { background: var(--panel-2); border-color: var(--line); color: var(--gray-mid); box-shadow: none; }
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--gray-mid); }
.card--dark:hover { border-color: var(--amber); }
.card--dark .ico { background: var(--amber-soft); color: var(--amber); }

.tag-amber { display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-dark); background: var(--amber-soft); padding: 5px 10px; border-radius: 6px; margin-bottom: 12px; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-strip .item { text-align: center; padding: 8px; }
.stat-strip .num { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--amber); line-height: 1; }
.stat-strip .lbl { font-size: 0.9rem; color: var(--gray-mid); margin-top: 8px; font-weight: 600; }

/* sport/payment pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.92rem;
  background: var(--white); border: 1px solid var(--gray); color: var(--ink);
  padding: 11px 17px; border-radius: 999px;
  transition: border-color 0.16s var(--ease), transform 0.16s var(--ease);
}
.pill:hover { border-color: var(--amber); transform: translateY(-2px); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.section--dark .pill { background: var(--panel-2); border-color: var(--line); color: var(--gray); }

/* steps */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 26px 22px 24px; background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.05rem;
  color: #1a1300; background: var(--amber);
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 15px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 0; }

/* feature list with checks */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 5px; background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d99a00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.section--dark .check-list li { color: var(--gray-mid); }

/* testimonials */
.quote-card { background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.quote-card:hover { border-color: var(--amber); }
.quote-card .stars { color: var(--amber); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 10px; }
.quote-card p { font-size: 0.98rem; color: var(--text); margin-bottom: 16px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); color: #1a1300; display: flex; align-items: center; justify-content: center; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1rem; }
.quote-card .name { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.quote-card .city { font-size: 0.83rem; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.03rem; color: var(--ink);
  padding: 19px 54px 19px 20px; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--amber-dark); line-height: 1; transition: transform 0.2s var(--ease);
}
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s var(--ease); }
.faq-a-inner { padding: 0 20px 20px; color: var(--text-soft); font-size: 0.98rem; }
.faq-item.open .faq-a { max-height: 480px; }

/* ---------- Tools ---------- */
.tool {
  background: var(--white); border: 1px solid var(--gray); border-radius: 18px;
  padding: 30px; box-shadow: var(--shadow);
}
.tool + .tool { margin-top: 30px; }
.tool-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.tool-head .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--amber-soft); color: var(--amber-dark); display: flex; align-items: center; justify-content: center; flex: none; }
.tool-head .ico svg { width: 24px; height: 24px; }
.tool-head h3 { margin: 0; font-size: 1.3rem; }
.tool-sub { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 22px; }
.tool-body { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }

.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 0.86rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--gray); border-radius: 10px; background: var(--white); color: var(--ink);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-soft); }
.field .hint { font-size: 0.8rem; color: var(--text-soft); margin-top: 5px; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  display: block; text-align: center; cursor: pointer; margin: 0;
  padding: 11px 8px; border: 1px solid var(--gray); border-radius: 10px;
  font-size: 0.9rem; transition: all 0.16s var(--ease);
}
.seg label small { display: block; font-weight: 400; color: var(--text-soft); font-size: 0.75rem; }
.seg input:checked + label { border-color: var(--amber); background: var(--amber-soft); color: var(--amber-dark); }

.tool-result { background: var(--gray-soft); border: 1px solid var(--gray); border-radius: 14px; padding: 22px; }
.result-row { display: flex; align-items: baseline; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--gray); }
.result-row:last-child { border-bottom: 0; }
.result-row .k { font-size: 0.9rem; color: var(--text-soft); }
.result-row .v { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--ink); }

/* value gauge */
.gauge { margin: 6px 0 18px; }
.gauge-track { height: 12px; border-radius: 999px; background: linear-gradient(90deg, #e5484d 0%, #ffb80c 50%, #30a46c 100%); position: relative; }
.gauge-needle { position: absolute; top: -5px; width: 4px; height: 22px; background: var(--ink); border-radius: 3px; left: 50%; transform: translateX(-50%); transition: left 0.5s var(--ease); box-shadow: 0 0 0 2px var(--white); }
.gauge-scale { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-soft); margin-top: 7px; }
.verdict { display: inline-flex; align-items: center; gap: 8px; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.05rem; padding: 8px 15px; border-radius: 10px; }
.verdict.good { background: rgba(48, 164, 108, 0.14); color: #1e7d4d; }
.verdict.neutral { background: var(--amber-soft); color: var(--amber-dark); }
.verdict.bad { background: rgba(229, 72, 77, 0.13); color: #c2262b; }

/* game canvas */
.game-wrap { position: relative; }
.game-hud { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.game-hud .stat { font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.game-hud .stat b { color: var(--amber-dark); font-size: 1.2rem; }
#prizeCanvas { width: 100%; height: auto; display: block; background: linear-gradient(180deg, #0d0f13, #181b21); border: 1px solid var(--line); border-radius: 14px; touch-action: none; }
.game-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px; background: rgba(10, 11, 14, 0.82); border-radius: 14px; color: var(--white); padding: 24px;
}
.game-overlay h4 { font-family: "Montserrat", sans-serif; color: var(--white); font-size: 1.4rem; margin: 0; }
.game-overlay p { color: var(--gray-mid); margin: 0; }
.game-overlay[hidden] { display: none; }

/* bar chart (stake planner) */
.barchart { display: flex; align-items: flex-end; gap: 6px; height: 180px; padding: 12px; background: var(--gray-soft); border: 1px solid var(--gray); border-radius: 12px; }
.bar { flex: 1; background: linear-gradient(180deg, var(--amber), var(--amber-dark)); border-radius: 5px 5px 0 0; min-height: 4px; transition: height 0.5s var(--ease); position: relative; }
.bar.down { background: linear-gradient(180deg, #e5686c, #c2262b); }
.plan-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 0.92rem; }
.plan-table th, .plan-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--gray); }
.plan-table th { font-family: "Montserrat", sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); }
.plan-table td { color: var(--ink); }

/* ---------- Forms (auth/contact) ---------- */
.auth-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: calc(100vh - var(--nav-h)); }
.auth-aside {
  background:
    radial-gradient(700px 400px at 20% 10%, rgba(255, 184, 12, 0.16), transparent 60%),
    var(--black);
  color: var(--gray-mid); padding: 60px 54px; display: flex; flex-direction: column; justify-content: center;
}
.auth-aside h2 { color: var(--white); font-size: 2rem; }
.auth-aside .amber-rule { margin-bottom: 18px; }
.auth-aside .check-list { margin-top: 24px; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 56px 24px; background: var(--gray-soft); }
.auth-card { width: 100%; max-width: 440px; background: var(--white); border: 1px solid var(--gray); border-radius: 18px; padding: 34px 32px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 1.75rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 24px; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; cursor: pointer; padding: 8px; color: var(--text-soft); border-radius: 8px;
}
.pw-toggle:hover { color: var(--ink); }
.pw-toggle svg { width: 20px; height: 20px; display: block; }

.strength { margin-top: 10px; }
.strength-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.strength-bars span { height: 6px; border-radius: 4px; background: var(--gray); transition: background 0.2s var(--ease); }
.strength-label { font-size: 0.8rem; margin-top: 6px; font-weight: 600; color: var(--text-soft); }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; color: var(--text-soft); }
.checkbox-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--amber-dark); flex: none; }
.form-links { display: flex; justify-content: space-between; align-items: center; margin: 4px 0 18px; font-size: 0.9rem; flex-wrap: wrap; gap: 8px; }
.form-foot { text-align: center; margin-top: 18px; font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.1em; }
.prose li { margin-bottom: 8px; color: var(--text-soft); }
.prose p { color: var(--text-soft); }
.legal-meta { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 8px; }
.toc { background: var(--gray-soft); border: 1px solid var(--gray); border-left: 3px solid var(--amber); border-radius: 10px; padding: 18px 22px; margin-bottom: 30px; }
.toc strong { font-family: "Montserrat", sans-serif; display: block; margin-bottom: 8px; }
.toc ul { list-style: none; margin: 0; padding: 0; columns: 2; }
.toc li { margin-bottom: 6px; }

/* page hero (subpages) */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(255, 184, 12, 0.16), transparent 60%),
    var(--black);
  color: var(--gray-mid); padding: 56px 0; border-bottom: 1px solid var(--line);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { max-width: 640px; color: var(--gray-mid); margin-bottom: 0; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 16px; }
.crumbs a { color: var(--amber); }

/* callout */
.callout { background: var(--amber-soft); border: 1px solid rgba(255, 184, 12, 0.4); border-left: 4px solid var(--amber); border-radius: 10px; padding: 18px 22px; margin: 22px 0; }
.callout p { margin: 0; color: var(--ink); }
.callout strong { color: var(--ink); }

/* responsible gaming banner */
.rg-banner { background: var(--panel-2); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.rg-banner .ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--amber-soft); color: var(--amber); display: flex; align-items: center; justify-content: center; }
.rg-banner p { margin: 0; color: var(--gray-mid); font-size: 0.96rem; }
.rg-banner strong { color: var(--white); }

/* contact info blocks */
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ico { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--amber-soft); color: var(--amber-dark); display: flex; align-items: center; justify-content: center; }
.info-item .ico svg { width: 22px; height: 22px; }
.info-item .k { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.info-item .v { color: var(--text-soft); font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 120%, rgba(255, 184, 12, 0.2), transparent 60%),
    var(--black);
  color: var(--gray); text-align: center; padding: 60px 0; border-radius: 20px;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: var(--gray-mid); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--gray-mid); border-top: 3px solid var(--amber); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer .brand img { height: 42px; margin-bottom: 14px; }
.footer-about { font-size: 0.92rem; color: var(--gray-mid); max-width: 300px; }
.footer h4 { font-family: "Montserrat", sans-serif; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--gray-mid); font-size: 0.92rem; }
.footer a:hover { color: var(--amber); text-decoration: none; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--amber); color: var(--amber); border-radius: 50%; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 14px; }
.rg-strip { border-top: 1px solid var(--line); padding: 18px 0; text-align: center; }
.rg-strip .tags { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 8px; }
.rg-strip .tags span { margin: 0 6px; }
.rg-strip p { font-size: 0.85rem; color: var(--gray-mid); margin: 0 auto; max-width: 760px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a { color: var(--amber); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--text-soft); }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .tool-body { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .toc ul { columns: 1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--black); border-bottom: 1px solid var(--line); padding: 12px; gap: 2px;
  }
  .nav.open .nav-links a { padding: 13px; }
  .nav.open .nav-links a::after { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn { flex: 1; }
  .auth-card { padding: 26px 20px; }
  .tool { padding: 22px 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
