@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-header: #2A3040;
  --c-footer: #2A3040;
  --c-bg: #1C202D;
  --c-surface: #232838;
  --c-surface2: #2a3040;
  --c-primary: #63D377;
  --c-primary-dark: #4ab562;
  --c-secondary: #1C202D;
  --c-text: #e8eaf0;
  --c-text-muted: #8b93a8;
  --c-text-dark: #1C202D;
  --c-border: rgba(255,255,255,0.08);
  --c-border2: rgba(99,211,119,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-green: 0 4px 20px rgba(99,211,119,0.3);
  --transition: 0.22s ease;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body { font-family: var(--font); background: var(--c-bg); color: var(--c-text); line-height: 1.6; font-size: 15px; overflow-x: hidden; }

a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.xq7r2-hidden { display: none !important; }
.k3m9p-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 8px; font-family: var(--font);
  font-weight: 600; font-size: 14px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--c-primary); color: var(--c-text-dark); }
.btn--primary:hover { background: var(--c-primary-dark); color: var(--c-text-dark); box-shadow: var(--shadow-green); transform: translateY(-1px); }
.btn--secondary { background: var(--c-secondary); color: var(--c-text); border: 1px solid var(--c-border); }
.btn--secondary:hover { background: #252a39; color: var(--c-text); border-color: var(--c-primary); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn--sm { padding: 7px 14px; font-size: 13px; }

/* ── HEADER ── */
.site-header { background: var(--c-header); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--c-border); box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; gap: 12px; padding: 0 20px; height: 68px; max-width: 1200px; margin: 0 auto; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a { display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 7px; color: #c8cdd8; font-size: 13.5px; font-weight: 600; transition: all var(--transition); text-decoration: none; }
.header-nav a:hover, .header-nav a.active { color: var(--c-primary); background: rgba(99,211,119,0.08); }
.header-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(99,211,119,0.1); border: 1px solid var(--c-border2); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--c-primary); white-space: nowrap; }
.header-online-dot { width: 7px; height: 7px; background: var(--c-primary); border-radius: 50%; animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all var(--transition); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--c-header); z-index: 99; flex-direction: column; padding: 20px; overflow-y: auto; gap: 8px; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 9px; color: var(--c-text); font-size: 15px; font-weight: 600; border: 1px solid var(--c-border); text-decoration: none; }
.mobile-menu a:hover { background: rgba(99,211,119,0.08); border-color: var(--c-border2); color: var(--c-primary); }
.mobile-menu a svg { width: 18px; height: 18px; }
.mobile-menu-divider { height: 1px; background: var(--c-border); margin: 4px 0; }
.mobile-menu-actions { display: flex; gap: 10px; margin-top: 8px; }
.mobile-menu-actions .btn { flex: 1; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  background: url('/pokies-banner.png') center/cover no-repeat;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,32,45,0.88) 40%, rgba(28,32,45,0.55) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 60px 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(99,211,119,0.15); border: 1px solid var(--c-border2); color: var(--c-primary); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-title { font-size: clamp(28px, 5vw, 48px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; }
.hero-title span { color: var(--c-primary); }
.hero-desc { font-size: 16px; color: #b0b8cc; margin-bottom: 28px; line-height: 1.65; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-val { font-size: 22px; font-weight: 800; color: var(--c-primary); }
.hero-stat-label { font-size: 12px; color: var(--c-text-muted); font-weight: 500; }

/* ── BREADCRUMBS ── */
.breadcrumbs-wrap { background: var(--c-surface); border-bottom: 1px solid var(--c-border); padding: 10px 0; }
.breadcrumbs { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; color: var(--c-text-muted); }
.breadcrumbs a { color: var(--c-text-muted); transition: color var(--transition); text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs-sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--c-text); font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--c-text); margin-bottom: 8px; }
.section-subtitle { color: var(--c-text-muted); font-size: 14.5px; margin-bottom: 32px; }
.section-head { margin-bottom: 32px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ── TABLE OF CONTENTS ── */
.toc-block { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 36px; }
.toc-title { font-size: 16px; font-weight: 700; color: var(--c-text); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.toc-item { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: var(--radius-sm); background: var(--c-surface2); border: 1px solid var(--c-border); color: var(--c-text-muted); font-size: 13.5px; font-weight: 500; transition: all var(--transition); text-decoration: none; }
.toc-item:hover { color: var(--c-primary); border-color: var(--c-border2); background: rgba(99,211,119,0.06); }
.toc-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--c-primary); }
.toc-num { font-size: 11px; font-weight: 700; color: var(--c-text-muted); margin-right: 2px; }

/* ── ADVANTAGES ── */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.adv-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: all var(--transition); }
.adv-card:hover { border-color: var(--c-border2); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.adv-icon { width: 48px; height: 48px; background: rgba(99,211,119,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.adv-icon svg { width: 24px; height: 24px; color: var(--c-primary); }
.adv-title { font-size: 14px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; }
.adv-desc { font-size: 12.5px; color: var(--c-text-muted); line-height: 1.55; }

/* ── PROS & CONS ── */
.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proscons-col { background: var(--c-surface); border-radius: var(--radius); padding: 24px 22px; }
.proscons-col--pros { border: 1px solid rgba(99,211,119,0.3); }
.proscons-col--cons { border: 1px solid rgba(255,100,100,0.2); }
.proscons-head { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.proscons-head--pros { color: var(--c-primary); }
.proscons-head--cons { color: #ff6b6b; }
.proscons-list { display: flex; flex-direction: column; gap: 10px; }
.proscons-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--c-text); line-height: 1.5; }
.proscons-item-icon { flex-shrink: 0; margin-top: 2px; }
.proscons-item-icon--pro { color: var(--c-primary); }
.proscons-item-icon--con { color: #ff6b6b; }

/* ── JACKPOTS ── */
.jackpot-wrap { background: linear-gradient(135deg, #1e2538 0%, #252d40 100%); border: 1px solid var(--c-border2); border-radius: var(--radius); padding: 32px; text-align: center; position: relative; overflow: hidden; }
.jackpot-wrap::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(99,211,119,0.12) 0%, transparent 70%); pointer-events: none; }
.jackpot-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 10px; }
.jackpot-amount { font-size: clamp(36px, 7vw, 64px); font-weight: 800; color: var(--c-primary); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; text-shadow: 0 0 30px rgba(99,211,119,0.4); }
.jackpot-currency { font-size: 22px; margin-right: 4px; }
.jackpot-sub { font-size: 14px; color: var(--c-text-muted); margin-bottom: 24px; }
.jackpot-ticker { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.jackpot-ticker-item { text-align: center; }
.jackpot-ticker-val { font-size: 18px; font-weight: 700; color: var(--c-text); }
.jackpot-ticker-name { font-size: 11px; color: var(--c-text-muted); font-weight: 500; }

/* ── SLOTS ── */
.slots-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.slot-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.slot-card:hover { border-color: var(--c-border2); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.slot-thumb { aspect-ratio: 3/4; background: var(--c-surface2); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.slot-thumb-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px; }
.slot-thumb-icon { width: 48px; height: 48px; color: var(--c-primary); opacity: 0.6; }
.slot-provider-tag { position: absolute; top: 8px; left: 8px; background: rgba(28,32,45,0.85); color: var(--c-text-muted); font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 4px; }
.slot-body { padding: 12px; }
.slot-name { font-size: 13px; font-weight: 700; color: var(--c-text); margin-bottom: 8px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.slot-btn { width: 100%; }
.slots-slider-wrap { display: none; }

/* ── CONTENT AREA ── */
.content-review { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 32px 36px; }
.content-review h2 { font-size: 22px; font-weight: 700; color: var(--c-text); margin: 28px 0 14px; border-bottom: 1px solid var(--c-border); padding-bottom: 10px; }
.content-review h2:first-child { margin-top: 0; }
.content-review h3 { font-size: 17px; font-weight: 700; color: var(--c-text); margin: 22px 0 10px; }
.content-review h4 { font-size: 15px; font-weight: 700; color: var(--c-primary); margin: 18px 0 8px; }
.content-review p { color: var(--c-text); line-height: 1.75; margin-bottom: 14px; font-size: 14.5px; }
.content-review ul, .content-review ol { margin: 10px 0 14px 22px; }
.content-review li { color: var(--c-text); font-size: 14.5px; line-height: 1.65; margin-bottom: 6px; }
.content-review ul li { list-style-type: disc; }
.content-review ol li { list-style-type: decimal; }
.content-review a { color: var(--c-primary); text-decoration: underline; }
.content-review strong { color: #fff; font-weight: 700; }
.content-review em { color: var(--c-text-muted); font-style: italic; }
.content-review blockquote { border-left: 3px solid var(--c-primary); background: rgba(99,211,119,0.05); padding: 14px 20px; border-radius: 0 8px 8px 0; margin: 16px 0; color: var(--c-text-muted); }
.content-review table { width: 100%; border-collapse: collapse; margin: 18px 0; display: block; overflow-x: auto; }
.content-review table th { background: var(--c-surface2); color: var(--c-primary); font-size: 13px; font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.content-review table td { padding: 10px 14px; font-size: 13.5px; color: var(--c-text); border: 1px solid var(--c-border); vertical-align: top; }
.content-review table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.content-placeholder { color: var(--c-text-muted); font-size: 14px; padding: 24px; background: var(--c-surface2); border-radius: var(--radius-sm); border: 1px dashed var(--c-border); font-style: italic; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.is-open { border-color: var(--c-border2); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--c-text); user-select: none; }
.faq-question:hover { color: var(--c-primary); }
.faq-toggle { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--c-surface2); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.faq-item.is-open .faq-toggle { background: var(--c-primary); transform: rotate(45deg); }
.faq-toggle svg { width: 12px; height: 12px; color: var(--c-text); }
.faq-item.is-open .faq-toggle svg { color: var(--c-text-dark); }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--c-text-muted); font-size: 14px; line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

/* ── AUTHOR ── */
.author-block { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 28px; display: flex; gap: 24px; align-items: flex-start; }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--c-border2); }
.author-avatar-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--c-surface2); flex-shrink: 0; border: 3px solid var(--c-border2); display: flex; align-items: center; justify-content: center; }
.author-avatar-placeholder svg { width: 36px; height: 36px; color: var(--c-text-muted); }
.author-info { flex: 1; }
.author-name { font-size: 17px; font-weight: 700; color: var(--c-text); margin-bottom: 2px; }
.author-role { font-size: 13px; color: var(--c-primary); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: 13.5px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 14px; }
.author-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--c-text-muted); margin-bottom: 12px; }
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-meta svg { width: 13px; height: 13px; color: var(--c-primary); }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 6px; background: var(--c-surface2); border: 1px solid var(--c-border); color: var(--c-text-muted); font-size: 12.5px; font-weight: 600; transition: all var(--transition); text-decoration: none; }
.author-link:hover { border-color: var(--c-border2); color: var(--c-primary); }
.author-link svg { width: 14px; height: 14px; }

/* ── FOOTER ── */
.site-footer { background: var(--c-footer); border-top: 1px solid var(--c-border); margin-top: auto; }
.footer-main { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 240px 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-brand-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 14px; }
.footer-flag { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--c-text-muted); margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-link { width: 34px; height: 34px; border-radius: 8px; background: var(--c-surface); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); transition: all var(--transition); }
.footer-social-link:hover { border-color: var(--c-border2); color: var(--c-primary); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text); margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 13px; color: var(--c-text-muted); transition: color var(--transition); text-decoration: none; }
.footer-nav a:hover { color: var(--c-primary); }
.footer-logos-row { margin-bottom: 20px; }
.footer-logos-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); margin-bottom: 10px; font-weight: 600; }
.footer-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.footer-logo-item { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; padding: 6px 10px; font-size: 11px; font-weight: 700; color: var(--c-text-muted); display: flex; align-items: center; gap: 5px; height: 32px; }
.footer-divider { height: 1px; background: var(--c-border); margin: 24px 0; }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--c-border); }
.footer-bottom-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; max-width: 640px; }
.footer-email { font-size: 12.5px; color: var(--c-text-muted); }
.footer-email a { color: var(--c-primary); }

/* ── STICKY WIDGET ── */
.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; background: var(--c-header); border-top: 2px solid var(--c-primary); z-index: 98; padding: 10px 20px; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 -4px 20px rgba(0,0,0,0.4); }
.sticky-widget-text { font-size: 13.5px; font-weight: 600; color: var(--c-text); }
.sticky-widget-text span { color: var(--c-primary); }
.sticky-widget-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--c-text-muted); cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; transition: color var(--transition); }
.sticky-widget-close:hover { color: var(--c-text); }

/* ── INFO PAGE ── */
.info-content { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 36px 40px; margin: 36px 0; }
.info-content h1 { font-size: 26px; font-weight: 800; color: var(--c-text); margin-bottom: 22px; }
.info-content h2 { font-size: 18px; font-weight: 700; color: var(--c-text); margin: 24px 0 12px; border-bottom: 1px solid var(--c-border); padding-bottom: 8px; }
.info-content h3 { font-size: 15px; font-weight: 700; color: var(--c-primary); margin: 18px 0 8px; }
.info-content p { font-size: 14.5px; color: var(--c-text-muted); line-height: 1.75; margin-bottom: 14px; }
.info-content ul, .info-content ol { margin: 10px 0 14px 24px; }
.info-content li { font-size: 14.5px; color: var(--c-text-muted); line-height: 1.65; margin-bottom: 6px; list-style-type: disc; }
.info-content a { color: var(--c-primary); text-decoration: underline; }
.info-content strong { color: var(--c-text); font-weight: 700; }
.info-content table { width: 100%; border-collapse: collapse; margin: 14px 0; overflow-x: auto; display: block; }
.info-content th { background: var(--c-surface2); color: var(--c-primary); font-size: 13px; padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.info-content td { padding: 10px 14px; font-size: 13.5px; color: var(--c-text-muted); border: 1px solid var(--c-border); }

/* ── RATING BLOCK ── */
.rating-block { background: var(--c-surface2); border: 1px solid var(--c-border2); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.rating-score { text-align: center; }
.rating-num { font-size: 40px; font-weight: 800; color: var(--c-primary); line-height: 1; }
.rating-max { font-size: 16px; color: var(--c-text-muted); }
.rating-stars { display: flex; gap: 3px; margin-top: 4px; justify-content: center; }
.rating-stars svg { width: 18px; height: 18px; color: #fbbf24; }
.rating-divider { width: 1px; height: 50px; background: var(--c-border); }
.rating-details { flex: 1; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13px; }
.rating-row-label { width: 110px; color: var(--c-text-muted); flex-shrink: 0; }
.rating-bar { flex: 1; height: 5px; background: var(--c-surface); border-radius: 99px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--c-primary); border-radius: 99px; }
.rating-row-val { width: 28px; text-align: right; font-weight: 600; color: var(--c-text); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-online { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; margin-left: auto; }
  .proscons-grid { grid-template-columns: 1fr; }
  .slots-grid { display: none; }
  .slots-slider-wrap { display: block; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .content-review { padding: 20px 18px; }
  .author-block { flex-direction: column; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .info-content { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .toc-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .sticky-widget { flex-direction: column; gap: 8px; padding: 12px 44px 12px 20px; }
  .jackpot-ticker { gap: 14px; }
}

/* ── SLOTS SLIDER MOBILE ── */
.slots-slider { display: flex; overflow-x: auto; gap: 14px; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slots-slider::-webkit-scrollbar { display: none; }
.slots-slider .slot-card { flex: 0 0 160px; scroll-snap-align: start; }

/* ── WP DECOYS ── */
.wp-block-group { display: block; }
.entry-content { }
.post-thumbnail { display: none; }
.widget-area { display: none; }
.elementor-widget-wrap { display: contents; }
.wp-caption { display: none; }
#wpadminbar { display: none; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes jackpotCount { from { opacity:0.5; transform:scale(0.97); } to { opacity:1; transform:scale(1); } }
.fade-up { animation: fadeInUp 0.5s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.jackpot-amount { animation: jackpotCount 0.4s ease; }

/* ── MISC UNUSED (unikalizator) ── */
.r7bq2 { font-variant-numeric: tabular-nums; }
.m5kx9::after { content: none; }
.x2ndf[data-val] { pointer-events: none; }
.j8wp1 { clip: auto; }
.q4tz6-noop { background: transparent; }
.p9lr3 { isolation: isolate; }
.k1vm5:not([class]) { color: inherit; }
.wp-nonce-field { display: none; }
.nonce-h7p2 { visibility: hidden; position: absolute; }
