/* Best Ingame Casinos — game HUD design system */

:root {
  --bg: #07080f;
  --bg-2: #0b0d1a;
  --panel: #10132a;
  --panel-2: #161a36;
  --panel-3: #1d2246;
  --line: rgba(150, 165, 255, 0.12);
  --line-2: rgba(150, 165, 255, 0.24);
  --text: #eef0ff;
  --muted: #a3a8cf;
  --dim: #6f75a3;

  --xp: #39ff9f;
  --xp-2: #22d3ee;
  --pink: #ff3ea5;
  --warn: #ffcc4d;
  --bad: #ff5c7a;

  --legendary: #ffb938;
  --epic: #c27bff;
  --rare: #4da3ff;
  --uncommon: #4ade80;

  --display: "Chakra Petch", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r: 10px;
  --cut: 12px;
  --wrap: 1200px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.8);
  color-scheme: dark;
}

.r-legendary { --rc: var(--legendary); }
.r-epic { --rc: var(--epic); }
.r-rare { --rc: var(--rare); }
.r-uncommon { --rc: var(--uncommon); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font: 400 16px/1.65 var(--body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(800px 500px at -10% 10%, rgba(194, 123, 255, 0.12), transparent 60%),
    linear-gradient(rgba(150, 165, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 165, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  background-attachment: fixed;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--xp); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #9dffd0; }
:focus-visible { outline: 2px solid var(--xp); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
code { font: 500 0.88em ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--panel-2); border: 1px solid var(--line); padding: 0.1em 0.4em; border-radius: 5px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .wrap { padding: 0 24px; } }
.narrow { max-width: 820px; }
.narrow-l { max-width: 960px; }
.ico { width: 1.1em; height: 1.1em; flex: none; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--xp); color: #04120b; padding: 10px 14px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.demo-banner { background: repeating-linear-gradient(135deg, #3a2a00 0 14px, #2a1f00 14px 28px); color: #ffe39a; font-size: 13px; text-align: center; padding: 8px 16px; border-bottom: 1px solid rgba(255, 204, 77, 0.35); }
.demo-banner code { background: rgba(0, 0, 0, 0.35); border-color: rgba(255, 204, 77, 0.3); color: #fff2c8; }

/* ------------------------------------------------ buttons */
.btn {
  --bc: var(--xp);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font: 700 0.95rem/1 var(--display); letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none;
  padding: 0.85em 1.3em; border: 0; cursor: pointer; white-space: nowrap;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--xp), var(--xp-2)); color: #03140c; box-shadow: 0 0 24px rgba(57, 255, 159, 0.35); }
.btn-primary:hover { color: #03140c; filter: brightness(1.1) saturate(1.1); }
.btn-ghost { background: var(--panel-2); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { color: var(--text); background: var(--panel-3); }
.btn-lg { font-size: 1.02rem; padding: 1em 1.5em; }
.btn-sm { font-size: 0.8rem; padding: 0.7em 1em; }
.btn-block { width: 100%; }
.btn .ico { width: 1em; height: 1em; }

/* ------------------------------------------------ header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7, 8, 15, 0.78); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { width: 32px; height: 32px; filter: drop-shadow(0 0 10px rgba(57, 255, 159, 0.45)); }
.brand-text { font: 600 1.08rem/1 var(--display); letter-spacing: 0.01em; }
.brand-text b { color: var(--xp); font-weight: 700; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--muted); text-decoration: none; font: 600 0.92rem/1.2 var(--display); letter-spacing: 0.02em; }
.site-nav a:hover { color: var(--text); background: var(--panel-2); }
.site-nav a[aria-current="page"] { color: var(--text); background: var(--panel-2); box-shadow: inset 0 -2px 0 var(--xp); }
.age-pill { font: 700 0.78rem/1 var(--display); color: var(--warn); border: 1px solid rgba(255, 204, 77, 0.45); padding: 6px 8px; border-radius: 6px; text-decoration: none; }
.age-pill:hover { color: var(--warn); background: rgba(255, 204, 77, 0.08); }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 10px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .age-pill { margin-left: auto; }
  .nav-toggle { margin-left: 0; order: 2; }
  .site-nav { position: absolute; left: 0; right: 0; top: 66px; background: rgba(9, 10, 20, 0.97); border-bottom: 1px solid var(--line); display: none; margin: 0; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: 10px 16px 18px; }
  .site-nav a { padding: 12px 12px; font-size: 1rem; }
}

/* ------------------------------------------------ hero */
.hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 600 0.82rem/1 var(--display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--panel); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--xp); box-shadow: 0 0 0 0 rgba(57, 255, 159, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(57, 255, 159, 0); } 100% { box-shadow: 0 0 0 0 rgba(57, 255, 159, 0); } }
.hero h1 { margin: 20px 0 16px; text-transform: uppercase; letter-spacing: -0.005em; }
.grad { background: linear-gradient(100deg, var(--xp) 10%, var(--xp-2) 55%, var(--epic)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.hero-stats { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b { font: 700 1.9rem/1 var(--display); color: var(--text); }
.hero-stats span { font-size: 0.82rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: end; }
.pod {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 22px 14px 18px; background: linear-gradient(180deg, color-mix(in srgb, var(--rc) 16%, var(--panel)), var(--panel) 70%);
  border: 1px solid color-mix(in srgb, var(--rc) 45%, transparent); border-radius: var(--r);
  box-shadow: 0 0 40px -16px var(--rc), var(--shadow);
}
.pod-1 { padding-top: 34px; padding-bottom: 28px; transform: translateY(-18px); }
.pod::before { content: ""; position: absolute; inset: -1px -1px auto; height: 3px; background: var(--rc); border-radius: var(--r) var(--r) 0 0; box-shadow: 0 0 16px var(--rc); }
.pod-place { position: absolute; top: 10px; left: 12px; display: inline-flex; align-items: center; gap: 4px; font: 700 0.85rem/1 var(--display); color: var(--rc); }
.pod-place .ico { width: 16px; height: 16px; }
.pod-logo { width: 64px; height: 64px; }
.pod-1 .pod-logo { width: 80px; height: 80px; }
.pod-name { font: 700 1.08rem/1.2 var(--display); color: var(--text); text-decoration: none; }
.pod-score { font: 600 0.9rem/1 var(--display); color: var(--dim); }
.pod-score b { font-size: 1.8rem; color: var(--text); }
.pod-bonus { font-size: 0.84rem; color: var(--muted); margin: 0; min-height: 2.6em; line-height: 1.35; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 48px; }
}
@media (max-width: 560px) {
  .podium { gap: 8px; }
  .pod { padding: 18px 8px 14px; }
  .pod-1 { transform: translateY(-10px); }
  .pod-logo { width: 48px; height: 48px; }
  .pod-1 .pod-logo { width: 58px; height: 58px; }
  .pod-bonus { display: none; }
  .pod-name { font-size: 0.95rem; }
  .pod .btn { padding: 0.7em 0.8em; }
  .hero-stats { gap: 18px; }
  .hero-stats b { font-size: 1.5rem; }
}

/* ------------------------------------------------ sections */
.section { padding: 64px 0; }
.section-tight { padding: 32px 0 56px; }
.section-alt { background: linear-gradient(180deg, rgba(16, 19, 42, 0.55), rgba(16, 19, 42, 0.25)); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 28px; max-width: 760px; }
.section-head p:last-child { color: var(--muted); margin: 0; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font: 700 0.8rem/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--xp); margin: 0 0 12px; }
.kicker::before { content: ""; width: 18px; height: 2px; background: currentColor; box-shadow: 0 0 8px currentColor; }
.kicker .ico { width: 16px; height: 16px; }
.kicker:has(.ico)::before { display: none; }

/* ------------------------------------------------ filters */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip-btn { display: inline-flex; align-items: center; gap: 7px; font: 600 0.88rem/1 var(--display); color: var(--muted); background: var(--panel); border: 1px solid var(--line-2); padding: 9px 14px; border-radius: 999px; cursor: pointer; transition: all 0.15s; }
.chip-btn:hover { color: var(--text); border-color: var(--xp); }
.chip-btn.is-on { color: #03140c; background: var(--xp); border-color: var(--xp); box-shadow: 0 0 18px rgba(57, 255, 159, 0.35); }
@media (max-width: 560px) {
  .filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding: 2px 16px 8px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .chip-btn { flex: none; }
}

/* ------------------------------------------------ loot cards */
.loot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.loot-list > li[hidden] { display: none; }
.loot-card {
  position: relative; display: grid; align-items: center; gap: 8px 22px;
  grid-template-columns: 44px 72px minmax(0, 1fr) 210px 118px 168px;
  grid-template-areas: "rank logo main bonus score cta" "terms terms terms terms terms terms";
  padding: 20px 22px 12px 20px;
  background: linear-gradient(100deg, color-mix(in srgb, var(--rc) 10%, var(--panel)) 0%, var(--panel) 38%);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.loot-card::before { content: ""; position: absolute; left: -1px; top: 14px; bottom: 14px; width: 3px; background: var(--rc); border-radius: 0 3px 3px 0; box-shadow: 0 0 14px var(--rc); }
.loot-card:hover { border-color: color-mix(in srgb, var(--rc) 55%, transparent); box-shadow: 0 0 44px -18px var(--rc); transform: translateY(-2px); }
.lc-rank { grid-area: rank; font: 700 1.3rem/1 var(--display); color: var(--rc); text-align: center; }
.lc-logo { grid-area: logo; }
.lc-logo .logo { width: 72px; height: 72px; }
.lc-main { grid-area: main; min-width: 0; }
.lc-title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-bottom: 4px; }
.lc-title h3 { margin: 0; font-size: 1.3rem; }
.lc-title h3 a { color: var(--text); text-decoration: none; }
.lc-title h3 a:hover { color: var(--xp); }
.lc-tag { color: var(--muted); margin: 0 0 10px; font-size: 0.94rem; line-height: 1.45; }
.lc-bonus { grid-area: bonus; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.lc-bonus strong { font: 700 1.02rem/1.25 var(--display); color: var(--text); }
.lc-score { grid-area: score; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lc-score .xp-bar { width: 100%; }
.lc-cta { grid-area: cta; display: flex; flex-direction: column; align-items: stretch; gap: 8px; text-align: center; }
.lc-review { font-size: 0.88rem; color: var(--muted); }
.lc-terms { grid-area: terms; margin: 4px 0 0; padding-top: 8px; border-top: 1px dashed var(--line); font-size: 0.74rem; color: var(--dim); line-height: 1.4; }
.label { font: 600 0.72rem/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.list-note { margin-top: 18px; font-size: 0.84rem; color: var(--dim); }

@media (max-width: 1080px) {
  .loot-card {
    grid-template-columns: 36px 64px minmax(0, 1fr) 110px;
    grid-template-areas: "rank logo main score" "bonus bonus bonus cta" "terms terms terms terms";
  }
  .lc-logo .logo { width: 64px; height: 64px; }
  .lc-bonus { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px 12px; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; }
  .lc-cta { min-width: 150px; }
}
@media (max-width: 640px) {
  .loot-card {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    grid-template-areas: "logo main score" "bonus bonus bonus" "cta cta cta" "terms terms terms";
    padding: 16px 14px 10px;
    gap: 12px;
  }
  .lc-rank { position: absolute; top: -9px; left: 12px; font-size: 0.8rem; padding: 3px 7px; border-radius: 6px; background: var(--bg); border: 1px solid color-mix(in srgb, var(--rc) 50%, transparent); }
  .lc-logo .logo { width: 52px; height: 52px; }
  .lc-title h3 { font-size: 1.12rem; }
  .lc-main .chips { display: none; }
  .lc-tag { margin: 0; font-size: 0.88rem; }
  .lc-score { align-self: start; }
  .lc-score .xp-bar { display: none; }
  .lc-cta { flex-direction: row; align-items: center; }
  .lc-cta .btn { flex: 1; }
  .lc-review { flex: none; padding: 0 6px; }
}

.rarity { display: inline-flex; align-items: center; gap: 6px; font: 700 0.7rem/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--rc); padding: 5px 8px; border: 1px solid color-mix(in srgb, var(--rc) 55%, transparent); background: color-mix(in srgb, var(--rc) 12%, transparent); border-radius: 5px; }
.rarity::before { content: ""; width: 6px; height: 6px; transform: rotate(45deg); background: var(--rc); box-shadow: 0 0 8px var(--rc); }
.rarity-legendary { --rc: var(--legendary); }
.rarity-epic { --rc: var(--epic); }
.rarity-rare { --rc: var(--rare); }
.rarity-uncommon { --rc: var(--uncommon); }

.score-hex { position: relative; display: grid; place-items: center; width: 74px; height: 82px; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); background: linear-gradient(160deg, var(--rc), color-mix(in srgb, var(--rc) 35%, #000)); }
.score-hex::before { content: ""; position: absolute; inset: 3px; clip-path: inherit; background: var(--bg-2); }
.score-hex b, .score-hex small { position: relative; font-family: var(--display); line-height: 1; }
.score-hex b { font-size: 1.6rem; color: var(--text); margin-top: 10px; }
.score-hex small { font-size: 0.72rem; color: var(--dim); margin-top: -14px; }
.score-hex-lg { width: 92px; height: 102px; }
.score-hex-lg b { font-size: 2rem; }
@media (max-width: 640px) { .lc-score .score-hex { width: 58px; height: 64px; } .lc-score .score-hex b { font-size: 1.25rem; margin-top: 8px; } .lc-score .score-hex small { margin-top: -10px; } }

/* segmented HP/XP bar */
.xp-bar {
  position: relative; height: 10px; border-radius: 3px; background: rgba(150, 165, 255, 0.13);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 calc(10% - 2px), transparent calc(10% - 2px) 10%);
  mask: repeating-linear-gradient(90deg, #000 0 calc(10% - 2px), transparent calc(10% - 2px) 10%);
}
.xp-bar i { position: absolute; inset: 0 auto 0 0; width: var(--v); background: linear-gradient(90deg, var(--rc, var(--xp)), color-mix(in srgb, var(--rc, var(--xp)) 60%, #fff)); transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.js [data-reveal]:not(.is-in) .xp-bar i { width: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.chips li { font-size: 0.76rem; font-weight: 500; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); padding: 4px 9px; border-radius: 5px; }
.chips-lg li { font-size: 0.86rem; padding: 6px 11px; }

.code-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); background: transparent; color: var(--text); border: 1px dashed color-mix(in srgb, var(--xp) 60%, transparent); padding: 6px 10px; border-radius: 6px; cursor: pointer; transition: background 0.15s; }
.code-btn:hover { background: rgba(57, 255, 159, 0.08); }
.code-btn span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }
.code-btn b { font-size: 0.95rem; letter-spacing: 0.08em; color: var(--xp); }
.code-btn .ico { width: 14px; height: 14px; color: var(--dim); }

/* ------------------------------------------------ tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); margin: 0 0 1.5em; }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
thead th { font: 700 0.76rem/1.2 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); background: var(--bg-2); white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(150, 165, 255, 0.04); }
th[data-sort] { cursor: pointer; user-select: none; }
th[data-sort]::after { content: " ↕"; opacity: 0.5; }
th[aria-sort="ascending"]::after { content: " ↑"; opacity: 1; color: var(--xp); }
th[aria-sort="descending"]::after { content: " ↓"; opacity: 1; color: var(--xp); }
.compare table { min-width: 860px; }
.compare td { white-space: nowrap; }
.tbl-casino { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font: 600 1rem var(--display); text-decoration: none; }
.logo-xs { width: 28px; height: 28px; }
.tbl-score { font: 700 1rem var(--display); color: var(--rc); }

/* ------------------------------------------------ cards: modes & guides */
.mode-grid, .guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.mode-card, .guide-card {
  position: relative; display: flex; flex-direction: column; gap: 6px; padding: 22px; text-decoration: none; color: var(--text);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mode-card:hover, .guide-card:hover { color: var(--text); border-color: rgba(57, 255, 159, 0.45); transform: translateY(-3px); box-shadow: 0 0 40px -18px var(--xp); }
.mode-ico, .guide-ico { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 8px; color: var(--xp); background: rgba(57, 255, 159, 0.08); border: 1px solid rgba(57, 255, 159, 0.3); clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.mode-ico .ico, .guide-ico .ico { width: 24px; height: 24px; }
.mode-card h3, .guide-card h3 { margin: 0; }
.mode-card p, .guide-card p { color: var(--muted); font-size: 0.93rem; margin: 0 0 8px; flex: 1; }
.mode-meta { font-size: 0.82rem; color: var(--dim); }
.mode-meta b { color: var(--text); }
.guide-more { display: inline-flex; align-items: center; gap: 6px; font: 600 0.88rem var(--display); color: var(--xp); }

/* ------------------------------------------------ methodology */
.rate-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.7fr; gap: 40px; align-items: center; }
.weights, .stats, .tiers { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; font-size: 0.92rem; color: var(--muted); }
.stat-row b { font: 700 1rem var(--display); color: var(--text); }
.tiers li { display: flex; justify-content: space-between; align-items: center; gap: 12px; font: 600 0.9rem var(--display); color: var(--muted); padding: 10px 12px; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--rc); border-radius: 8px; }
.weights-page { margin: 0 0 2em; padding: 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
@media (max-width: 960px) { .rate-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ------------------------------------------------ faq */
.faq h2 { margin-bottom: 18px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { margin: 0; font-size: 1.06rem; font-weight: 600; }
.faq-plus { position: relative; width: 14px; height: 14px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; inset: 6px 0 auto; height: 2px; background: var(--xp); transition: transform 0.2s; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-a { padding: 0 18px 16px; color: var(--muted); }
.faq-a p { margin: 0; }

/* ------------------------------------------------ responsible gambling */
.rg-callout { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 26px 28px; background: linear-gradient(110deg, rgba(255, 204, 77, 0.1), var(--panel) 50%); border: 1px solid rgba(255, 204, 77, 0.3); border-radius: var(--r); }
.rg-callout h2 { font-size: 1.4rem; margin-bottom: 4px; }
.rg-callout p { margin: 0; color: var(--muted); }
.rg-callout-badge, .rg-age, .age-badge { display: grid; place-items: center; font: 700 1.3rem/1 var(--display); color: var(--warn); width: 64px; height: 64px; border: 2px solid var(--warn); border-radius: 50%; flex: none; }
@media (max-width: 720px) { .rg-callout { grid-template-columns: 1fr; text-align: left; } }

/* ------------------------------------------------ footer */
.site-footer { margin-top: 40px; padding: 40px 0 30px; background: var(--bg-2); border-top: 1px solid var(--line); font-size: 0.9rem; }
.rg-strip { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid rgba(255, 204, 77, 0.25); border-radius: var(--r); background: rgba(255, 204, 77, 0.05); margin-bottom: 36px; }
.rg-strip p { margin: 0; color: var(--muted); }
.rg-age { width: 46px; height: 46px; font-size: 0.95rem; }
.f-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.f-col h2 { font: 700 0.78rem/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.f-col a { color: var(--muted); text-decoration: none; }
.f-col a:hover { color: var(--xp); }
.f-brand p { color: var(--dim); margin-top: 14px; }
.f-disclosure { font-size: 0.82rem; }
.f-disclosure a { color: var(--muted); text-decoration: underline; }
.f-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 0.8rem; }
.f-bottom p { margin: 0; max-width: 70ch; }
.f-llm a { color: var(--muted); }
@media (max-width: 960px) { .f-grid { grid-template-columns: 1fr 1fr; } .f-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .f-grid { grid-template-columns: 1fr; } .rg-strip { align-items: flex-start; } }

/* ------------------------------------------------ page chrome */
.crumbs { padding: 18px 0 0; font-size: 0.84rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; color: var(--dim); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: 0.5; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--xp); }
.page-hero { padding: 34px 0 30px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.rh-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; font-size: 0.86rem; color: var(--dim); margin: 0; }
.rh-meta a { color: var(--muted); }
.checklist { padding: 22px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.checklist h2 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.checklist ul, .pc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checklist li, .pc li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; line-height: 1.45; }
.checklist .ico, .pc-pro .ico { color: var(--xp); margin-top: 2px; }
@media (max-width: 880px) { .page-hero-split { grid-template-columns: 1fr; gap: 24px; } }
.notfound { padding: 90px 0; text-align: center; }
.notfound h1 { font-size: clamp(3rem, 10vw, 6rem); text-transform: uppercase; }
.notfound .lead { margin-inline: auto; }
.notfound .hero-actions { justify-content: center; }

.guide-banner { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding: 16px 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--text); }
.guide-banner:hover { color: var(--text); border-color: rgba(57, 255, 159, 0.45); }
.guide-banner span { display: flex; flex-direction: column; flex: 1; }
.guide-banner small { color: var(--dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.guide-banner b { font-family: var(--display); }
.guide-banner .ico { color: var(--xp); width: 22px; height: 22px; }

/* ------------------------------------------------ review */
.review-hero { position: relative; padding: 30px 0 36px; }
.review-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 15% 30%, color-mix(in srgb, var(--brand1) 22%, transparent), transparent 70%); pointer-events: none; }
.review-hero-grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: center; }
.rh-id { display: flex; gap: 24px; align-items: flex-start; }
.logo-lg { width: 112px; height: 112px; flex: none; filter: drop-shadow(0 10px 30px color-mix(in srgb, var(--brand1) 45%, transparent)); }
.rh-id h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 8px; }
.rh-id .lead { margin-bottom: 14px; }
.bonus-panel { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; padding: 24px; background: linear-gradient(160deg, color-mix(in srgb, var(--rc) 14%, var(--panel)), var(--panel) 60%); border: 1px solid color-mix(in srgb, var(--rc) 45%, transparent); border-radius: var(--r); box-shadow: 0 0 60px -26px var(--rc), var(--shadow); }
.bp-head { font: 700 1.5rem/1.2 var(--display); }
.bonus-panel p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.bonus-panel .lc-terms { border: 0; padding: 0; }
@media (max-width: 960px) { .review-hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .rh-id { flex-direction: column; gap: 16px; } .logo-lg { width: 80px; height: 80px; } }

.review-layout, .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; padding-block: 24px 40px; align-items: start; }
.article-layout { grid-template-columns: 240px minmax(0, 1fr); max-width: 1100px; }
.review-side { position: sticky; top: 86px; }
.sheet { padding: 22px; background: var(--panel); border: 1px solid color-mix(in srgb, var(--rc) 35%, var(--line)); border-radius: var(--r); display: grid; gap: 20px; }
.sheet-head { display: flex; gap: 16px; align-items: center; }
.sheet-head > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.sheet-head b { font: 700 1.3rem/1 var(--display); }
.facts { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.facts div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.facts dt { color: var(--dim); }
.facts dd { margin: 0; text-align: right; font-weight: 500; }
.sheet .lc-terms { grid-area: auto; border: 0; padding: 0; margin: -8px 0 0; }
.sheet .lc-terms a { color: var(--muted); }
@media (max-width: 1000px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-side { position: static; order: -1; }
  .article-layout { grid-template-columns: 1fr; }
}

.prose { font-size: 1.04rem; min-width: 0; }
.prose > h2 { margin-top: 1.8em; padding-top: 0.2em; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { margin-top: 1.5em; }
.prose p, .prose li { color: #d3d6f0; }
.prose ul:not(.chips), .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--xp); }
.prose strong { color: var(--text); }
.prose blockquote { margin: 1.5em 0; padding: 14px 20px; border-left: 3px solid var(--xp); background: var(--panel); border-radius: 0 8px 8px 0; }
.prose blockquote p { margin: 0; color: var(--text); }
.prose .faq { margin-top: 2.4em; }
.prose table { font-size: 0.9rem; }
.verdict { padding: 22px 24px; background: linear-gradient(110deg, rgba(57, 255, 159, 0.08), var(--panel) 55%); border: 1px solid rgba(57, 255, 159, 0.28); border-radius: var(--r); margin-bottom: 20px; }
.verdict h2 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--xp); margin: 0 0 8px; }
.verdict p { margin: 0; color: var(--text); font-size: 1.08rem; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 10px; }
.pc { padding: 18px 20px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.pc h3 { font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.pc-pro h3 { color: var(--xp); }
.pc-con h3 { color: var(--bad); }
.pc-con .ico { color: var(--bad); margin-top: 2px; }
.pc li { color: #d3d6f0; }
@media (max-width: 640px) { .pc-grid { grid-template-columns: 1fr; } }
.best-in { margin-top: 1.4em; font-size: 0.92rem; color: var(--dim); }

.toc { position: sticky; top: 86px; font-size: 0.9rem; }
.toc ol { list-style: none; margin: 12px 0 0; padding: 0 0 0 12px; border-left: 1px solid var(--line-2); display: grid; gap: 8px; }
.toc a { color: var(--muted); text-decoration: none; display: block; line-height: 1.35; }
.toc a:hover, .toc a.is-active { color: var(--xp); }
@media (max-width: 1000px) { .toc { position: static; padding: 16px 18px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); } }
.article-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 2.4em; padding: 20px 22px; background: var(--panel); border: 1px solid rgba(57, 255, 159, 0.3); border-radius: var(--r); }
.article-cta div { display: flex; flex-direction: column; }
.article-cta b { font: 700 1.15rem var(--display); }
.article-cta span { color: var(--muted); font-size: 0.92rem; }

.mobile-cta { display: none; }
@media (max-width: 720px) {
  .has-mobile-cta .mobile-cta {
    position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 10px 10px 16px; background: rgba(16, 19, 42, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--line-2); border-radius: 12px; box-shadow: var(--shadow);
    transform: translateY(140%); transition: transform 0.3s;
  }
  .has-mobile-cta .mobile-cta.is-shown { transform: none; }
  .mobile-cta div { display: flex; flex-direction: column; min-width: 0; }
  .mobile-cta b { font-family: var(--display); }
  .mobile-cta span { font-size: 0.8rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .has-mobile-cta .site-footer { padding-bottom: 96px; }
}

/* ------------------------------------------------ age gate & toast */
.age-gate { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 16px; background: rgba(4, 5, 10, 0.82); backdrop-filter: blur(8px); }
.age-gate[hidden] { display: none; }
.age-card { width: 100%; max-width: 440px; padding: 30px 28px 24px; text-align: center; background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: 0 0 80px -30px var(--xp), var(--shadow); }
.age-badge { margin: 0 auto 16px; }
.age-card h2 { text-transform: uppercase; letter-spacing: 0.04em; }
.age-card p { color: var(--muted); }
.age-actions { display: grid; gap: 10px; margin: 20px 0 14px; }
.age-small { font-size: 0.78rem; margin: 0; }
.age-small a { color: var(--muted); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 210; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; background: var(--xp); color: #03140c; font: 700 0.9rem var(--display); padding: 10px 16px; border-radius: 8px; transition: all 0.25s; }
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ------------------------------------------------ motion */
.js [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, box-shadow 0.2s; }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js .loot-card[data-reveal].is-in:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js [data-reveal]:not(.is-in) .xp-bar i { width: var(--v); }
}

@media print {
  .site-header, .site-footer, .age-gate, .mobile-cta, .demo-banner, .filters { display: none !important; }
  body { background: #fff; color: #000; }
}
