:root {
  --bg: #0b0e14;
  --bg-soft: #131826;
  --card: #161c2c;
  --border: #232b3e;
  --text: #e8edf6;
  --muted: #93a0b8;
  --accent: #21c17a;
  --accent-2: #1a72ff;
  --gold: #ffb020;
  --radius: 14px;
}

* { 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: radial-gradient(1200px 600px at 50% -200px, #16203a 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 14, 20, 0.75);
  border-bottom: 1px solid var(--border);
}
header { box-shadow: 0 1px 0 rgba(255,255,255,.02); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.logo { font-weight: 800; font-size: 21px; letter-spacing: -0.5px; margin-right: auto; white-space: nowrap;
  background: linear-gradient(90deg, #fff, #cfe9dd); -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: 14px; align-items: center; }
nav.menu .menu-links { display: flex; gap: 4px; }
nav.menu .menu-links a {
  color: var(--muted); font-size: 14.5px; font-weight: 600; white-space: nowrap;
  padding: 8px 14px; border-radius: 10px; 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; }

/* Hero */
.hero { text-align: center; padding: 72px 0 40px; }
.hero h1 {
  font-size: clamp(30px, 6vw, 52px); font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(90deg, #fff, #9fd9bf);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 14px auto 26px; }
.btn {
  display: inline-block; font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 12px; cursor: pointer; transition: transform .12s, filter .12s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-primary { background: linear-gradient(90deg, var(--accent), #19a868); color: #04140c; }
.btn-accent { background: linear-gradient(90deg, var(--gold), #ff8a00); color: #2a1500; }
.btn-ghost { background: var(--card); border: 1px solid var(--border); color: var(--text); }

/* Ranking */
.section-title { font-size: 24px; font-weight: 800; margin: 40px 0 18px; }
.ranking { display: flex; flex-direction: column; gap: 14px; }
.casino-card {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 18px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; transition: border-color .15s, transform .15s;
}
.casino-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.rank-num { font-size: 22px; font-weight: 800; color: var(--muted); text-align: center; }
.rank-num.top { color: var(--gold); }
.casino-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.casino-head { display: flex; align-items: center; gap: 12px; }
.casino-logo {
  width: 42px; height: 42px; border-radius: 10px; flex: none; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 18px;
}
.casino-logo .lo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 6px; background: inherit;
}
.casino-name { font-size: 18px; font-weight: 700; }
.rating-badge {
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: rgba(255,176,32,.12); padding: 2px 8px; border-radius: 6px;
}
.casino-bonus { color: var(--accent); font-size: 14px; font-weight: 600; }
.card-meta { color: var(--muted); font-size: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px; color: var(--muted); background: var(--bg-soft);
  border: 1px solid var(--border); padding: 2px 8px; border-radius: 20px;
}
.casino-actions { display: flex; flex-direction: column; gap: 8px; min-width: 130px; }
.casino-actions .btn { padding: 10px 16px; 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; }
.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;
}
.filter-bar {
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--border); border-radius: 16px; padding: 16px; margin-bottom: 26px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-group.main { gap: 0; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 4px; width: fit-content; }
.filter-group.main .fchip { border: 0; background: transparent; border-radius: 9px; }
.filter-group.sub { padding-top: 12px; border-top: 1px solid var(--border); }
.fchip {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 10px; transition: all .15s; cursor: pointer;
}
.fchip:hover { color: var(--text); border-color: var(--accent); background: rgba(255,255,255,.04); }
.fchip.on { background: var(--accent); color: #04140c; border-color: var(--accent); font-weight: 700; box-shadow: 0 4px 14px rgba(33,193,122,.25); }
.filter-group.main .fchip.on { background: var(--accent); color: #04140c; box-shadow: none; }
/* provider chips with logos */
.prov-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; }
.prov-logo { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; background: #fff1; flex: none; }
.prov-chip.on .prov-logo { background: #04140c22; }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.game-card {
  display: block; width: 100%; text-align: left; padding: 0; cursor: pointer; font: inherit; color: inherit;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .15s, transform .15s;
}
.game-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.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: 44px; font-weight: 800; color: rgba(255,255,255,.85); }
.gimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* play overlay */
.play-ov {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(7,10,16,.45); opacity: 0; transition: opacity .15s; z-index: 2;
}
.game-card:hover .play-ov, .demo-poster:hover .play-ov { opacity: 1; }
.play-btn {
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #04140c;
  display: flex; align-items: center; justify-content: center; font-size: 20px; padding-left: 3px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.play-btn.big { width: 76px; height: 76px; font-size: 30px; }
.gmeta { display: block; padding: 14px; position: relative; }
.gbadges { position: absolute; top: -16px; left: 14px; display: flex; gap: 5px; }
.gbadge { font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 6px; text-transform: uppercase; }
.gbadge.new { background: var(--accent-2); color: #fff; }
.gbadge.top { background: var(--gold); color: #2a1500; }
.gname { display: block; font-size: 15px; font-weight: 700; }
.gprov { display: block; font-size: 12px; color: var(--muted); }
.load-more-wrap { display: flex; justify-content: center; margin: 28px 0 8px; }
.load-more { padding: 13px 40px; }
/* 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: 30px 0; color: var(--muted); font-size: 13px; }
.disclaimer { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* 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); }
  /* compact language switcher: flags only on phones */
  .lang-switch { gap: 5px; }
  .lang-switch a { padding: 5px 7px; }
  .lang-switch a span { display: none; }
  .flag { width: 22px; height: 15px; }
}
@media (max-width: 820px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .casino-card { grid-template-columns: 30px 1fr; }
  .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: 12px; }
  .hero { padding: 48px 0 30px; }
  .section-title { font-size: 20px; }
  /* fullscreen game popup on phones */
  .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; }
}
@media (max-width: 420px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .gletter { font-size: 32px; }
}

/* ===== 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: #229ED9; color: #fff; font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; transition: transform .12s, filter .12s;
}
.tg-link:hover { transform: translateY(-1px); filter: brightness(1.08); }
.tg-link svg { display: block; }
