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

:root {
  --bg: #0d0b1a;
  --bg-2: #110e1e;
  --bg-card: #1a1630;
  --border: rgba(255,255,255,0.08);
  --orange: #ff5500;
  --orange-l: #ff7733;
  --gold: #ffb800;
  --purple: #7b4fd0;
  --purple-l: #9b6ff0;
  --cyan: #00c8ff;
  --green: #22c55e;
  --red: #ef4444;
  --text-1: #ffffff;
  --text-2: #a0a8c0;
  --text-3: #606880;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --trans: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text-1); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── HEADER ── */
header { position: sticky; top: 0; z-index: 100; background: #0d0b1a; }
header::after { content: ''; display: block; height: 2px; background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #00ccff, #0055ff, #aa00ff); }

.header-inner { max-width: 940px; margin: 0 auto; padding: 0 20px; height: 60px; display: flex; align-items: center; gap: 40px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 22px; font-weight: 800; letter-spacing: 1px; color: #fff; text-transform: uppercase; flex-shrink: 0; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, #ff5500, #cc2200); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }

nav { display: flex; gap: 28px; align-items: center; }
nav a { font-size: 14px; font-weight: 500; color: var(--text-2); }
nav a:hover, nav a.active { color: #fff; }

.header-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.btn-login { padding: 8px 20px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill); background: transparent; color: #fff; font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--trans); }
.btn-login:hover { border-color: #fff; }

.btn-claim { padding: 8px 20px; border-radius: var(--radius-pill); background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: var(--trans); }
.btn-claim:hover { background: var(--orange-l); }

.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; margin-left: auto; }

/* ── HERO BANNER ── */
.hero-banner { padding: 20px 20px 0; max-width: 940px; margin: 0 auto; }

.hero-slide { background: linear-gradient(135deg, #2d1070 0%, #4a1a90 40%, #3a0a78 70%, #260060 100%); border-radius: var(--radius-lg); padding: 48px 48px 36px; position: relative; overflow: hidden; }
.hero-slide::after { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: radial-gradient(ellipse at 80% 40%, rgba(120,50,255,0.35) 0%, transparent 65%); pointer-events: none; }

.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill); padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px; }
.hero-badge::before { content: '●'; color: var(--orange); font-size: 8px; }

.hero-title { font-family: var(--font-head); font-size: 68px; font-weight: 900; line-height: 0.95; text-transform: uppercase; margin-bottom: 18px; }

.hero-sub { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.hero-note { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }

.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--orange); color: #fff; font-weight: 700; font-size: 14px; border: none; border-radius: var(--radius-pill); cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--trans); }
.btn-hero:hover { background: var(--orange-l); }

.hero-dots { display: flex; gap: 6px; margin-top: 32px; }
.hero-dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); }
.hero-dot.active { background: var(--orange); width: 36px; }

/* ── POPULAR GAMES ── */
.games-section { padding: 40px 0; }

.games-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.games-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.see-all { font-size: 13px; color: var(--text-3); }
.see-all:hover { color: var(--orange); }

.search-bar { display: flex; align-items: center; gap: 10px; background: #1a1630; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 10px 18px; margin-bottom: 14px; }
.search-bar span { color: var(--text-3); font-size: 14px; }
.search-bar input { background: none; border: none; outline: none; color: var(--text-2); font-size: 14px; flex: 1; font-family: var(--font-body); }
.search-bar input::placeholder { color: var(--text-3); }

.filter-pills { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.filter-pill { padding: 7px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text-2); transition: var(--trans); font-family: var(--font-body); }
.filter-pill:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.games-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }

.game-card { border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: transform 0.2s; background: var(--bg-card); }
.game-card:hover { transform: scale(1.04); }

.game-img { height: 140px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 6px; }
.game-badge { position: absolute; top: 6px; left: 6px; padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.badge-hot { background: var(--orange); color: #fff; }
.badge-new { background: var(--green); color: #fff; }
.badge-bonus { background: #996600; color: #fff; font-size: 9px; }
.game-provider-tag { font-size: 10px; color: rgba(255,255,255,0.6); background: rgba(0,0,0,0.55); padding: 2px 6px; border-radius: 4px; align-self: flex-start; }
.game-name { font-size: 12px; padding: 6px 8px 8px; font-weight: 500; color: var(--text-1); }

/* ── REVIEW TEXT SECTION ── */
.review-text-section { background: var(--bg-2); padding: 60px 0; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); text-align: center; margin-bottom: 14px; }

.section-headline { font-family: var(--font-head); font-size: 46px; font-weight: 900; text-transform: uppercase; line-height: 1; text-align: center; margin-bottom: 28px; }
.c-orange { color: var(--orange); }
.c-gold { color: var(--gold); }
.c-cyan { color: var(--cyan); }

.review-body-text { font-size: 16px; color: var(--text-2); text-align: center; max-width: 760px; margin: 0 auto 20px; line-height: 1.8; }

.section-divider { display: flex; align-items: center; gap: 0; justify-content: center; margin: 32px auto; max-width: 400px; }
.divider-line { flex: 1; height: 2px; }
.divider-dot { width: 8px; height: 8px; border-radius: 50%; margin: 0 6px; }

/* ── PROS & CONS ── */
.pros-cons-section { padding: 60px 0; }

.pros-header { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--radius) var(--radius) 0 0; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.pros-label { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--green); font-size: 16px; }
.pros-count { font-size: 13px; color: var(--text-3); }

.pro-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-top: none; background: var(--bg-card); }
.pro-row:last-child { border-radius: 0 0 var(--radius) var(--radius); }

.cons-header { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius) var(--radius) 0 0; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.cons-label { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--red); font-size: 16px; }

.con-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); border-top: none; background: var(--bg-card); }
.con-row:last-child { border-radius: 0 0 var(--radius) var(--radius); }

.row-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.pro-icon-bg { background: rgba(34,197,94,0.15); }
.con-icon-bg { background: rgba(239,68,68,0.15); }

.row-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.row-text p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── VERDICT ── */
.verdict-box { border: 2px solid var(--orange); border-radius: var(--radius-lg); padding: 28px; margin-top: 24px; background: rgba(255,85,0,0.05); }
.verdict-title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--gold); }
.verdict-text { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.verdict-text strong { color: #fff; }
.score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.score-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); }
.score-value { font-size: 22px; font-weight: 800; color: var(--gold); }
.score-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--gold)); border-radius: 3px; }

/* ── MOBILE SECTION ── */
.mobile-section { background: var(--bg-2); padding: 60px 0; }
.mobile-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--cyan); border-radius: var(--radius-pill); padding: 4px 16px; font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--cyan); letter-spacing: 1px; margin-bottom: 20px; }
.mobile-headline { font-family: var(--font-head); font-size: 46px; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 24px; }

/* ── GUIDE CARDS ── */
.guide-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.guide-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; }
.guide-title-row { display: flex; align-items: center; gap: 12px; }
.guide-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(123,79,208,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.guide-title { font-size: 18px; font-weight: 700; }
.guide-sub { font-size: 12px; color: var(--text-3); }
.guide-action-btn { padding: 8px 20px; background: var(--purple); border: none; border-radius: var(--radius-pill); color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: var(--font-body); }
.guide-action-btn:hover { background: var(--purple-l); }
.guide-step { display: flex; gap: 20px; padding: 16px 0; border-top: 1px solid var(--border); margin-top: 16px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(123,79,208,0.5); color: var(--purple-l); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-2); }

/* ── WELCOME BONUS CARD ── */
.welcome-bonus-card { border: 2px solid var(--orange); border-radius: var(--radius-lg); background: linear-gradient(135deg, #2a0d6b 0%, #200050 100%); padding: 40px; text-align: center; margin: 40px 0; }
.exclusive-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,184,0,0.4); border-radius: var(--radius-pill); padding: 4px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.wb-title { font-family: var(--font-head); font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.bonus-percent { font-family: var(--font-head); font-size: 110px; font-weight: 900; color: var(--orange); line-height: 1; margin: 4px 0 8px; }
.bonus-welcome-desc { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.bonus-welcome-amount { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--gold); margin-bottom: 28px; }

.bonus-cells { display: flex; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; background: rgba(0,0,0,0.3); }
.bonus-cell { flex: 1; padding: 16px 12px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.bonus-cell:last-child { border-right: none; }
.bonus-cell-val { font-size: 22px; font-weight: 800; color: var(--gold); }
.bonus-cell-key { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.btn-claim-big { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: var(--orange); color: #fff; font-weight: 700; font-size: 16px; border: none; border-radius: var(--radius-pill); cursor: pointer; text-transform: uppercase; transition: var(--trans); }
.btn-claim-big:hover { background: var(--orange-l); }
.wb-disclaimer { font-size: 12px; color: var(--text-3); margin-top: 14px; }

/* ── PLAYER REVIEWS ── */
.reviews-section { padding: 60px 0; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.reviewer-info { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; }
.reviewer-name-row { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.verified-badge { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); background: rgba(34,197,94,0.12); padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.reviewer-location { font-size: 13px; color: var(--text-3); }
.review-stars-date { text-align: right; }
.stars { color: var(--green); font-size: 13px; letter-spacing: 2px; }
.review-date { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.review-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.review-body { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.review-actions { display: flex; gap: 10px; }
.review-btn { display: flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; color: var(--text-2); background: transparent; cursor: pointer; font-family: var(--font-body); transition: var(--trans); }
.review-btn:hover { border-color: rgba(255,255,255,0.2); color: #fff; }

/* ── FULL SPECS ── */
.specs-section { background: var(--bg-2); padding: 60px 0; }
.specs-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 14px 20px; font-size: 14px; }
.specs-table td:first-child { color: var(--text-3); font-weight: 500; width: 40%; }
.specs-table td:last-child { color: var(--text-1); font-weight: 600; }

/* ── BANKING ── */
.banking-section { padding: 60px 0; }
.payment-group { margin-bottom: 28px; }
.payment-group-title { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; padding: 0 4px; }
.payment-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; }
.payment-table th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); }
.payment-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.payment-table tr:last-child td { border-bottom: none; }
.payment-table td:first-child { font-weight: 600; }
.ssl-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); margin-top: 16px; }

/* ── CASINO GUIDE ── */
.guide-section { background: var(--bg-2); padding: 60px 0; }
.content-block h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin: 28px 0 10px; text-transform: uppercase; }
.content-block h3:first-child { margin-top: 0; }
.content-block p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }

/* ── RESPONSIBLE GAMBLING ── */
.rg-section { padding: 60px 0; }
.rg-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.rg-tagline { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--orange); margin-bottom: 16px; font-style: italic; }
.warning-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 10px; }
.warning-list li::before { content: '⚠'; font-size: 13px; flex-shrink: 0; }
.warning-list li:last-child { border-bottom: none; }
.rg-resources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.rg-resource { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.rg-resource-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.rg-resource-desc { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.rg-resource-phone { font-size: 18px; font-weight: 700; color: var(--orange); }

/* ── FAQ ── */
.faq-section { background: var(--bg-2); padding: 60px 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; background: var(--bg-card); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; text-align: left; gap: 16px; font-family: var(--font-body); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: var(--trans); color: var(--text-3); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); color: var(--orange); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ── */
footer { background: #080612; border-top: 1px solid var(--border); }
.footer-inner { max-width: 940px; margin: 0 auto; padding: 48px 20px 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.footer-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.footer-badge { padding: 4px 10px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 11px; color: var(--text-3); }
.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-1); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-3); }
.footer-links a:hover { color: var(--text-1); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.footer-legal { font-size: 11px; color: var(--text-3); line-height: 1.7; margin-bottom: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-age { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--text-3); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--text-3); }

/* ── INNER PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #2d1070 0%, #3a0a78 100%); padding: 52px 0; text-align: center; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-head); font-size: 52px; font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto; }

/* ── BONUS PAGE CARDS ── */
.bonus-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.bonus-card-full { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.bc-orange { border-color: rgba(255,85,0,0.3); }
.bc-gold { border-color: rgba(255,184,0,0.3); }
.bc-cyan { border-color: rgba(0,200,255,0.3); }
.bonus-card-head { padding: 24px; border-bottom: 1px solid var(--border); }
.bonus-card-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.bc-orange .bonus-card-type { color: var(--orange); }
.bc-gold .bonus-card-type { color: var(--gold); }
.bc-cyan .bonus-card-type { color: var(--cyan); }
.bonus-card-amount { font-family: var(--font-head); font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.bc-orange .bonus-card-amount { color: var(--orange); }
.bc-gold .bonus-card-amount { color: var(--gold); }
.bc-cyan .bonus-card-amount { color: var(--cyan); }
.bonus-card-body { padding: 20px 24px; }
.bonus-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.bonus-detail-row:last-of-type { border-bottom: none; }
.bonus-detail-key { color: var(--text-3); }
.bonus-detail-val { font-weight: 600; }
.claim-btn { display: block; text-align: center; margin-top: 16px; padding: 12px; background: var(--orange); border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; color: #fff; transition: var(--trans); }
.claim-btn:hover { background: var(--orange-l); }
.claim-small { font-size: 11px; color: var(--text-3); text-align: center; margin-top: 8px; }

/* ── STEPS GRID (bonus page) ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.step-num-circle { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── REVIEWS PAGE ── */
.rating-overview { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 40px; }
.rating-big { text-align: center; }
.rating-number { font-family: var(--font-head); font-size: 80px; font-weight: 900; color: var(--orange); line-height: 1; }
.rating-out-of { font-size: 18px; color: var(--text-3); }
.rating-stars-big { font-size: 28px; color: var(--gold); margin: 8px 0; }
.rating-count { font-size: 13px; color: var(--text-3); }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rating-bar-label { width: 28px; font-size: 13px; color: var(--text-3); text-align: right; }
.rating-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar-pct { width: 34px; font-size: 13px; color: var(--text-3); }

.score-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.score-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.score-card-label { font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
.score-card-value { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--orange); }
.score-card-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.score-card-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--gold)); }

/* ── MOBILE APP PAGE ── */
.app-hero { background: linear-gradient(135deg, #2d1070 0%, #3a0a78 100%); padding: 60px 0; }
.app-hero-inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; }
.phone-mockup { width: 260px; height: 460px; background: #120e22; border-radius: 32px; border: 2px solid rgba(255,255,255,0.15); margin: 0 auto; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.phone-inner { padding: 16px; height: 100%; }
.phone-top-bar { background: var(--orange); border-radius: 6px; padding: 8px 12px; font-size: 10px; font-weight: 700; text-align: center; margin-bottom: 10px; text-transform: uppercase; }
.phone-games-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.phone-game-card { border-radius: 8px; aspect-ratio: 1; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── STATS STRIP ── */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 20px 20px 0; max-width: 940px; margin: 0 auto; }
.stat-card { border-radius: var(--radius); padding: 18px 20px; text-align: center; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; inset: 0; opacity: 0.12; }
.stat-val { font-family: var(--font-head); font-size: 36px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }
.sc-orange { background: rgba(255,85,0,0.12); border: 1px solid rgba(255,85,0,0.35); }
.sc-orange .stat-val { color: var(--orange); }
.sc-gold { background: rgba(255,184,0,0.12); border: 1px solid rgba(255,184,0,0.35); }
.sc-gold .stat-val { color: var(--gold); }
.sc-cyan { background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.3); }
.sc-cyan .stat-val { color: var(--cyan); }
.sc-purple { background: rgba(123,79,208,0.12); border: 1px solid rgba(123,79,208,0.35); }
.sc-purple .stat-val { color: var(--purple-l); }

/* ── OFFER CARDS ── */
.offer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 20px 0; max-width: 940px; margin: 0 auto; }
.offer-card { border-radius: var(--radius-lg); padding: 28px 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.offer-card::after { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border-radius: 50%; opacity: 0.15; }
.oc-orange { background: linear-gradient(135deg, rgba(255,85,0,0.18), rgba(255,85,0,0.06)); border: 1px solid rgba(255,85,0,0.4); }
.oc-orange::after { background: var(--orange); }
.oc-gold { background: linear-gradient(135deg, rgba(255,184,0,0.18), rgba(255,184,0,0.06)); border: 1px solid rgba(255,184,0,0.4); }
.oc-gold::after { background: var(--gold); }
.oc-cyan { background: linear-gradient(135deg, rgba(0,200,255,0.15), rgba(0,200,255,0.05)); border: 1px solid rgba(0,200,255,0.35); }
.oc-cyan::after { background: var(--cyan); }
.offer-icon { font-size: 28px; }
.offer-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.oc-orange .offer-type { color: var(--orange); }
.oc-gold .offer-type { color: var(--gold); }
.oc-cyan .offer-type { color: var(--cyan); }
.offer-amount { font-family: var(--font-head); font-size: 40px; font-weight: 900; line-height: 1; }
.oc-orange .offer-amount { color: var(--orange); }
.oc-gold .offer-amount { color: var(--gold); }
.oc-cyan .offer-amount { color: var(--cyan); }
.offer-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; flex: 1; }
.offer-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; margin-top: 4px; transition: var(--trans); }
.oc-orange .offer-link { color: var(--orange); }
.oc-gold .offer-link { color: var(--gold); }
.oc-cyan .offer-link { color: var(--cyan); }
.offer-link:hover { opacity: 0.8; }

/* ── QUICK FACTS GRID ── */
.quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.qf-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start; }
.qf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.qf-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.qf-value { font-size: 15px; font-weight: 700; }

/* ── PAYMENT PILLS VISUAL ── */
.payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 28px; }
.pay-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; text-align: center; transition: var(--trans); }
.pay-card:hover { border-color: rgba(255,255,255,0.2); }
.pay-icon { font-size: 24px; margin-bottom: 8px; }
.pay-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.pay-speed { font-size: 11px; color: var(--green); font-weight: 500; }
.pay-limit { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ── SECTION INTRO ── */
.section-intro { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.section-intro-line { flex: 1; height: 1px; background: var(--border); }

/* ── HIGHLIGHT QUOTE ── */
.highlight-quote { background: linear-gradient(135deg, rgba(255,85,0,0.1), rgba(123,79,208,0.1)); border-left: 3px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 28px 0; font-size: 16px; font-style: italic; color: var(--text-1); line-height: 1.7; }

/* ── COLORED SPECS TABLE ── */
.specs-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.specs-table td:last-child { color: var(--text-1); }
.spec-highlight { color: var(--orange) !important; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, #2d1070 0%, #3a0a78 100%); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin: 40px 0; border: 1px solid rgba(255,85,0,0.3); }
.cta-banner h2 { font-family: var(--font-head); font-size: 38px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: #0d0b1a; padding: 16px 20px; border-bottom: 1px solid var(--border); z-index: 99; gap: 16px; }
  .mobile-menu-btn { display: block; }
  .header-actions .btn-login { display: none; }
  .header-inner { position: relative; }
  .hero-title { font-size: 48px; }
  .hero-slide { padding: 36px 24px 32px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .section-headline { font-size: 32px; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .score-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-resources { grid-template-columns: 1fr; }
  .rating-overview { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .app-hero-inner { grid-template-columns: 1fr; }
  .mobile-headline { font-size: 34px; }
  .page-hero h1 { font-size: 36px; }
  .bonus-percent { font-size: 80px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .offer-cards { grid-template-columns: 1fr; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .quick-facts { grid-template-columns: 1fr; }
}
