/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0f0f0f; color: #fff; font-family: 'Inter', 'Segoe UI', sans-serif; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Header ── */
.site-header { background: #0a0a0a; border-bottom: 1px solid #FFD70033; position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 58px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg,#FFD700,#b8860b); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; color: #000; flex-shrink: 0; }
.logo-text { font-weight: 800; font-size: 13px; color: #FFD700; line-height: 1.2; }
.logo-text span { color: #fff; font-size: 11px; }
nav.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-link { background: none; border: 1px solid transparent; color: #bbb; border-radius: 6px; padding: 5px 9px; font-size: 11px; font-weight: 600; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-block; transition: all 0.15s; font-family: inherit; }
.nav-link:hover, .nav-link.active { background: #FFD70018; border-color: #FFD70040; color: #FFD700; }
.dropdown { position: relative; }
.dropdown-toggle { background: none; border: 1px solid transparent; color: #bbb; border-radius: 6px; padding: 5px 9px; font-size: 11px; font-weight: 700; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 4px; font-family: inherit; transition: all 0.15s; }
.dropdown-toggle:hover, .dropdown.open .dropdown-toggle { background: #FFD70018; border-color: #FFD70040; color: #FFD700; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #111; border: 1px solid #FFD70040; border-radius: 10px; min-width: 190px; z-index: 200; box-shadow: 0 8px 32px #000c; overflow: hidden; }
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.dropdown-item { display: block; width: 100%; background: none; border: none; border-bottom: 1px solid #1a1a1a; color: #ccc; padding: 10px 16px; font-size: 12px; font-weight: 600; cursor: pointer; text-align: left; font-family: inherit; text-decoration: none; transition: all 0.12s; }
.dropdown-item:hover { background: #FFD70012; color: #FFD700; padding-left: 22px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #FFD700; font-size: 24px; padding: 4px; }
.mobile-nav { display: none; background: #111; border-top: 1px solid #FFD70020; padding: 10px 20px; flex-direction: column; gap: 2px; max-height: 70vh; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-sep { color: #555; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 8px 0; border-bottom: 1px solid #1a1a1a; }
.mobile-nav a { display: block; color: #ccc; padding: 9px 0; border-bottom: 1px solid #1a1a1a; font-size: 13px; font-weight: 600; }
.mobile-nav a:hover, .mobile-nav a.active { color: #FFD700; }

/* ── Footer ── */
.site-footer { background: #070707; border-top: 1px solid #FFD70020; padding: 36px 20px 20px; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a { color: #555; font-size: 11px; transition: color 0.15s; }
.footer-links a:hover { color: #FFD700; }
.footer-disclaimer { color: #2e2e2e; font-size: 11px; max-width: 680px; margin: 0 auto 10px; line-height: 1.8; }
.footer-rg { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; }
.footer-rg a { color: #3a3a3a; font-size: 11px; transition: color 0.15s; }
.footer-rg a:hover { color: #FFD700; }
.footer-copy { color: #1e1e1e; font-size: 10px; margin-top: 10px; }

/* ── Hero ── */
.hero { background: linear-gradient(160deg,#0f0f0f,#1a1200,#0f0f0f); padding: 70px 20px 60px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; opacity:0.03; background-image: radial-gradient(#FFD700 1px, transparent 1px); background-size:36px 36px; pointer-events:none; }
.hero-badge { display:inline-block; background:#FFD70012; border:1px solid #FFD70030; color:#FFD700; font-size:11px; font-weight:700; letter-spacing:2px; padding:5px 16px; border-radius:20px; margin-bottom:20px; }
.hero h1 { font-size: clamp(24px,4.5vw,52px); font-weight:900; color:#FFD700; text-shadow:0 0 50px #FFD70044; margin:0 0 14px; line-height:1.1; }
.hero-sub { color:#ccc; font-size:16px; max-width:560px; margin:0 auto 10px; line-height:1.7; }
.hero-kw { color:#777; font-size:12px; max-width:500px; margin:0 auto 28px; }
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:40px; }
.btn-gold { background:linear-gradient(135deg,#FFD700,#b8860b); color:#000; border:none; border-radius:9px; padding:13px 30px; font-weight:800; font-size:14px; cursor:pointer; font-family:inherit; text-decoration:none; display:inline-block; transition:all 0.15s; }
.btn-gold:hover { transform:scale(1.03); box-shadow:0 0 20px #FFD70044; }
.btn-outline { background:transparent; color:#FFD700; border:1px solid #FFD700; border-radius:9px; padding:13px 30px; font-weight:700; font-size:14px; cursor:pointer; font-family:inherit; text-decoration:none; display:inline-block; transition:all 0.15s; }
.btn-outline:hover { background:#FFD70018; }
.hero-stats { display:flex; justify-content:center; gap:36px; flex-wrap:wrap; }
.hero-stat-val { font-size:24px; font-weight:900; color:#FFD700; }
.hero-stat-label { font-size:11px; color:#777; margin-top:2px; }

/* ── Page Hero (sub-pages) ── */
.page-hero { background:linear-gradient(160deg,#0f0f0f,#1a1200,#0f0f0f); padding:50px 20px 36px; text-align:center; }
.page-hero h1 { font-size:clamp(20px,4vw,38px); font-weight:900; color:#FFD700; margin:0 0 10px; line-height:1.15; }
.page-hero p { color:#aaa; font-size:15px; margin:0; }

/* ── Section wrappers ── */
.section { padding:60px 20px; }
.section-dark { background:#111; border-top:1px solid #FFD70020; border-bottom:1px solid #FFD70020; }
.section-alt { background:#0a0a0a; border-top:1px solid #FFD70018; }
.container { max-width:1100px; margin:0 auto; }
.container-sm { max-width:900px; margin:0 auto; }
.section-title { font-size:22px; font-weight:800; color:#fff; margin:0 0 6px; text-align:center; }
.section-sub { color:#777; font-size:13px; text-align:center; margin-bottom:32px; }

/* ── Casino Cards ── */
.casino-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:20px; }
.casino-card { background:#1a1a1a; border:1px solid #FFD70030; border-radius:14px; padding:22px 18px; display:flex; flex-direction:column; align-items:center; gap:10px; position:relative; transition:transform 0.2s,box-shadow 0.2s; }
.casino-card:hover { transform:translateY(-6px); box-shadow:0 10px 36px #FFD70020; }
.casino-tag { position:absolute; top:-11px; left:50%; transform:translateX(-50%); background:#FFD700; color:#000; font-size:9px; font-weight:800; padding:3px 12px; border-radius:20px; letter-spacing:1px; white-space:nowrap; }
.casino-logo { width:70px; height:70px; border-radius:12px; background:linear-gradient(135deg,#FFD700,#5a3e00); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:900; color:#000; text-align:center; padding:4px; line-height:1.2; }
.casino-name { font-weight:800; font-size:14px; color:#fff; }
.casino-sub-label { font-size:11px; color:#888; margin-top:-6px; }
.casino-bonus { color:#FFD700; font-weight:700; font-size:13px; text-align:center; line-height:1.4; }
.casino-extra { color:#aaa; font-size:12px; text-align:center; }
.casino-stars { color:#FFD700; font-size:13px; }
.casino-disclaimer { color:#444; font-size:9px; margin:0; text-align:center; }

/* ── Register Button ── */
.btn-register { display:block; width:100%; text-align:center; text-decoration:none; padding:11px 0; font-weight:900; font-size:13px; border-radius:8px; margin-top:4px; letter-spacing:0.5px; cursor:pointer; background:#c0392b; color:#fff; border:none; font-family:inherit; transition:all 0.18s cubic-bezier(.34,1.56,.64,1); }
.btn-register:hover { background:linear-gradient(135deg,#ff6b6b,#c0392b,#8b0000); transform:scale(1.05); box-shadow:0 0 22px #e74c3c88,0 4px 16px #0008; }
.btn-register::before { content:''; }
.btn-register:hover::before { content:'🔥 '; }

/* ── Comparison Table ── */
.comp-table { width:100%; border-collapse:collapse; font-size:13px; }
.comp-table thead tr { background:#1a1200; border-bottom:2px solid #FFD700; }
.comp-table th { padding:11px 13px; text-align:left; color:#FFD700; font-weight:700; white-space:nowrap; }
.comp-table tbody tr { border-bottom:1px solid #222; transition:background 0.12s; }
.comp-table tbody tr:nth-child(even) { background:#111; }
.comp-table tbody tr:nth-child(odd) { background:#141414; }
.comp-table tbody tr:hover { background:#1a1200; }
.comp-table td { padding:11px 13px; }
.comp-table .td-name { font-weight:700; color:#fff; }
.comp-table .td-bonus { color:#FFD700; }
.comp-table .td-feat span { background:#FFD70015; color:#FFD700; padding:3px 9px; border-radius:6px; font-size:11px; font-weight:600; }
.comp-table .td-rating { color:#FFD700; }
.comp-table .td-action a { background:#c0392b; color:#fff; border-radius:6px; padding:7px 13px; font-weight:700; font-size:11px; text-decoration:none; transition:all 0.15s; display:inline-block; }
.comp-table .td-action a:hover { background:#ff4444; box-shadow:0 0 12px #e74c3c66; }
.table-wrap { overflow-x:auto; }

/* ── Metrics Table ── */
.metrics-table { width:100%; border-collapse:collapse; font-size:13px; margin:20px 0; }
.metrics-table thead tr { background:#1a1200; border-bottom:2px solid #FFD700; }
.metrics-table th { padding:11px 13px; text-align:left; color:#FFD700; font-weight:700; }
.metrics-table tbody tr { border-bottom:1px solid #222; transition:background 0.12s; }
.metrics-table tbody tr:nth-child(even) { background:#111; }
.metrics-table tbody tr:nth-child(odd) { background:#141414; }
.metrics-table tbody tr:hover { background:#1a1200; }
.metrics-table td { padding:11px 13px; }
.metrics-table .td-feat { font-weight:700; color:#fff; white-space:nowrap; }
.metrics-table .td-spec { color:#ccc; }
.metrics-table .td-rating { color:#FFD700; }

/* ── Pros/Cons ── */
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:24px 0; }
.pros-box { background:#0d1f0d; border:1px solid #2a5a2a; border-radius:10px; padding:18px; }
.cons-box { background:#1f0d0d; border:1px solid #5a2a2a; border-radius:10px; padding:18px; }
.pros-title { color:#4caf50; font-weight:800; font-size:14px; margin-bottom:12px; }
.cons-title { color:#e57373; font-weight:800; font-size:14px; margin-bottom:12px; }
.pros-item, .cons-item { color:#aaa; font-size:13px; padding:5px 0; border-bottom:1px solid rgba(255,255,255,0.05); }
.pros-item:last-child, .cons-item:last-child { border-bottom:none; }

/* ── Article Body ── */
.article-body { color:#bbb; font-size:15px; line-height:1.9; }
.article-body h2 { color:#FFD700; font-size:20px; font-weight:800; margin:32px 0 10px; border-left:3px solid #FFD700; padding-left:14px; }
.article-body h3 { color:#fff; font-size:17px; font-weight:800; margin:24px 0 8px; }
.article-body p { margin:0 0 14px; }
.article-body ul { margin:0 0 14px 20px; }
.article-body li { margin-bottom:6px; color:#bbb; }

/* ── Review header ── */
.review-header { display:flex; align-items:flex-start; gap:20px; margin-bottom:28px; flex-wrap:wrap; }
.review-logo { width:90px; height:90px; border-radius:16px; background:linear-gradient(135deg,#FFD700,#5a3e00); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:900; color:#000; text-align:center; flex-shrink:0; }
.review-stars { color:#FFD700; font-size:22px; }
.review-rating { font-size:16px; font-weight:700; }
.review-site { color:#777; font-size:12px; margin-top:4px; }

/* ── CTA Banner ── */
.cta-banner { background:#1a1200; border:1px solid #FFD70030; border-radius:12px; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-top:32px; }
.cta-banner-title { color:#fff; font-weight:800; font-size:15px; margin-bottom:4px; }
.cta-banner-bonus { color:#FFD700; font-size:13px; }
.cta-banner .btn-register { width:auto; min-width:180px; padding:13px 28px; }

/* ── Slot Machine ── */
.slot-wrap { background:#1a1200; border:2px solid #FFD700; border-radius:20px; padding:30px 24px; max-width:360px; margin:0 auto; text-align:center; box-shadow:0 0 40px #FFD70022; }
.slot-title { color:#FFD700; font-weight:900; font-size:17px; margin-bottom:16px; letter-spacing:2px; }
.slot-reels { display:flex; justify-content:center; gap:10px; margin-bottom:20px; }
.slot-reel { background:#111; border:1px solid #FFD70044; border-radius:10px; width:70px; overflow:hidden; }
.slot-cell { height:56px; display:flex; align-items:center; justify-content:center; font-size:26px; }
.slot-cell.mid { background:#FFD70010; }
.slot-cell.border-b { border-bottom:1px solid #FFD70022; }
.slot-coins { background:#FFD70018; border-radius:8px; padding:5px 14px; display:inline-block; margin-bottom:14px; font-size:13px; color:#FFD700; }
.slot-msg { font-size:13px; margin-bottom:10px; font-weight:600; min-height:20px; }
.slot-msg.win { color:#FFD700; }
.slot-msg.pair { color:#adf; }
.slot-msg.lose { color:#777; }
.slot-btn { background:linear-gradient(135deg,#FFD700,#b8860b); color:#000; border:none; border-radius:10px; padding:13px 0; font-weight:900; font-size:15px; cursor:pointer; width:100%; letter-spacing:1px; font-family:inherit; transition:all 0.15s; }
.slot-btn:disabled { background:#444; cursor:not-allowed; }
.slot-btn:not(:disabled):hover { transform:scale(1.02); box-shadow:0 0 16px #FFD70044; }
.slot-refill { margin-top:10px; background:transparent; border:1px solid #FFD700; color:#FFD700; border-radius:8px; padding:8px 0; font-size:12px; cursor:pointer; width:100%; font-family:inherit; }
.slot-disclaimer { color:#444; font-size:10px; margin-top:10px; }

/* ── How We Rank pillars ── */
.pillars-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; margin-top:32px; }
.pillar-card { background:#1a1a1a; border:1px solid #FFD70030; border-radius:12px; padding:24px 20px; }
.pillar-icon { font-size:28px; margin-bottom:12px; }
.pillar-title { color:#FFD700; font-weight:700; font-size:15px; margin-bottom:8px; }
.pillar-text { color:#999; font-size:13px; line-height:1.7; }

/* ── Contact ── */
.contact-card { background:#1a1200; border:2px solid #FFD700; border-radius:16px; padding:36px 32px; text-align:center; }
.contact-card h2 { color:#fff; font-weight:800; font-size:18px; margin-bottom:10px; }
.contact-card p { color:#aaa; font-size:14px; line-height:1.7; margin-bottom:24px; }
.btn-telegram { display:inline-block; background:linear-gradient(135deg,#FFD700,#b8860b); color:#000; border-radius:12px; padding:16px 40px; font-weight:900; font-size:17px; text-decoration:none; letter-spacing:0.5px; transition:all 0.18s; }
.btn-telegram:hover { transform:scale(1.05); box-shadow:0 0 24px #FFD70066; }
.rg-list { margin-top:32px; background:#111; border:1px solid #FFD70018; border-radius:12px; padding:22px; }
.rg-list-title { color:#FFD700; font-weight:700; font-size:13px; margin-bottom:12px; }
.rg-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid #1a1a1a; font-size:13px; }
.rg-row:last-child { border-bottom:none; }
.rg-row a { color:#ccc; text-decoration:none; }
.rg-row a:hover { color:#FFD700; }
.rg-row span { color:#666; }

/* ── Misc ── */
.tag-badge { background:#FFD700; color:#000; font-size:10px; font-weight:800; padding:3px 12px; border-radius:20px; letter-spacing:1px; white-space:nowrap; }
.gold-rule { border:none; border-top:1px solid #FFD70022; margin:40px 0; }
.rg-notice { color:#444; font-size:12px; max-width:720px; margin:0 auto; line-height:1.9; text-align:center; }
.rg-notice a { color:#FFD700; }
.section-h2 { font-size:20px; font-weight:800; color:#fff; margin:0 0 4px; }
.section-h3 { font-size:15px; color:#FFD700; font-weight:600; margin-bottom:24px; border-left:3px solid #FFD700; padding-left:14px; }

/* ── Responsive ── */
@media(max-width:940px) {
  nav.main-nav { display:none; }
  .hamburger { display:block; }
}
@media(max-width:600px) {
  .pros-cons { grid-template-columns:1fr; }
  .cta-banner { flex-direction:column; align-items:flex-start; }
  .hero-stats { gap:20px; }
}