:root {
  --bg: #090c12;
  --bg-soft: #111520;
  --card: #141926;
  --card-2: #1a2035;
  --border: #1f2840;
  --border-soft: #1a2236;
  --text: #e4eaf8;
  --muted: #8a98b8;
  --accent: #21c17a;
  --accent-dark: #17a060;
  --accent-2: #1a72ff;
  --gold: #ffb020;
  --gold-dark: #e07800;
  --red: #ef4444;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.65);
  --glow-green: 0 0 24px rgba(33,193,122,.25);
  --glow-gold: 0 0 24px rgba(255,176,32,.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 50% -100px, rgba(33,193,122,.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 90% 60%, rgba(26,114,255,.05) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* ── Fade-in on scroll ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Live ticker ── */
.ticker-wrap {
  background: linear-gradient(90deg, rgba(33,193,122,.12), rgba(26,114,255,.08), rgba(33,193,122,.12));
  border-bottom: 1px solid rgba(33,193,122,.18);
  padding: 7px 0; overflow: hidden;
}
.ticker-inner { display: flex; gap: 0; white-space: nowrap; animation: ticker 38s linear infinite; }
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 0 36px; text-decoration: none; transition: color .15s;
}
.ticker-item:hover { color: var(--text); }
.ticker-item strong { color: var(--accent); }
.ticker-item .ticker-amount { color: var(--gold); font-weight: 700; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .6; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(9,12,18,.82);
  border-bottom: 1px solid rgba(31,40,64,.9);
  box-shadow: 0 1px 0 rgba(255,255,255,.025), 0 4px 20px rgba(0,0,0,.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 66px; }
.logo {
  font-weight: 800; font-size: 22px; letter-spacing: -0.6px; margin-right: auto; white-space: nowrap;
  background: linear-gradient(110deg, #fff 0%, #b8e8d4 60%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo span { -webkit-text-fill-color: var(--accent); }
nav.menu { display: flex; gap: 12px; align-items: center; }
nav.menu .menu-links { display: flex; gap: 2px; }
nav.menu .menu-links a {
  color: var(--muted); font-size: 14px; font-weight: 600; white-space: nowrap;
  padding: 7px 13px; border-radius: 9px; transition: color .15s, background .15s;
}
nav.menu .menu-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.lang-switch { display: flex; gap: 6px; margin-left: 6px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-toggle.on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.on span:nth-child(2) { opacity: 0; }
.nav-toggle.on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.lang-switch { display: flex; gap: 6px; }
.lang-switch a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 4px 9px; border: 1px solid var(--border);
  border-radius: 8px; color: var(--muted); transition: border-color .15s, color .15s, background .15s;
}
.lang-switch a:hover { border-color: var(--accent); color: var(--text); }
.lang-switch a.active { background: var(--accent); color: #04140c; border-color: var(--accent); font-weight: 700; }
.flag { width: 18px; height: 13px; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.18) inset; display: block; }
/* footer language switcher keeps full names — hide flags there */
footer .lang-switch a .flag { display: none; }

/* header language dropdown (collapsible — clean with many languages) */
.lang-dd { position: relative; }
.lang-dd > summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--text);
  padding: 5px 10px; border: 1px solid var(--border); border-radius: 9px; background: var(--card);
  transition: border-color .15s;
}
.lang-dd > summary::-webkit-details-marker { display: none; }
.lang-dd > summary:hover, .lang-dd[open] > summary { border-color: var(--accent); }
.lang-dd .caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--muted); transition: transform .15s; }
.lang-dd[open] .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 70; min-width: 172px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 6px;
  box-shadow: 0 16px 32px rgba(0,0,0,.5); display: flex; flex-direction: column; gap: 2px;
}
.lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.lang-menu a:hover { background: rgba(255,255,255,.06); }
.lang-menu a.on { background: var(--accent); color: #04140c; }
.lang-menu .flag { width: 22px; height: 16px; }

/* Hero */
.hero {
  text-align: center; padding: 80px 0 52px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(33,193,122,.1) 0%, transparent 65%),
    radial-gradient(ellipse 500px 300px at 20% 100%, rgba(26,114,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(33,193,122,.12); border: 1px solid rgba(33,193,122,.28);
  color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
  max-width: 100%; box-sizing: border-box; white-space: nowrap;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(32px, 6.5vw, 58px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #c8e8d8 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.hero p { color: var(--muted); font-size: 18px; max-width: 600px; margin: 0 auto 30px; line-height: 1.65; }
.hero-trust-mini {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
}
.htm-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.htm-val { font-size: 22px; font-weight: 900; color: var(--accent); letter-spacing: -0.5px; }
.htm-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.htm-div { width: 1px; height: 36px; background: var(--border); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 12px; cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
  white-space: nowrap; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #03120a; box-shadow: 0 4px 20px rgba(33,193,122,.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(33,193,122,.5); filter: brightness(1.05); }
.btn-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0d00; box-shadow: 0 4px 20px rgba(255,176,32,.3);
}
.btn-accent:hover { box-shadow: 0 6px 28px rgba(255,176,32,.45); filter: brightness(1.05); }
.btn-ghost {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--text); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.btn-outline-green {
  background: transparent; border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline-green:hover { background: rgba(33,193,122,.1); }

/* Ranking */
.section-title { font-size: 24px; font-weight: 800; margin: 48px 0 20px; letter-spacing: -.4px; }
.ranking { display: flex; flex-direction: column; gap: 12px; }

/* ── Standard casino card ── */
.casino-card {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.casino-card:hover {
  border-color: rgba(33,193,122,.4); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(33,193,122,.1);
}
.rank-num {
  font-size: 20px; font-weight: 900; color: var(--muted); text-align: center;
  line-height: 1; min-width: 28px;
}
.casino-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.casino-card.top { border-color: rgba(255,176,32,.3); background: linear-gradient(135deg, var(--card) 0%, rgba(255,176,32,.04) 100%); }
.casino-card.top .rank-num { color: var(--gold); }

/* ── Featured card (rank #1) ── */
.casino-card.featured {
  grid-template-columns: 1fr;
  padding: 0; overflow: hidden;
  border: 1px solid rgba(33,193,122,.35);
  background: linear-gradient(135deg, rgba(33,193,122,.06) 0%, var(--card) 50%, rgba(26,114,255,.04) 100%);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), var(--glow-green);
}
.featured-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px 8px; gap: 10px; flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(33,193,122,.15), rgba(33,193,122,.05));
  border-bottom: 1px solid rgba(33,193,122,.15);
}
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
.featured-label svg { flex-shrink: 0; }
.featured-rank { font-size: 11px; color: var(--muted); font-weight: 600; }
.featured-body {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 18px;
  align-items: center; padding: 20px;
}
.casino-card.featured .casino-actions { min-width: 150px; }

.casino-head { display: flex; align-items: center; gap: 12px; }
.casino-head-info { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.casino-badge-row { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 1px; }
.casino-logo {
  width: 44px; height: 44px; border-radius: 11px; flex: none; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 19px;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.casino-logo .ll { position: relative; z-index: 1; }
.casino-logo .lo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 5px; z-index: 2;
}
.casino-name { font-size: 17px; font-weight: 800; letter-spacing: -.2px; }

/* Star rating */
.stars { display: flex; gap: 2px; margin-top: 1px; }
.star { font-size: 13px; line-height: 1; }
.star.full { color: var(--gold); }
.star.half { color: var(--gold); opacity: .55; }
.star.empty { color: var(--border); }

.casino-bonus {
  color: var(--accent); font-size: 14px; font-weight: 700;
  background: rgba(33,193,122,.08); display: inline-block;
  padding: 3px 10px; border-radius: 7px; border: 1px solid rgba(33,193,122,.15);
}
.card-meta { color: var(--muted); font-size: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chip {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 20px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
}
/* Colored crypto chips */
.chip-BTC  { background: rgba(247,147,26,.1);  color: #f7931a; border-color: rgba(247,147,26,.3); }
.chip-ETH  { background: rgba(98,126,234,.12); color: #8a9ff8; border-color: rgba(98,126,234,.3); }
.chip-LTC  { background: rgba(190,190,190,.1); color: #c0c0c0; border-color: rgba(190,190,190,.3); }
.chip-USDT { background: rgba(38,161,123,.12); color: #26a17b; border-color: rgba(38,161,123,.3); }
.chip-DOGE { background: rgba(203,173,84,.12);  color: #cbad54; border-color: rgba(203,173,84,.3); }
.chip-XRP  { background: rgba(0,155,188,.12);  color: #009bbc; border-color: rgba(0,155,188,.3); }
.chip-BNB  { background: rgba(240,185,11,.12);  color: #f0b90b; border-color: rgba(240,185,11,.3); }
.chip-SOL  { background: rgba(153,69,255,.12);  color: #9945ff; border-color: rgba(153,69,255,.3); }
.chip-TRX  { background: rgba(255,6,10,.1);  color: #ff4c4c; border-color: rgba(255,6,10,.25); }

.casino-actions { display: flex; flex-direction: column; gap: 8px; min-width: 140px; }
.casino-actions .btn { padding: 10px 18px; font-size: 13px; text-align: center; }

/* Facts grid */
.block-title { font-size: 18px; font-weight: 700; margin: 28px 0 12px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fact {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 4px;
}
.fact-k { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.fact-v { color: var(--text); font-size: 15px; font-weight: 700; }

/* Review */
.review-hero { display: flex; align-items: center; gap: 20px; padding: 40px 0 24px; flex-wrap: wrap; }
.review-hero .casino-logo { width: 64px; height: 64px; font-size: 26px; }
.review-hero h1 { font-size: 34px; font-weight: 800; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.proscons .box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.proscons h3 { font-size: 16px; margin-bottom: 12px; }
.proscons ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.proscons li { font-size: 14px; color: var(--text); padding-left: 24px; position: relative; }
.box.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.box.cons li::before { content: "✕"; position: absolute; left: 0; color: #ff5a3c; font-weight: 800; }
/* ===== Mirror links page ===== */
.mirrors-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.mirror-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.mirror-card-head { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mirror-card-meta { display: flex; flex-direction: column; gap: 3px; }
.mirror-card-name { font-size: 16px; font-weight: 700; color: var(--fg); text-decoration: none; }
.mirror-card-name:hover { color: var(--accent); }
.mirror-card-rating { font-size: 13px; color: var(--muted); }
.mirror-card-links { padding: 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.mirror-row-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 16px; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.mirror-row-link:hover { border-color: var(--accent); background: rgba(33,193,122,.06); }
.mirror-row-host { font-size: 14px; font-weight: 600; color: var(--fg); }
.mirror-row-btn { font-size: 13px; font-weight: 700; color: var(--accent); }
.mirror-none { color: var(--muted); font-size: 13px; padding: 4px 0; }

/* ===== Mirror access banner ===== */
.mirror-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(255,180,0,.07); border: 1px solid rgba(255,180,0,.25);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 18px;
}
.mirror-ico { font-size: 22px; flex-shrink: 0; }
.mirror-txt { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 2px; }
.mirror-txt strong { color: var(--fg); font-size: 14px; font-weight: 700; }
.mirror-txt span { color: var(--muted); font-size: 12.5px; }
.mirror-link {
  display: inline-flex; align-items: center;
  background: rgba(255,180,0,.13); border: 1px solid rgba(255,180,0,.3);
  color: #f5c542; font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 8px; text-decoration: none;
  white-space: nowrap; transition: background .15s, border-color .15s;
}
.mirror-link:hover { background: rgba(255,180,0,.22); border-color: rgba(255,180,0,.5); }

.bonus-banner {
  background: linear-gradient(90deg, rgba(33,193,122,.14), rgba(26,114,255,.1));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; margin: 24px 0;
}
.bonus-banner .label { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.bonus-banner .val { font-size: 22px; font-weight: 800; color: var(--accent); margin: 6px 0 16px; }
.back-link { color: var(--muted); font-size: 14px; display: inline-block; margin-top: 30px; }

/* Blog */
.page-title { font-size: 30px; font-weight: 800; margin: 40px 0 24px; }
.article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.article-card {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: border-color .15s, transform .15s;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.article-card h3 { font-size: 18px; font-weight: 700; margin: 8px 0; }
.article-card p { color: var(--muted); font-size: 14px; }
.article-date { color: var(--muted); font-size: 12px; letter-spacing: .5px; }
.read-more { color: var(--accent); font-size: 13px; font-weight: 700; display: inline-block; margin-top: 12px; }
.article { max-width: 760px; }
.article-title { font-size: 32px; font-weight: 800; margin: 14px 0 6px; line-height: 1.2; }
.article-body { margin-top: 24px; font-size: 17px; }
.article-body h2 { font-size: 22px; font-weight: 700; margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; color: #cdd6e6; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; color: #cdd6e6; }
.article-body li { margin-bottom: 6px; }
.article-body h3 { font-size: 19px; font-weight: 700; margin: 22px 0 8px; }
.article-body h4 { font-size: 16px; font-weight: 700; margin: 18px 0 6px; }
.article-body blockquote { border-left: 3px solid var(--accent); margin: 16px 0; padding: 4px 0 4px 16px; color: var(--muted); font-style: italic; }
.news-src { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); }
.news-src a { color: var(--accent); font-weight: 600; }

/* Games */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sec-link { color: var(--accent); font-size: 14px; font-weight: 700; white-space: nowrap; }
/* professional filter bar */
.games-head { display: flex; align-items: baseline; gap: 14px; margin: 40px 0 18px; }
.games-head .page-title { margin: 0; }
.games-count {
  font-size: 13px; font-weight: 700; color: var(--accent);
  background: rgba(33,193,122,.12); padding: 4px 12px; border-radius: 20px;
}
/* ===== Games filter bar — sticky scrollable ===== */
.filter-bar {
  position: sticky;
  top: 68px;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,14,20,.88);
  border-bottom: 1px solid rgba(35,43,62,.7);
  margin: 0 -20px 24px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
}
.filter-scroll {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 9px 0;
  flex-wrap: nowrap;
  /* fade right edge — hints at more scrollable content */
  -webkit-mask-image: linear-gradient(to right, black 0%, black calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black calc(100% - 36px), transparent 100%);
}
.filter-scroll::-webkit-scrollbar { display: none; }

/* All/New/Top segment — only "boxed" element */
.fseg {
  display: flex;
  background: rgba(19,24,38,.9);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 3px;
  gap: 1px;
  flex-shrink: 0;
}
.fseg .fchip {
  border: 0;
  background: transparent;
  border-radius: 6px;
  white-space: nowrap;
  padding: 5px 13px;
  color: var(--muted);
}
.fseg .fchip:hover { background: rgba(255,255,255,.06); color: var(--fg); }
.fseg .fchip.on { background: var(--accent); color: #04140c; box-shadow: none; }

/* thin divider */
.fsep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; margin: 0 5px; opacity: .6; }

/* ghost chips — transparent until touched */
.fchip {
  font-size: 13px; font-weight: 600; color: var(--muted);
  background: transparent; border: 1px solid transparent;
  padding: 6px 12px; border-radius: 8px;
  transition: color .12s, background .12s, border-color .12s;
  cursor: pointer; text-decoration: none; white-space: nowrap; flex-shrink: 0; display: inline-block;
}
.fchip:hover { color: var(--fg); background: rgba(255,255,255,.05); border-color: rgba(35,43,62,.9); }
.fchip.on {
  color: var(--accent); background: rgba(33,193,122,.12);
  border-color: rgba(33,193,122,.35); font-weight: 700;
  box-shadow: 0 0 12px rgba(33,193,122,.15);
}

/* ===== Provider row — horizontal scrollable strip below filter-bar ===== */
.prov-row {
  margin: -4px -20px 20px;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(10,13,20,.6);
  border-bottom: 1px solid rgba(35,43,62,.55);
}
.prov-row::-webkit-scrollbar { display: none; }
.prov-row-inner {
  display: flex;
  gap: 6px;
  padding: 10px 0;
  flex-wrap: nowrap;
  width: max-content;
}
.prov-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px 6px 9px; border-radius: 20px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--muted); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .14s, border-color .14s, color .14s;
}
.prov-chip:hover {
  border-color: rgba(33,193,122,.35); color: var(--fg);
  background: rgba(33,193,122,.07);
}
.prov-chip.on {
  background: rgba(33,193,122,.14); border-color: rgba(33,193,122,.5);
  color: var(--accent); font-weight: 700;
  box-shadow: 0 0 10px rgba(33,193,122,.12);
}
.prov-logo {
  width: 22px; height: 22px; border-radius: 6px;
  object-fit: contain; background: rgba(255,255,255,.1); flex: none;
}
.prov-chip.on .prov-logo { background: rgba(4,20,12,.25); }
.game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.game-card {
  display: block; width: 100%; text-align: left; padding: 0; cursor: pointer; font: inherit; color: inherit;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.game-card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 12px 32px rgba(0,0,0,.65), 0 0 0 2px rgba(33,193,122,.65);
}
.game-thumb {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background-size: cover; background-position: center;
}
.gletter { font-size: 38px; font-weight: 800; color: rgba(255,255,255,.85); }
.gimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-card:hover .gimg { transform: scale(1.06); }
/* play overlay — appears on hover for demo games */
.play-ov {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(4,8,14,.55); opacity: 0; transition: opacity .18s; z-index: 4;
}
.game-card:hover .play-ov, .demo-poster:hover .play-ov { opacity: 1; }
.play-btn {
  width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #04140c;
  display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 3px;
  box-shadow: 0 4px 20px rgba(33,193,122,.55);
  transition: transform .15s;
}
.game-card:hover .play-btn { transform: scale(1.1); }
.play-btn.big { width: 76px; height: 76px; font-size: 30px; }
/* info overlay — always visible at bottom of thumbnail */
.gmeta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 36px 10px 9px;
  background: linear-gradient(to top, rgba(0,0,0,.93) 0%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.gmeta-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.gname {
  display: block; font-size: 13px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px;
}
.gprov { font-size: 11px; color: rgba(255,255,255,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Play for Real pill — shown in gmeta for no-demo games */
.play-real {
  background: linear-gradient(135deg, var(--gold), #e07800); color: #1a0d00;
  font-weight: 800; font-size: 10px; padding: 3px 9px; border-radius: 99px;
  white-space: nowrap; flex-shrink: 0;
}
/* badges — top-left corner */
.gbadges { position: absolute; top: 8px; left: 8px; z-index: 5; display: flex; gap: 4px; }
.gbadge { font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px; }
.gbadge.new { background: var(--accent-2); color: #fff; }
.gbadge.top { background: var(--gold); color: #2a1500; }
/* load more */
.load-more-wrap { display: flex; justify-content: center; margin: 36px 0 12px; }
.load-more { padding: 13px 48px; border-radius: 99px; font-size: 14px; font-weight: 700; letter-spacing: .3px; }
/* game detail */
.game-hero { padding: 24px 0 14px; }
.game-hero h1 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.demo-poster {
  display: block; width: 100%; padding: 0; border: 1px solid var(--border); cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: #10141f;
}
.demo-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.demo-thumb .gletter { font-size: 80px; }
.demo-note { color: var(--muted); font-size: 13px; margin-top: 10px; }
.game-cta { margin: 18px 0 40px; }

/* Game demo popup */
.gmodal {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(5,7,11,.82); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.gmodal.on { display: flex; }
.gm-box {
  width: min(960px, 100%); max-height: 92vh; display: flex; flex-direction: column;
  background: #0b0e14; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.gm-bar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.gm-title { font-weight: 700; font-size: 15px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gm-play {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--accent), #14b86a);
  color: #04130b; font-weight: 800; font-size: 14px; letter-spacing: .2px;
  padding: 9px 22px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(34,197,94,.35); transition: transform .12s ease, box-shadow .12s ease;
}
.gm-play:hover { transform: translateX(-50%) translateY(-1px); box-shadow: 0 6px 22px rgba(34,197,94,.5); }
@media (max-width: 560px) {
  .gm-play { position: static; transform: none; padding: 8px 14px; font-size: 12.5px; }
  .gm-play:hover { transform: translateY(-1px); }
  .gm-title { flex: 0 1 auto; }
}
.gm-actions { display: flex; align-items: center; gap: 10px; }
.gm-newtab { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.gm-newtab:hover { text-decoration: underline; }
.gm-close {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  width: 34px; height: 34px; border-radius: 9px; cursor: pointer; font-size: 16px; line-height: 1;
}
.gm-close:hover { border-color: var(--accent); color: var(--accent); }
.gm-frame-wrap { position: relative; width: 100%; aspect-ratio: 16/10; background: #000; }
.gm-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* News — magazine layout */
.news-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin-bottom: 26px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.news-featured:hover { border-color: var(--accent); transform: translateY(-2px); }
.nf-img { background-size: cover; background-position: center; min-height: 280px; }
.nf-body { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.nf-meta { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px; }
.nf-title { font-size: 25px; font-weight: 800; line-height: 1.25; margin: 10px 0; }
.nf-ex { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ncard {
  display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .15s, transform .15s;
}
.ncard:hover { border-color: var(--accent); transform: translateY(-3px); }
.nc-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.nc-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.nc-meta { color: var(--muted); font-size: 12px; letter-spacing: .3px; }
.nc-title { font-size: 16px; font-weight: 700; line-height: 1.3; }
.news-hero { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin: 16px 0; display: block; }
@media (max-width: 820px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .news-featured { grid-template-columns: 1fr; }
  .nf-img { min-height: 190px; }
  .nf-body { padding: 20px; }
  .news-grid { grid-template-columns: 1fr; }
}

/* Footer */
footer { border-top: 1px solid var(--border); margin-top: 60px; padding: 48px 0 24px; color: var(--muted); font-size: 13px; }
.ft-main { display: grid; grid-template-columns: 260px 1fr; gap: 48px; margin-bottom: 32px; }
.ft-brand { display: flex; flex-direction: column; gap: 14px; }
.ft-logo {
  font-weight: 800; font-size: 22px; letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fff, #cfe9dd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ft-logo span { -webkit-text-fill-color: var(--accent); }
.ft-tagline { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 220px; }
.rg-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.rg-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 9px; font-size: 11px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: border-color .15s, color .15s; white-space: nowrap; }
.rg-badge:hover { border-color: var(--accent); color: var(--text); }
.rg-18 { background: #c0392b; color: #fff; border-radius: 3px; padding: 1px 4px; font-size: 10px; font-weight: 800; }
.ft-tg {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #04140c; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 700; width: fit-content;
  transition: background .15s, transform .15s; }
.ft-tg:hover { background: #1fd47a; transform: translateY(-2px); }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ft-col { display: flex; flex-direction: column; gap: 0; }
.ft-col-h { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.ft-col a { color: var(--muted); font-size: 13px; padding: 4px 0; transition: color .15s; }
.ft-col a:hover { color: var(--accent); }
.ft-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--border); padding-top: 16px; }
.ft-copy { font-size: 12px; }
.disclaimer { font-size: 11.5px; margin-bottom: 4px; display: block; }
@media (max-width: 820px) {
  .ft-main { grid-template-columns: 1fr; gap: 28px; }
  .ft-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .ft-col:last-child { grid-column: 1 / -1; }
}
/* about / privacy / responsible pages */
.about-section { margin: 32px 0; }
.about-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.about-section p, .about-section ul { color: var(--muted); line-height: 1.7; }
.about-criteria { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.about-criteria li { color: var(--accent); font-weight: 600; }
.rg-intro { color: var(--muted); font-size: 15px; margin: 8px 0 24px; line-height: 1.7; }
.rg-list { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; color: var(--muted); line-height: 1.6; }
.rg-org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.rg-org-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 4px;
  text-decoration: none; transition: border-color .15s, transform .15s; }
.rg-org-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.rg-org-card strong { color: var(--text); font-size: 13.5px; }
.rg-org-card span { color: var(--muted); font-size: 12px; line-height: 1.4; }
@media (max-width: 640px) { .rg-org-grid { grid-template-columns: 1fr; } }

/* nav collapses to a hamburger early (we have several menu items) */
@media (max-width: 900px) {
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
  nav.menu { gap: 8px; }
  nav.menu .menu-links {
    display: none; position: absolute; top: calc(100% + 1px);
    left: 50%; width: 100vw; margin-left: -50vw;
    flex-direction: column; gap: 0; background: var(--bg-soft);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 8px 0; box-shadow: 0 16px 30px rgba(0,0,0,.45); z-index: 60;
  }
  nav.menu.open .menu-links { display: flex; }
  nav.menu .menu-links a {
    padding: 15px 28px; font-size: 15.5px; font-weight: 600; color: var(--text);
    border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
  }
  nav.menu .menu-links a:last-child { border-bottom: 0; }
  nav.menu .menu-links a:active,
  nav.menu .menu-links a:hover { background: rgba(255,255,255,.05); color: var(--accent); }
  /* language dropdown stays compact on phones; menu opens to the right edge */
  .lang-menu { right: -8px; min-width: 160px; }
}
@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 820px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 680px) {
  .casino-card { grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
  .casino-card.featured .featured-body { grid-template-columns: 48px 1fr; gap: 12px; }
  .casino-actions { grid-column: 1 / -1; flex-direction: row; }
  .casino-actions .btn { flex: 1; }
  .proscons { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .article-list { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero { padding: 48px 0 32px; }
  .section-title { font-size: 21px; }
  .gmodal { padding: 0; }
  .gm-box { width: 100%; height: 100%; max-height: 100%; border-radius: 0; border: 0; }
  .gm-frame-wrap { flex: 1; aspect-ratio: auto; height: auto; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .featured-body .casino-actions { display: none; }
  .newsletter-section { padding: 28px 18px; }
  .nl-form { flex-direction: column; align-items: stretch; }
  .hero-trust-mini { gap: 14px; }
  .htm-val { font-size: 18px; }
}
@media (max-width: 420px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gletter { font-size: 32px; }
  .htm-div { display: none; }
}

/* ===== Casino review (detail) page ===== */
.review-page { padding-bottom: 50px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 22px 0 4px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: #4a5673; }
.crumbs .crumb-cur { color: var(--text); font-weight: 600; }

.review-hero { align-items: center; }
.review-hero .rh-meta { flex: 1; min-width: 220px; }
.review-hero h1 { font-size: 30px; line-height: 1.15; }
.rh-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.rh-cta { white-space: nowrap; }
.review-lead { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 760px; margin: 4px 0 6px; }

.bonus-banner { display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; }
.bonus-banner .val { margin: 6px 0 0; }
.bonus-banner .btn { white-space: nowrap; }

.review-cols { display: grid; grid-template-columns: 1.7fr 1fr; gap: 26px; margin: 10px 0 8px; align-items: start; }
.review-main { min-width: 0; }
.review-about { color: var(--text); opacity: .92; font-size: 15.5px; line-height: 1.75; margin-bottom: 6px; }

.review-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 16px; }
.side-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.side-card h3 { font-size: 15px; margin-bottom: 14px; }
.side-card .facts { grid-template-columns: 1fr 1fr; gap: 10px; }
.side-note { color: var(--muted); font-size: 13px; margin-bottom: 12px; }

.scores { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 10px; }
.score-k { color: var(--muted); font-size: 13px; grid-column: 1; }
.score-v { color: var(--text); font-weight: 800; font-size: 14px; grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.score-bar { grid-column: 1; height: 7px; border-radius: 6px; background: var(--bg-soft); overflow: hidden; }
.score-bar i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), #19a868); }

.steps { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 6px 0 4px; counter-reset: s; }
.steps li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text); }
.step-n { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: rgba(33,193,122,.14);
  color: var(--accent); font-weight: 800; display: grid; place-items: center; font-size: 14px; }

.feats-chips { margin: 22px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chip-crypto { color: var(--text); font-weight: 700; background: var(--bg-soft); }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 0 18px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 700; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-a { color: var(--muted); font-size: 14.5px; line-height: 1.7; padding: 14px 0 18px; }

.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rel-card { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 14px; transition: .15s; }
.rel-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.rel-card .casino-logo { width: 52px; height: 52px; font-size: 22px; }
.rel-name { font-weight: 700; font-size: 15px; color: var(--text); }
.rel-rating { font-size: 13px; color: var(--accent); font-weight: 700; }

@media (max-width: 860px) {
  .review-cols { grid-template-columns: 1fr; }
  .review-side { position: static; }
  .side-card .facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .review-hero { padding-top: 18px; }
  .review-hero h1 { font-size: 24px; }
  .rh-cta { width: 100%; text-align: center; }
  .bonus-banner { flex-direction: column; text-align: center; }
  .rel-grid { grid-template-columns: 1fr; }
}

/* ===== Footer contact (Telegram) ===== */
.footer-contact { display: flex; justify-content: center; margin: 6px 0 14px; }
.tg-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #04140c; font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: 999px; transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(33,193,122,.25);
}
.tg-link:hover { background: #1fd47a; transform: translateY(-2px); box-shadow: 0 4px 18px rgba(33,193,122,.4); }
.tg-link svg { display: block; }

/* ===== Big Wins gallery — click opens gmodal popup ===== */
.bw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
.bw-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer; display: block; width: 100%; padding: 0; text-align: left;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.bw-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 22px 56px rgba(0,0,0,.72), 0 0 0 1px rgba(33,193,122,.28);
  border-color: rgba(33,193,122,.22); }
.bw-video {
  position: relative; width: 100%; aspect-ratio: 339/190;
  background: #0d1020 no-repeat center / cover; overflow: hidden; }
/* cinematic bottom gradient */
.bw-video::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 10%, rgba(0,0,0,.12) 40%,
    rgba(8,10,20,.78) 72%, rgba(6,8,16,.95) 100%);
  transition: opacity .22s; }
.bw-card:hover .bw-video::before { opacity: .9; }
/* subtle image zoom on hover via scale */
.bw-video { transition: background-size .35s ease; }
.bw-card:hover .bw-video { background-size: 108%; }
/* center play button */
.bw-play {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%,-50%);
  z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.32);
  background: rgba(33,193,122,.82); backdrop-filter: blur(5px);
  color: #fff; font-size: 17px;
  display: flex; align-items: center; justify-content: center; padding-left: 3px;
  pointer-events: none;
  opacity: .75;
  transition: opacity .18s, transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .18s; }
.bw-card:hover .bw-play {
  opacity: 1; transform: translate(-50%,-50%) scale(1.18);
  box-shadow: 0 0 0 10px rgba(33,193,122,.18), 0 4px 20px rgba(33,193,122,.5); }
/* info overlay inside image — bottom area */
.bw-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px 12px; z-index: 3;
  display: flex; flex-direction: column; gap: 2px; }
/* multiplier — the hero number */
.bw-badge {
  font-size: 24px; font-weight: 900; letter-spacing: -1px; line-height: 1.1;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,.85), 0 0 28px rgba(255,176,32,.28); }
/* game name */
.bw-title {
  font-size: 12.5px; font-weight: 600; margin: 0; line-height: 1.3;
  color: rgba(255,255,255,.92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* provider */
.bw-game { font-size: 11px; color: rgba(255,255,255,.45); }
@media (max-width: 900px) { .bw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .bw-grid { grid-template-columns: 1fr; } }

/* ── Safety Score badge ── */
.score-badge {
  display: inline-flex; align-items: baseline; gap: 2px; flex: none;
  font-size: 15px; font-weight: 800; padding: 4px 10px; border-radius: 8px;
  line-height: 1;
}
.score-badge small { font-size: 10px; font-weight: 600; opacity: .7; }
.score-high { background: rgba(33,193,122,.15); color: #21c17a; border: 1px solid rgba(33,193,122,.3); }
.score-med  { background: rgba(255,176,32,.12); color: var(--gold);  border: 1px solid rgba(255,176,32,.25); }
.score-low  { background: rgba(239,68,68,.12);  color: #f87171;      border: 1px solid rgba(239,68,68,.25); }

/* ── Withdrawal badge ── */
.wd-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 5px;
  background: rgba(33,193,122,.1); color: var(--accent);
  border: 1px solid rgba(33,193,122,.2);
}

/* ── Casino feature badges ── */
.cbadge {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  padding: 2px 7px; border-radius: 5px;
  background: var(--bg-soft); color: var(--muted);
  border: 1px solid var(--border);
}
.cbadge-hot       { background: rgba(255,90,60,.1);  color: #ff6b4a; border-color: rgba(255,90,60,.25); }
.cbadge-noKyc     { background: rgba(99,102,241,.1); color: #a5b4fc; border-color: rgba(99,102,241,.3); }
.cbadge-highRoller{ background: rgba(255,176,32,.1); color: var(--gold); border-color: rgba(255,176,32,.25); }
.cbadge-staking   { background: rgba(33,193,122,.1); color: var(--accent); border-color: rgba(33,193,122,.2); }
.cbadge-rakeback  { background: rgba(26,114,255,.1); color: #60a5fa; border-color: rgba(26,114,255,.25); }
.cbadge-veteran   { background: rgba(148,163,184,.1); color: #94a3b8; border-color: rgba(148,163,184,.2); }

/* ── Search bar ── */
.search-wrap { position: relative; flex: 0 1 260px; }
.site-search {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 16px 8px 36px; font-size: 13px; color: var(--text);
  outline: none; transition: border-color .15s;
}
.search-wrap::before {
  content: '🔍'; position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  font-size: 13px; pointer-events: none; opacity: .5;
}
.site-search:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(33,193,122,.15); }
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 320px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  z-index: 500; max-height: 400px; overflow-y: auto;
  display: none; box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.search-results.open { display: block; }
.sr-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 13px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .1s; text-decoration: none; color: var(--text);
}
.sr-item:hover { background: var(--bg-soft); }
.sr-item:last-child { border-bottom: none; }
.sr-thumb {
  width: 38px; height: 38px; border-radius: 8px; object-fit: cover;
  background: var(--bg-soft); flex-shrink: 0;
}
.sr-thumb-placeholder {
  width: 38px; height: 38px; border-radius: 8px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.sr-info { flex: 1; min-width: 0; }
.sr-name { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-sub { font-size: 11px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-type {
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 999px;
  background: var(--bg-soft); color: var(--muted); flex-shrink: 0; white-space: nowrap;
}
.sr-type-game { background: rgba(33,193,122,.15); color: var(--accent); }
.sr-type-casino { background: rgba(255,176,32,.12); color: var(--gold); }
.sr-play-btn {
  background: var(--accent); color: #04140c; border: none; border-radius: 8px;
  padding: 5px 11px; font-size: 12px; font-weight: 700; cursor: pointer;
  flex-shrink: 0; transition: background .15s;
}
.sr-play-btn:hover { background: #1fd47a; }
/* bonus chips on casino cards */
.bonus-chips { display: flex; flex-wrap: wrap; gap: 5px; margin: 4px 0 2px; }
.bchip {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 999px; background: rgba(255,255,255,.07); color: var(--muted);
}
.bchip-fs { background: rgba(255,176,32,.15); color: var(--gold); }
.bchip-nd { background: rgba(33,193,122,.15); color: var(--accent); }

/* ── Bonus comparison table ── */
.bonus-table-wrap { overflow-x: auto; margin-top: 24px; }
.bonus-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.bonus-table th {
  padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.bonus-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: middle; }
.bonus-table tr:hover td { background: rgba(255,255,255,.02); }
.bt-casino { min-width: 160px; }
.bt-casino a { display: flex; align-items: center; gap: 10px; }
.bt-casino .casino-logo { width: 32px; height: 32px; font-size: 14px; flex-shrink: 0; }
.bt-bonus { color: var(--accent); font-weight: 600; }
.bt-center { text-align: center; color: var(--muted); }
.bt-cta { text-align: right; }
.btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 8px; }

/* ── Top list navigation ── */
.toplist-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.toplist-nav a {
  display: inline-block; padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
  transition: all .15s;
}
.toplist-nav a:hover, .toplist-nav a.active {
  background: rgba(33,193,122,.12); border-color: rgba(33,193,122,.4); color: var(--accent);
}

/* ── Page intro paragraph ── */
.page-intro { color: var(--muted); font-size: 15px; margin-bottom: 28px; max-width: 700px; line-height: 1.7; }

/* ── Provider page game count ── */
.games-count { color: var(--muted); font-size: 13px; margin-bottom: 20px; }

/* ── Mobile tweaks for new elements ── */
@media (max-width: 760px) {
  .search-wrap { display: none; }
  .bonus-table th, .bonus-table td { padding: 10px 8px; font-size: 12px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Trust bar ===== */
.trust-bar { background: rgba(33,193,122,.05); border-top: 1px solid rgba(33,193,122,.1); border-bottom: 1px solid rgba(33,193,122,.1); padding: 18px 0; }
.trust-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-val { font-size: 26px; font-weight: 900; color: var(--accent); letter-spacing: -1px; line-height: 1; }
.trust-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }

/* ===== Casino filter tabs ===== */
.casino-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cft-btn { display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: var(--bg-soft); color: var(--muted); transition: all .15s; }
.cft-btn:hover { border-color: var(--accent); color: var(--accent); }
.cft-btn.active { background: var(--accent); color: #04140c; border-color: var(--accent); }
.casino-card.hidden { display: none; }

/* ===== Exclusive ribbon ===== */
.casino-card.exclusive { position: relative; overflow: visible; }
.exc-ribbon { position: absolute; top: -10px; right: 16px; background: linear-gradient(90deg, var(--gold), #ff8a00); color: #2a1500; font-size: 10px; font-weight: 800; letter-spacing: .5px; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; box-shadow: 0 2px 8px rgba(255,176,32,.4); z-index: 2; }

/* ===== Hero dual CTA ===== */
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Homepage news grid ===== */
.home-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.home-news-card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: border-color .15s, transform .15s; color: inherit; }
.home-news-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.hnc-date { color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.home-news-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.home-news-card p { color: var(--muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== Section head row ===== */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sec-link { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ===== Free spins highlight ===== */
.fs-count { color: var(--gold) !important; font-weight: 700; font-size: 15px !important; }

/* ===== Mobile ===== */
@media (max-width: 760px) {
  .trust-inner { gap: 20px; }
  .trust-val { font-size: 22px; }
  .cft-btn { padding: 6px 12px; font-size: 12px; }
  .home-news-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .home-news-grid { grid-template-columns: 1fr; }
}

/* ===== Game page (SEO full layout) ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding: 18px 0 12px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--fg); font-weight: 600; }
.gp-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; align-items: start; margin-top: 8px; }
.gp-title { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.gp-chips { margin-bottom: 16px; }
.gp-chips a { color: var(--accent); }

/* Inline iframe + click-to-play cover */
.gp-iframe-wrap { position: relative; background: #000; border-radius: var(--radius); overflow: hidden; margin-bottom: 4px; }
.gp-iframe { display: block; width: 100%; height: 680px; border: none; }
.gp-newtab-link { display: none; }
.gp-cover { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; z-index: 2; }
.gp-cover-thumb { position: absolute; inset: 0; }
.gp-cover-thumb .gimg { width: 100%; height: 100%; object-fit: cover; }
.gp-cover-thumb .gletter { display: none; }
.gp-play-overlay { position: relative; z-index: 3; width: 80px; height: 80px; border-radius: 50%; background: rgba(33,193,122,.9); color: #04140c; font-size: 32px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .15s, background .15s; padding-left: 4px; box-shadow: 0 4px 24px rgba(33,193,122,.5); }
.gp-play-overlay:hover { background: var(--accent); transform: scale(1.1); }
.gp-fullscreen-btn {
  position: absolute; top: 10px; right: 10px; z-index: 4;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 18px; cursor: pointer; line-height: 1;
  align-items: center; justify-content: center;
  transition: background .15s;
}
.gp-fullscreen-btn:hover { background: rgba(33,193,122,.7); }
.gp-cover-note { position: relative; z-index: 3; font-size: 12px; color: rgba(255,255,255,.8); background: rgba(0,0,0,.55); padding: 4px 14px; border-radius: 99px; }

/* Poster wrap (newTab or noDemo) */
.gp-poster-wrap { position: relative; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.gp-thumb { height: 340px; border-radius: var(--radius); overflow: hidden; }
.gp-open-btn { position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); font-size: 16px; padding: 14px 28px; white-space: nowrap; }

/* Casino list */
.gp-casinos-section { margin-top: 28px; }
.gp-casinos-title { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.gp-casino-list { display: flex; flex-direction: column; gap: 10px; }
.gp-casino-row { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; transition: border-color .15s; text-decoration: none; color: inherit; }
.gp-casino-row:hover { border-color: var(--accent); }
.gp-casino-row .logo-box { flex-shrink: 0; width: 48px; height: 48px; font-size: 10px; }
.gp-casino-info { flex: 1; min-width: 0; }
.gp-casino-info strong { display: block; font-weight: 700; font-size: 15px; }
.gp-casino-bonus { display: block; font-size: 12px; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gp-play-btn { flex-shrink: 0; font-size: 12px; padding: 6px 14px; }

/* Sidebar */
.gp-sidebar { position: sticky; top: 80px; }
.gp-info-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.gp-info-box h3 { font-size: 15px; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); }
.gp-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gp-info-table th { text-align: left; color: var(--muted); font-weight: 600; padding: 7px 0; width: 45%; }
.gp-info-table td { text-align: right; font-weight: 700; color: var(--fg); padding: 7px 0; }
.gp-info-table td a { color: var(--accent); }
.gp-info-table tr + tr th, .gp-info-table tr + tr td { border-top: 1px solid var(--border); }

/* Features & description */
.gp-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gp-desc { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }

/* Related games */
.gp-related { margin-top: 48px; }
.gp-related h2 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

/* Mobile overrides */
@media (max-width: 900px) {
  .gp-layout { grid-template-columns: 1fr; }
  .gp-sidebar { position: static; }
  .gp-iframe { height: 480px; }
}
@media (max-width: 600px) {
  .gp-iframe { height: 300px; }
  .gp-title { font-size: 22px; }
  .gp-thumb { height: 220px; }
  .gp-casino-bonus { display: none; }
}

/* ── Back to top ── */
.back-top {
  position: fixed; bottom: 28px; right: 22px; z-index: 200;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 20px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--accent); border-color: var(--accent); color: #03120a; transform: translateY(-2px); }

/* ── Cookie consent ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--card-2); border-top: 1px solid var(--border);
  padding: 14px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(0); transition: transform .3s ease;
}
.cookie-bar.hidden { transform: translateY(110%); }
.cookie-text { font-size: 13px; color: var(--muted); flex: 1; min-width: 240px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-ok { background: var(--accent); color: #03120a; padding: 8px 20px; border-radius: 9px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; transition: background .15s; }
.btn-cookie-ok:hover { background: var(--accent-dark); }
.btn-cookie-no { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 7px 16px; border-radius: 9px; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .15s; }
.btn-cookie-no:hover { border-color: var(--muted); }

/* ── Newsletter section ── */
.newsletter-section {
  margin: 56px 0; padding: 40px 32px;
  background: linear-gradient(135deg, rgba(33,193,122,.08) 0%, rgba(26,114,255,.06) 100%);
  border: 1px solid rgba(33,193,122,.2); border-radius: 20px;
  text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(33,193,122,.12), transparent 70%);
  pointer-events: none;
}
.nl-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(33,193,122,.12); border: 1px solid rgba(33,193,122,.25);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.newsletter-section h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.newsletter-section p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.nl-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-input {
  flex: 1; min-width: 220px; background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 16px; font-size: 14px; color: var(--text); outline: none;
  transition: border-color .15s;
}
.nl-input:focus { border-color: var(--accent); }
.nl-submit { padding: 11px 24px; font-size: 14px; border-radius: 10px; }
.nl-note { font-size: 11px; color: var(--muted); margin-top: 10px; opacity: .7; }

/* ── How we rate section ── */
.how-we-rate { margin: 48px 0; }
.hwr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.hwr-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 18px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s, transform .15s;
}
.hwr-card:hover { border-color: rgba(33,193,122,.3); transform: translateY(-2px); }
.hwr-icon { font-size: 26px; line-height: 1; }
.hwr-card h4 { font-size: 14px; font-weight: 800; color: var(--text); }
.hwr-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.hwr-score { font-size: 20px; font-weight: 900; color: var(--accent); }
@media (max-width: 760px) { .hwr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hwr-grid { grid-template-columns: 1fr; } }

/* ── Crypto shortcut bar ── */
.crypto-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 32px; }
.cbar-item {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: all .15s;
}
.cbar-item:hover { border-color: var(--accent); color: var(--accent); background: rgba(33,193,122,.06); }
.cbar-icon { font-size: 16px; }

/* ── Rating badge improvements ── */
.rating-badge {
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: rgba(255,176,32,.12); padding: 2px 8px; border-radius: 6px;
  border: 1px solid rgba(255,176,32,.2);
}

/* ── Bonus highlight ── */
.casino-bonus-big {
  font-size: 16px; font-weight: 800; color: var(--accent);
  display: flex; align-items: center; gap: 6px;
}
.casino-bonus-big::before { content: '🎁'; font-size: 15px; }

/* ── Game page FAQ ── */
/* ===== Game page FAQ ===== */
.gp-faq { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.gp-faq h2 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--fg); text-align: left; }
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform .2s; color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== Bonus page SEO sections ===== */
.faq-section { margin-top: 40px; }
.faq-section .block-title { margin-top: 0; }
.faq-section .faq-item { margin-bottom: 0; }
.bonus-types { margin-top: 40px; }
.bonus-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 16px; }
.bonus-type-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 18px; }
.bonus-type-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--accent); }
.bonus-type-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
@media (max-width: 700px) { .bonus-type-grid { grid-template-columns: 1fr; } }

/* ===== Provider List ===== */
.prov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.prov-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; text-decoration: none; color: var(--text);
  transition: border-color .15s, transform .15s;
}
.prov-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.prov-logo {
  width: 52px; height: 52px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--accent) 0%, #0e7a4e 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #04140c; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.prov-logo-pic {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 7px; background: #12181f; border-radius: 12px;
}
.prov-info { flex: 1; min-width: 0; }
.prov-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.prov-meta { display: flex; gap: 12px; font-size: 12px; color: var(--muted); }
.prov-rtp { color: var(--accent); font-weight: 600; }
.prov-arrow { color: var(--muted); font-size: 18px; flex: none; }
@media (max-width: 900px) { .prov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prov-grid { grid-template-columns: 1fr; } }

/* ===== Highest RTP Table ===== */
.rtp-table-wrap { overflow-x: auto; margin-top: 24px; }
.rtp-table { width: 100%; border-collapse: collapse; }
.rtp-table th {
  text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); padding: 10px 12px; border-bottom: 1px solid var(--border);
}
.rtp-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
.rtp-table tr:hover td { background: rgba(255,255,255,.025); }
.rt-rank { width: 40px; font-size: 13px; color: var(--muted); font-weight: 700; }
.rt-thumb { width: 52px; }
.game-thumb-sm { width: 44px; height: 44px; border-radius: 8px; background: var(--card); position: relative; overflow: hidden; flex: none; display: flex; align-items: center; justify-content: center; }
.game-thumb-sm .gletter { font-size: 16px; }
.rt-name { font-weight: 700; font-size: 14px; color: var(--text); text-decoration: none; }
.rt-name:hover { color: var(--accent); }
.rt-prov { font-size: 12px; color: var(--muted); margin-top: 3px; }
.rt-rtp-cell { white-space: nowrap; }
.rt-rtp-val { font-size: 18px; font-weight: 900; color: var(--accent); display: block; margin-bottom: 4px; }
.rt-bar { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; width: 80px; }
.rt-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.rt-act { width: 120px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
@media (max-width: 600px) { .rt-bar { display: none; } .rt-act { display: none; } }

/* ===== Live Crypto Price Bar ===== */
.price-bar {
  background: rgba(255,255,255,.018); border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 7px 0; overflow: hidden;
}
.pbar-inner {
  display: flex; gap: 0; align-items: center; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pbar-inner::-webkit-scrollbar { display: none; }
.pbar-item {
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  padding: 0 18px; border-right: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.pbar-item:last-child { border-right: 0; }
.pbar-name { font-size: 11.5px; font-weight: 700; color: var(--text-2); }
.pbar-price { font-size: 12px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.pbar-chg { font-size: 11px; padding: 1px 6px; border-radius: 4px; font-weight: 600; min-width: 44px; text-align: center; }
.pbar-chg.up { color: var(--accent); background: rgba(33,193,122,.12); }
.pbar-chg.down { color: #ff5c5c; background: rgba(255,92,92,.12); }
.pbar-chg.neutral { color: var(--muted); }
@media (max-width: 560px) { .pbar-item { padding: 0 12px; } .pbar-name { font-size: 11px; } }

/* ===== Review page enhancements ===== */

/* Verified badge */
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(33,193,122,.1); border: 1px solid rgba(33,193,122,.25);
  color: var(--accent); border-radius: 20px; padding: 3px 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em; margin-top: 8px;
}

/* Review table of contents */
.review-toc {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  background: var(--card-2); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 10px 16px; margin: 20px 0;
  font-size: 13px;
}
.review-toc .rtoc-label { color: var(--muted); font-weight: 600; margin-right: 4px; white-space: nowrap; }
.review-toc a {
  color: var(--text-2); text-decoration: none; padding: 3px 10px;
  border-radius: 20px; border: 1px solid var(--border-soft);
  transition: all .15s; white-space: nowrap;
}
.review-toc a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* Guide / article tables */
.guide-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: 13.5px; overflow-x: auto; display: block;
}
.guide-table th {
  text-align: left; padding: 9px 14px; background: rgba(33,193,122,.1);
  border-bottom: 2px solid rgba(33,193,122,.25); color: var(--text); font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.guide-table td {
  padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--text-2);
  vertical-align: top;
}
.guide-table tr:last-child td { border-bottom: 0; }
.guide-table tr:hover td { background: rgba(255,255,255,.025); }

/* Sticky claim bonus bar */
.sticky-cta {
  position: fixed; bottom: -90px; left: 0; right: 0;
  background: rgba(11,14,20,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-soft); box-shadow: 0 -4px 28px rgba(0,0,0,.6);
  z-index: 890; transition: bottom .35s cubic-bezier(.22,.61,.36,1); padding: 10px 0;
}
.sticky-cta.show { bottom: 0; }
.sc-inner {
  display: flex; align-items: center; gap: 14px; max-width: 960px; margin: 0 auto; padding: 0 20px;
}
.sc-info { flex: 1; min-width: 0; }
.sc-info strong { display: block; font-size: .9rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-bonus-label { font-size: .75rem; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.sc-btn { padding: 10px 22px; font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
.sc-close {
  background: none; border: 1px solid var(--border-soft); color: var(--muted);
  cursor: pointer; font-size: .85rem; padding: 5px 9px; border-radius: 6px;
  line-height: 1; flex-shrink: 0; transition: color .15s;
}
.sc-close:hover { color: var(--text); }
.sticky-cta .casino-logo { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; font-size: 1rem; }
.sticky-cta .stars { font-size: .7rem; gap: 1px; }
@media (max-width: 640px) {
  .sticky-cta .stars { display: none; }
  .sc-inner { gap: 9px; }
  .sc-btn { padding: 9px 15px; }
}
