:root {
    --brand-blue: #00A3FF;
    --deep-blue: #0029D9;
    --bg: #060B14;
    --bg-card: #0D1525;
    --bg-card2: #111D35;
    --text: #FFFFFF;
    --text-muted: #8A9BBE;
    --border: rgba(0, 163, 255, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --green: #00C853;
    --red: #FF5252;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--brand-blue); text-decoration: none; }
h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; margin-top: 32px; }
p { color: var(--text-muted); margin-bottom: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--brand-blue), var(--deep-blue)); color: #fff !important; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: opacity .2s, transform .2s; cursor: pointer; border: none; }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--brand-blue); padding: 12px 28px; border-radius: var(--radius); border: 1px solid var(--brand-blue); font-weight: 600; font-size: 0.95rem; transition: all .2s; }
.btn-outline:hover { background: rgba(0,163,255,.1); }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(6,11,20,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; flex-shrink: 0; }
.logo span { color: var(--brand-blue); }
.main-nav { display: flex; gap: 4px; flex: 1; }
.main-nav a { color: var(--text-muted); padding: 8px 16px; border-radius: 8px; font-size: .9rem; transition: all .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); background: var(--bg-card); }

/* HERO */
.hero { padding: 72px 0 80px; }
.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,.12); color: #f59e0b; padding: 6px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 22px; border: 1px solid rgba(245,158,11,.25); }
.hero h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; letter-spacing: -1px; margin-top: 0; }
.hero h1 .accent { color: var(--brand-blue); }
.hero > .container > .hero-content > p { font-size: 1.05rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; align-items: center; gap: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 24px; width: fit-content; }
.stat { text-align: center; padding: 0 20px; }
.stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--brand-blue); }
.stat span { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* CASINO CARD */
.casino-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.casino-card.featured { border-color: rgba(0,163,255,.35); box-shadow: 0 0 50px rgba(0,163,255,.08); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.card-badge { background: linear-gradient(135deg, var(--brand-blue), var(--deep-blue)); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; }
.card-rating { display: flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: .88rem; }
.card-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; margin-top: 0; }
.card-bonus { background: rgba(0,163,255,.07); border: 1px solid rgba(0,163,255,.18); border-radius: var(--radius); padding: 14px; text-align: center; margin-bottom: 18px; }
.bonus-label { display: block; color: var(--text-muted); font-size: .8rem; margin-bottom: 4px; }
.bonus-value { display: block; font-size: 2rem; font-weight: 800; color: var(--brand-blue); line-height: 1; }
.card-features { list-style: none; margin-bottom: 20px; }
.card-features li { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: .9rem; }
.card-features li:last-child { border-bottom: none; }
.card-note { text-align: center; color: var(--text-muted); font-size: .75rem; margin-top: 10px; }

/* FEATURES */
.features { padding: 72px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { text-align: center; font-size: 1.9rem; font-weight: 800; margin-bottom: 44px; margin-top: 0; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: border-color .2s; }
.feature-card:hover { border-color: rgba(0,163,255,.35); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: rgba(0,163,255,.1); border-radius: 14px; margin: 0 auto 18px; color: var(--brand-blue); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; margin-top: 0; }
.feature-card p { color: var(--text-muted); font-size: .875rem; margin: 0; }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-inner { background: linear-gradient(135deg, rgba(0,163,255,.08), rgba(0,41,217,.08)); border: 1px solid rgba(0,163,255,.2); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: 2rem; margin-bottom: 14px; margin-top: 0; }
.cta-inner p { font-size: 1.05rem; margin-bottom: 28px; }
.cta-note { color: var(--text-muted); font-size: .78rem; margin-top: 14px; }

/* PAGE HERO */
.page-hero { padding: 52px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand-blue); }
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; margin-top: 0; }
.page-hero p { color: var(--text-muted); font-size: 1rem; margin: 0; }

/* REVIEW */
.review-content { padding: 52px 0; }
.rating-block { text-align: center; padding: 36px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 36px; }
.rating-score { font-size: 4.5rem; font-weight: 800; color: var(--brand-blue); line-height: 1; }
.rating-stars { display: flex; justify-content: center; gap: 4px; margin: 10px 0 6px; }
.rating-label { color: var(--text-muted); font-size: .9rem; }
.review-cta-top { text-align: center; margin-bottom: 40px; }
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 36px; }
.info-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.info-table td:first-child { color: var(--text-muted); width: 42%; }
.info-table tr:last-child td { border-bottom: none; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.pros, .cons { background: var(--bg-card); border-radius: var(--radius); padding: 22px; }
.pros { border-left: 3px solid var(--green); }
.cons { border-left: 3px solid var(--red); }
.pros h3, .cons h3 { display: flex; align-items: center; gap: 8px; font-size: 1rem; margin-bottom: 14px; margin-top: 0; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding: 6px 0; color: var(--text-muted); font-size: .88rem; border-bottom: 1px solid var(--border); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.review-cta { text-align: center; padding: 36px 0 0; }

/* BONUSES */
.bonuses { padding: 52px 0; }
.bonus-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 52px; }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; }
.bonus-card.featured-bonus { border-color: rgba(0,163,255,.35); box-shadow: 0 0 40px rgba(0,163,255,.07); }
.bonus-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,163,255,.12); color: var(--brand-blue); padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600; margin-bottom: 14px; width: fit-content; }
.bonus-tag-green { background: rgba(0,200,83,.12); color: var(--green); }
.bonus-tag-purple { background: rgba(139,92,246,.12); color: #8b5cf6; }
.bonus-card h2 { font-size: 1.15rem; margin-bottom: 10px; margin-top: 0; }
.bonus-card > p { color: var(--text-muted); margin-bottom: 18px; font-size: .88rem; flex: 1; }
.bonus-details { background: rgba(0,0,0,.2); border-radius: var(--radius); padding: 14px; margin-bottom: 18px; }
.bonus-detail-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.bonus-detail-item:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); }
.detail-value { font-weight: 600; }
.bonus-info h2 { font-size: 1.5rem; margin-bottom: 28px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.step-num { width: 36px; height: 36px; background: linear-gradient(135deg, var(--brand-blue), var(--deep-blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; margin-bottom: 14px; }
.step-content h3 { font-size: .95rem; margin-bottom: 8px; margin-top: 0; }
.step-content p { font-size: .83rem; margin: 0; }

/* BLOG */
.blog { padding: 52px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; transition: border-color .2s; }
.blog-card:hover { border-color: rgba(0,163,255,.3); }
.blog-cat { display: inline-block; background: rgba(0,163,255,.12); color: var(--brand-blue); padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; margin-bottom: 12px; }
.blog-card h2 { font-size: 1rem; margin-bottom: 10px; line-height: 1.45; margin-top: 0; flex: 1; }
.blog-card h2 a { color: var(--text); }
.blog-card h2 a:hover { color: var(--brand-blue); }
.blog-card > p { color: var(--text-muted); font-size: .85rem; margin-bottom: 16px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.article-date { color: var(--text-muted); font-size: .78rem; }
.read-more { font-weight: 600; font-size: .85rem; }

/* ARTICLE */
.article-content { padding: 48px 0; }
.article-content h2 { font-size: 1.4rem; margin-top: 36px; }
.article-content p { line-height: 1.75; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.article-cta { text-align: center; padding: 40px 0 0; border-top: 1px solid var(--border); margin-top: 40px; }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--bg-card); border: 1px solid rgba(0,163,255,.3); border-radius: var(--radius-lg); padding: 40px; max-width: 440px; width: 90%; text-align: center; position: relative; box-shadow: 0 0 60px rgba(0,163,255,.15); }
.popup-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 4px; }
.popup-close:hover { color: var(--text); }
.popup-badge { display: inline-block; background: rgba(245,158,11,.12); color: #f59e0b; padding: 5px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 16px; }
.popup-box h2 { font-size: 1.6rem; margin-bottom: 12px; margin-top: 0; }
.popup-box h2 span { color: var(--brand-blue); }
.popup-box p { margin-bottom: 22px; font-size: .9rem; }
.popup-note { color: var(--text-muted); font-size: .75rem; margin-top: 12px; }

/* FOOTER */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 56px 0 28px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-col .logo { display: inline-block; margin-bottom: 12px; }
.footer-col > p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; }
.footer-col h4 { font-size: .75rem; font-weight: 700; margin-bottom: 14px; margin-top: 0; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 9px; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand-blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: .8rem; margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { width: 100%; justify-content: center; }
    .bonus-cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .main-nav { display: none; }
    .steps { grid-template-columns: 1fr; }
}

/* LANG SWITCH */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switch { color: var(--text-muted); font-size: .82rem; padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px; transition: all .2s; }
.lang-switch:hover { color: var(--text); border-color: rgba(0,163,255,.4); }
