@font-face {
  font-family: 'Benzin';
  src: url('../BenzinBold.woff2') format('woff2');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --bg: #0a1020;
  --bg2: #101a31;
  --bg3: #16233f;
  --bg4: #1e2f50;
  --accent: #2aabee;
  --accent2: #1d8fe0;
  --gold: #f5c340;
  --text: #e6edf8;
  --text2: #8aa0c4;
  --green: #00d46a;
  --red: #ff5a6a;
  --border: rgba(42,171,238,.18);
  --border2: rgba(255,255,255,.08);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.2; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
  background: rgba(10,16,32,.97);
  border-bottom: 1px solid var(--border2);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.logo { font-family: 'Benzin', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo span { color: var(--text); font-weight: 700; }
nav { display: flex; align-items: center; gap: 2px; }
nav a { color: var(--text2); font-size: .82rem; padding: 7px 10px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
nav a:hover { color: var(--text); background: var(--bg3); }
.btn-nav { background: linear-gradient(135deg, var(--accent), var(--accent2)) !important; color: #fff !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px; box-shadow: 0 3px 12px rgba(42,171,238,.35); }
.btn-nav:hover { opacity: .9; color: #fff !important; }

/* Mobile nav */
.mob-btn { display: none; background: none; border: 1px solid var(--border2); border-radius: 8px; cursor: pointer; padding: 7px 9px; flex-direction: column; gap: 5px; }
.mob-btn span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; }
.mob-nav { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 200; flex-direction: column; padding: 70px 24px 32px; gap: 2px; overflow-y: auto; }
.mob-nav.open { display: flex; }
.mob-nav a { color: var(--text); font-size: 1rem; padding: 13px 16px; border-radius: 10px; border-bottom: 1px solid var(--border2); }
.mob-nav a:hover { background: var(--bg2); }
.mob-nav .btn-nav { margin-top: 12px; padding: 15px 20px !important; font-size: 1.05rem !important; text-align: center; border-radius: 12px !important; }
.mob-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--text2); font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* Breadcrumb */
.breadcrumb { padding: 13px 0; font-size: .8rem; color: var(--text2); }
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-family: 'Benzin', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 12px 24px; border-radius: 10px; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(42,171,238,.3);
}
.btn:hover { opacity: .9; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(42,171,238,.42); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #ffd060); color: #0a1020; box-shadow: 0 4px 16px rgba(245,195,64,.28); }
.btn-gold:hover { color: #0a1020; }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); box-shadow: none; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { font-size: 1.02rem; padding: 15px 32px; border-radius: 12px; }
.btn-xl { font-size: 1.18rem; padding: 17px 42px; border-radius: 14px; box-shadow: 0 6px 28px rgba(42,171,238,.4); }

/* HERO */
.hero { padding: 60px 0 52px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 40%, rgba(42,171,238,.10) 0%, transparent 55%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% -5%, rgba(42,171,238,.16) 0%, transparent 60%), radial-gradient(ellipse at 5% 110%, rgba(245,195,64,.07) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(42,171,238,.1); border: 1px solid rgba(42,171,238,.28); color: var(--accent); font-size: .78rem; font-weight: 700; padding: 6px 13px; border-radius: 20px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.9rem); font-weight: 900; line-height: 1.12; color: #fff; margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 1rem; color: var(--text2); max-width: 600px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; max-width: 640px; }
.hero-stat { flex: 1; padding: 16px 10px; text-align: center; border-right: 1px solid var(--border2); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-family: 'Benzin', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--gold); }
.hero-stat span { font-size: .73rem; color: var(--text2); }
/* HERO two-column + logo */
.hero-grid { display: grid; grid-template-columns: 1fr minmax(300px, 460px); gap: 40px; align-items: center; }
.hero-text .hero-stats { max-width: 100%; }
.hero-logo { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo::before { content: ''; position: absolute; width: 90%; height: 90%; border-radius: 50%; background: radial-gradient(circle, rgba(42,171,238,.35) 0%, rgba(29,143,224,.12) 45%, transparent 72%); filter: blur(8px); z-index: 0; animation: heroGlow 4.5s ease-in-out infinite; }
.hero-logo img { position: relative; z-index: 1; width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 10px 28px rgba(42,171,238,.35)) drop-shadow(0 2px 6px rgba(0,0,0,.4)); animation: heroFloat 5s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes heroGlow { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .hero-logo img, .hero-logo::before { animation: none; } }

/* SECTIONS */
.section { padding: 60px 0; }
.section-sm { padding: 44px 0; }
.section-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.85rem); font-weight: 900; color: #fff; margin-bottom: 10px; }
h3 { font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: 7px; }

/* CARDS */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 14px; margin-top: 24px; }
.info-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; transition: border-color .2s, transform .2s; }
.info-card:hover { border-color: rgba(42,171,238,.35); transform: translateY(-2px); }
.info-card p { font-size: .85rem; color: var(--text2); line-height: 1.65; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 28px; }
.feature-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: rgba(42,171,238,.35); transform: translateY(-2px); }
.feature-icon { font-size: 1.85rem; margin-bottom: 12px; }
.feature-card p { font-size: .81rem; color: var(--text2); }

/* GAMES GRID */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; margin-top: 28px; }
.game-card { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg3); border: 1px solid var(--border2); cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.game-card:hover { transform: scale(1.04); border-color: var(--accent); box-shadow: 0 8px 24px rgba(42,171,238,.2); }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 55%, transparent 100%); opacity: 0; display: flex; align-items: flex-end; padding: 10px; transition: opacity .2s; }
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn { background: var(--accent); color: #fff; font-size: .73rem; font-weight: 700; padding: 5px 14px; border-radius: 6px; }
.game-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%); padding: 20px 8px 7px; font-size: .71rem; font-weight: 600; color: #fff; }
.game-badge { position: absolute; top: 6px; left: 6px; background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; text-transform: uppercase; }
.game-badge.hot { background: #e53935; }
.game-badge.new { background: #2196f3; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 28px; }
.step { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 24px 20px; }
.step-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; border-radius: 50%; font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(42,171,238,.28); }
.step p { font-size: .84rem; color: var(--text2); }

/* RATING BARS */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.rating-label { width: 160px; font-size: .84rem; color: var(--text2); flex-shrink: 0; }
.rating-bar { flex: 1; height: 8px; background: var(--bg3); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 4px; }
.rating-val { width: 30px; font-size: .88rem; font-weight: 700; color: var(--gold); text-align: right; }

/* PROMO BANNER */
.promo-banner { background: linear-gradient(135deg, #0e1830, #14233f 50%, #0e1830); border: 2px solid rgba(245,195,64,.45); border-radius: 16px; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: 0 6px 30px rgba(245,195,64,.08); }
.promo-banner h2 { color: var(--gold); margin-bottom: 8px; font-size: 1.3rem; }
.promo-banner p { color: var(--text2); font-size: .88rem; }

/* PROMO CODE */
.promo-box { display: inline-flex; align-items: stretch; background: var(--bg3); border: 2px solid var(--gold); border-radius: 10px; overflow: hidden; }
.promo-code { padding: 13px 20px; font-family: 'Benzin', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--gold); letter-spacing: .1em; }
.promo-copy-btn { padding: 13px 18px; background: var(--gold); color: #0a1020; font-weight: 700; cursor: pointer; border: none; font-size: .86rem; transition: background .2s; }
.promo-copy-btn:hover { background: #ffd060; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 5px; margin-top: 24px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(42,171,238,.28); }
.faq-q { padding: 17px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: .9rem; transition: color .2s; user-select: none; gap: 10px; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 17px; color: var(--text2); font-size: .87rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 14px; margin-top: 28px; }
.review-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius); padding: 22px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-family: 'Benzin', sans-serif; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; color: #fff; font-size: .88rem; }
.review-date { font-size: .73rem; color: var(--text2); }
.review-stars { color: var(--gold); font-size: .86rem; margin-bottom: 10px; }
.review-text { font-size: .86rem; color: var(--text2); line-height: 1.65; }

/* TOP PICK CARD */
.top-card { background: var(--bg2); border: 2px solid rgba(245,195,64,.4); border-radius: 16px; padding: 28px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.top-card-left { flex: 1; min-width: 220px; }
.top-card-right { flex: 1; min-width: 220px; }
.casino-name-big { font-family: 'Benzin', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 7px; }
.stars-line { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: .74rem; font-weight: 600; }
.tag.g { background: rgba(0,212,106,.1); color: var(--green); border: 1px solid rgba(0,212,106,.18); }
.tag.o { background: rgba(42,171,238,.1); color: var(--accent); border: 1px solid rgba(42,171,238,.2); }
.tag.y { background: rgba(245,195,64,.1); color: var(--gold); border: 1px solid rgba(245,195,64,.18); }
.bonus-card { background: rgba(42,171,238,.07); border: 1px solid rgba(42,171,238,.2); border-radius: 10px; padding: 15px 18px; margin-bottom: 16px; }
.bonus-card span { font-size: .78rem; color: var(--text2); display: block; }
.bonus-card strong { font-family: 'Benzin', sans-serif; font-size: 1.45rem; color: var(--gold); display: block; margin: 4px 0; }

/* UTILS */
.green { color: var(--green); }
.gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* TABLE */
.table-wrap { overflow-x: auto; margin-top: 24px; }
table.data { width: 100%; border-collapse: collapse; min-width: 480px; }
table.data th { background: var(--bg3); padding: 11px 14px; text-align: left; font-size: .76rem; color: var(--text2); text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border2); white-space: nowrap; }
table.data td { padding: 13px 14px; border-bottom: 1px solid var(--border2); font-size: .87rem; vertical-align: middle; }
table.data tr.highlight td { background: rgba(42,171,238,.05); }
table.data tr:hover td { background: var(--bg3); }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border2); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { font-family: 'Benzin', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: .82rem; color: var(--text2); margin-bottom: 14px; line-height: 1.6; }
.footer-disclaimer { font-size: .75rem; color: var(--text2); line-height: 1.55; }
.footer-col h4 { color: #fff; font-size: .86rem; font-weight: 700; margin-bottom: 13px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: var(--text2); font-size: .82rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border2); padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 280px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .mob-btn { display: flex; }
  .hero { padding: 38px 0 34px; }
  .hero h1 { font-size: 1.52rem; }
  .hero-logo img { max-width: 230px; }
  .hero-stats { flex-wrap: wrap; max-width: 100%; }
  .hero-stat { flex: 0 0 50%; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border2); }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border2); }
  .section { padding: 42px 0; }
  .section-sm { padding: 30px 0; }
  .steps { grid-template-columns: 1fr; }
  .promo-banner { padding: 22px 18px; flex-direction: column; }
  .top-card { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border2) !important; }
  .hero-stat:last-child { border-bottom: none !important; }
  .btn-xl { font-size: .98rem; padding: 14px 26px; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SEO/FTD UPGRADE COMPONENTS ===== */

/* Freshness bar — живой блок свежести */
.fresh-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(135deg, #0e1830, #14233f);
  border: 1px solid var(--border); border-left: 3px solid var(--green);
  border-radius: var(--radius); padding: 12px 18px; margin: 0 0 22px;
  font-size: .95rem;
}
.fresh-bar .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,212,106,.6); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(0,212,106,.5);} 70%{box-shadow:0 0 0 8px rgba(0,212,106,0);} 100%{box-shadow:0 0 0 0 rgba(0,212,106,0);} }
.fresh-bar strong { color: var(--green); }
.fresh-bar .fresh-date { color: var(--gold); font-weight: 700; }
.fresh-bar .fresh-sep { color: var(--text2); opacity: .5; }

/* Table of contents — якорное оглавление */
.toc { display: block; background: linear-gradient(180deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 26px 24px; margin: 0 0 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,.22); position: relative; overflow: hidden; }
.toc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent2)); }
.toc-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text); margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border2); }
.toc-title::before { content: '📑'; font-size: 1.05rem; }
.toc ol { list-style: none; counter-reset: toc; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 4px 24px; }
.toc ol li { counter-increment: toc; min-width: 0; }
.toc ol li a { display: flex; align-items: center; gap: 12px; padding: 9px 10px;
  color: var(--text); font-size: .95rem; line-height: 1.35; border-radius: 10px;
  transition: background .2s, color .2s; min-width: 0; }
.toc ol li a > span { flex: 1 1 auto; min-width: 0; white-space: normal; overflow-wrap: anywhere; word-break: break-word; }
.toc ol li a::before { content: counter(toc); flex: 0 0 auto;
  width: 26px; height: 26px; display: grid; place-items: center;
  background: rgba(42,171,238,.12); color: var(--accent); border-radius: 8px;
  font-size: .82rem; font-weight: 800; transition: background .2s, color .2s; }
.toc ol li a:hover { background: rgba(42,171,238,.08); color: var(--accent); }
.toc ol li a:hover::before { background: var(--accent); color: #fff; }
@media(max-width:640px){ .toc { padding: 20px 18px 22px; } .toc ol { grid-template-columns: 1fr; } }

/* Bonus calculator — калькулятор бонуса */
.calc { background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border); border-radius: 16px; padding: 26px; margin: 26px 0; }
.calc h3 { font-size: 1.25rem; margin-bottom: 6px; }
.calc-sub { color: var(--text2); font-size: .92rem; margin-bottom: 20px; }
.calc-row { margin-bottom: 18px; }
.calc-row label { display: flex; justify-content: space-between; font-size: .92rem;
  margin-bottom: 8px; color: var(--text2); }
.calc-row label b { color: var(--gold); font-size: 1.05rem; }
.calc-row input[type=range]{ width: 100%; -webkit-appearance: none; appearance: none; height: 6px;
  border-radius: 4px; background: var(--bg4); outline: none; }
.calc-row input[type=range]::-webkit-slider-thumb{ -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(42,171,238,.5); }
.calc-row input[type=range]::-moz-range-thumb{ width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 3px solid #fff; }
.calc-result { background: #0e1830; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; text-align: center; margin-top: 8px; }
.calc-result .crv { font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1.1; }
.calc-result .crl { color: var(--text2); font-size: .9rem; margin-top: 4px; }
.calc-result small { display: block; color: var(--text2); font-size: .8rem; margin-top: 10px; opacity: .8; }

/* Author / EAT box — экспертность и доверие */
.author-box { display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin: 26px 0; }
.author-box .ava { width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex;
  align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 800;
  color: #fff; letter-spacing: .02em; box-shadow: 0 4px 14px rgba(42,171,238,.35); }
.author-box .a-name { font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.author-box .a-name .verified { color: var(--accent); font-size: .8rem; font-weight: 600;
  background: rgba(42,171,238,.12); padding: 2px 8px; border-radius: 20px; }
.author-box .a-role { color: var(--text2); font-size: .88rem; margin: 3px 0 8px; }
.author-box .a-bio { font-size: .9rem; color: var(--text); }
.author-box .a-meta { color: var(--text2); font-size: .82rem; margin-top: 8px; }
.author-box .a-meta b { color: var(--green); }

/* Inline contextual links — перелинковка в тексте */
a.inlink { color: var(--accent); border-bottom: 1px dashed rgba(42,171,238,.5);
  font-weight: 600; }
a.inlink:hover { border-bottom-style: solid; color: #5cc4f5; }

/* Read-next block — читать дальше */
.read-next { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 28px 0; }
.read-next a { display: block; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; transition: border-color .2s, transform .2s; }
.read-next a:hover { border-color: var(--accent); transform: translateY(-2px); }
.read-next .rn-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text2); }
.read-next .rn-t { color: var(--text); font-weight: 600; margin-top: 4px; font-size: .95rem; }
@media(max-width:680px){ .read-next { grid-template-columns: 1fr; } }

/* Responsible gaming footer block */
.responsible { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius);
  padding: 16px 20px; margin: 24px 0 0; font-size: .85rem; color: var(--text2);
  display: flex; gap: 14px; align-items: flex-start; }
.responsible .r-icon { font-size: 1.5rem; flex: none; }
.responsible a { color: var(--accent); }

/* ===== HUB COMPONENTS (v2 structure rework) ===== */
.qa-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:0 0 8px;}
@media(max-width:680px){.qa-bar{grid-template-columns:repeat(2,1fr);}}
.qa-item{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;padding:18px 12px;background:var(--bg3);border:1px solid var(--border);border-radius:14px;text-decoration:none;transition:.2s;}
.qa-item:hover{transform:translateY(-3px);border-color:var(--accent);background:var(--bg4);}
.qa-ico{font-size:1.6rem;line-height:1;}
.qa-t{color:#fff;font-weight:700;font-size:.95rem;}
.qa-s{color:var(--text2);font-size:.74rem;}
.qa-item.accent{background:linear-gradient(135deg,var(--accent),var(--accent2));border-color:transparent;}
.qa-item.accent .qa-t,.qa-item.accent .qa-s{color:#fff;}
.qa-item.gold-i{background:linear-gradient(135deg,var(--gold),#e0a92a);border-color:transparent;}
.qa-item.gold-i .qa-t,.qa-item.gold-i .qa-s{color:#1a1205;}

.bonus-tbl{width:100%;border-collapse:collapse;margin-top:8px;}
.bonus-tbl td,.bonus-tbl th{padding:14px 16px;border-bottom:1px solid var(--border2);text-align:left;}
.bonus-tbl th{color:var(--text2);font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;font-weight:600;}
.bonus-tbl td:first-child{color:#fff;font-weight:600;}
.bonus-tbl .b-val{color:var(--gold);font-weight:800;font-size:1.05rem;}
.bonus-tbl tr:last-child td{border-bottom:none;}

.tg-block{background:linear-gradient(135deg,rgba(42,171,238,.12),rgba(29,143,224,.06));border:1px solid var(--accent);border-radius:var(--radius);padding:28px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;}
@media(max-width:680px){.tg-block{grid-template-columns:1fr;text-align:center;}}
.tg-block h3{color:#fff;font-size:1.25rem;margin:0 0 8px;}
.tg-block p{color:var(--text2);margin:0;line-height:1.6;font-size:.92rem;}
.btn-tg{display:inline-flex;align-items:center;gap:8px;background:#2aabee;color:#fff;font-weight:700;padding:15px 30px;border-radius:12px;text-decoration:none;white-space:nowrap;transition:.2s;font-size:1rem;}
.btn-tg:hover{background:#1d8fe0;transform:translateY(-2px);}

.hub-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin-top:8px;}
.hub-card{display:block;background:var(--bg3);border:1px solid var(--border2);border-radius:14px;padding:20px;text-decoration:none;transition:.2s;}
.hub-card:hover{transform:translateY(-3px);border-color:var(--accent);background:var(--bg4);}
.hub-ico{font-size:1.5rem;display:block;margin-bottom:10px;}
.hub-t{color:#fff;font-weight:700;font-size:1rem;display:block;margin-bottom:5px;}
.hub-d{color:var(--text2);font-size:.82rem;line-height:1.5;}
