/* ============================================================
   Rush Hour Live — Shared Styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent-purple: #8b5cf6;
    --dark-bg: #0a0e1a;
    --dark-bg2: #0f172a;
    --dark-bg3: #111827;
    --card-bg: #1a1f36;
    --card-bg2: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Unbounded', sans-serif; }

/* Particles Canvas */
#particles-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* Main content above particles */
.page-content { position: relative; z-index: 1; }

/* Gradient helpers */
.gradient-bg { background: linear-gradient(135deg, #0a0e1a 0%, #1a1f36 50%, #0f172a 100%); }
.gradient-text {
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gradient-btn {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff; border: none; cursor: pointer;
    transition: all 0.3s ease; font-weight: 700;
}
.gradient-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.3); }

/* Card styles */
.card {
    background: rgba(26,31,54,0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.stat-card {
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(16,185,129,0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* Navigation */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 24px;
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.nav-logo-icon {
    width: 40px; height: 40px; background: var(--primary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 14px;
    transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-play-btn {
    padding: 10px 24px; border-radius: 10px; font-size: 14px;
    text-decoration: none; color: #fff; font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transition: all 0.3s;
}
.nav-play-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }
.nav-mobile-btn {
    display: none; background: none; border: none; color: #cbd5e1;
    font-size: 24px; cursor: pointer;
}
.nav-online {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--secondary); font-weight: 500;
}
.nav-online-dot {
    width: 8px; height: 8px; background: var(--secondary);
    border-radius: 50%; animation: pulse 2s infinite;
}

/* Mobile menu */
#mobileMenu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-bg); border-top: 1px solid var(--border);
    padding: 20px 24px;
}
#mobileMenu a {
    display: block; padding: 10px 0; color: var(--text-secondary);
    text-decoration: none; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hidden { display: none !important; }

/* Sections */
.section { padding: 80px 24px; }
.section-alt { background: var(--dark-bg3); }
.section-dark { background: var(--dark-bg2); }
.section-darker { background: var(--dark-bg); }
.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 900px; margin: 0 auto; }

/* Hero section */
.hero { padding-top: 100px; padding-bottom: 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 50px;
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 10px; height: 10px; background: #ef4444;
    border-radius: 50%; animation: pulse 2s infinite;
}
.hero-badge-text { font-size: 13px; font-weight: 600; color: #f87171; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-btn-primary {
    padding: 16px 36px; border-radius: 14px; font-size: 17px;
    text-decoration: none; color: #fff; font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transition: all 0.3s; display: inline-block;
    box-shadow: 0 8px 30px rgba(59,130,246,0.25);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,130,246,0.35); }
.hero-btn-secondary {
    padding: 16px 36px; border-radius: 14px; font-size: 17px;
    text-decoration: none; color: #fff; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s;
    display: inline-block;
}
.hero-btn-secondary:hover { border-color: rgba(255,255,255,0.4); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-stat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.hero-stat svg { width: 16px; height: 16px; }
.hero-img-wrap { position: relative; }
.hero-img {
    width: 100%; height: auto; border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    border-radius: 0 0 16px 16px;
}
.hero-glow1 {
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: rgba(59,130,246,0.2); filter: blur(60px);
}
.hero-glow2 {
    position: absolute; bottom: -40px; left: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(16,185,129,0.15); filter: blur(60px);
}

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.stats-bar .stat-card { padding: 24px; text-align: center; }
.stats-bar .stat-val { font-family: 'Unbounded', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.stats-bar .stat-label { font-size: 13px; color: var(--text-muted); }

/* Section headers */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    background: rgba(59,130,246,0.12); color: #60a5fa;
    border: 1px solid rgba(59,130,246,0.25); margin-bottom: 16px;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Step cards */
.step-card { padding: 28px; }
.step-num { font-family: 'Unbounded', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.step-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 20px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Bet cards */
.bet-card { padding: 28px; text-align: center; }
.bet-card .bet-emoji { font-size: 40px; margin-bottom: 16px; }
.bet-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.bet-card .bet-prob { font-size: 13px; margin-bottom: 16px; }
.bet-card .bet-payout { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.bet-card .bet-label { font-size: 12px; color: var(--text-muted); }
.bet-card .bet-max {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 700;
    background: linear-gradient(90deg, #ef4444, #f59e0b); white-space: nowrap;
}

/* Comparison table */
.comp-table-wrap {
    overflow-x: auto; border-radius: 16px;
    border: 1px solid var(--border);
}
.comp-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.comp-table th {
    padding: 18px 20px; font-weight: 600; color: var(--text-secondary);
    background: rgba(30,41,59,0.9); white-space: nowrap;
}
.comp-table th.rh-col { background: rgba(59,130,246,0.1); color: #60a5fa; }
.comp-table td { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.04); text-align: center; }
.comp-table td:first-child { text-align: left; color: var(--text-secondary); font-weight: 500; min-width: 200px; }
.comp-table td.rh-col { background: rgba(59,130,246,0.05); }
.comp-table .check { color: var(--secondary); font-size: 18px; }
.comp-table .cross { color: #ef4444; font-size: 18px; }
.comp-table .partial { color: #f59e0b; font-size: 18px; }
.comp-table tr:nth-child(even) { background: rgba(15,23,42,0.3); }

/* City cards */
.city-card {
    position: relative; overflow: hidden; border-radius: 16px;
    height: 220px; transition: all 0.3s;
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.city-card-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; opacity: 0.15;
}
.city-card-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.city-card h3 { font-size: 19px; font-weight: 700; }
.city-card p { font-size: 13px; color: var(--text-secondary); }
.city-mini { border-radius: 12px; padding: 14px; text-align: center; font-weight: 600; font-size: 14px; }

/* Feature cards */
.feature-card { padding: 28px; }
.feature-card .feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Fairness cards */
.fair-card { padding: 28px; }
.fair-card svg, .fair-card .fair-icon { margin-bottom: 16px; font-size: 28px; }
.fair-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.fair-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq-item {
    background: rgba(26,31,54,0.6); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px; margin-bottom: 12px;
    cursor: pointer;
}
.faq-item summary {
    font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 600;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span:last-child { color: var(--primary); font-size: 22px; flex-shrink: 0; margin-left: 16px; }
.faq-item p, .faq-item .faq-answer { color: var(--text-muted); margin-top: 16px; font-size: 15px; line-height: 1.7; }

/* SEO text */
.seo-block { padding: 48px 24px; background: rgba(10,14,26,0.9); }
.seo-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.seo-block p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.seo-block strong { color: var(--text-secondary); }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.seo-tag {
    display: inline-block; padding: 6px 14px; border-radius: 50px;
    font-size: 12px; background: rgba(59,130,246,0.08);
    color: var(--text-muted); border: 1px solid rgba(59,130,246,0.15);
    text-decoration: none; transition: all 0.2s;
}
.seo-tag:hover { background: rgba(59,130,246,0.15); color: var(--text-secondary); }

/* CTA section */
.cta-section { padding: 80px 24px; text-align: center; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Footer */
.main-footer {
    padding: 48px 24px; background: var(--dark-bg);
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-secondary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px; display: flex;
    justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-18 { font-size: 12px; color: rgba(100,116,139,0.6); max-width: 400px; text-align: right; }

/* Scroll to top */
#scrollToTop {
    position: fixed; bottom: 32px; right: 100px; z-index: 50;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none;
    font-size: 20px; cursor: pointer; opacity: 0;
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
    pointer-events: none;
}
#scrollToTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- POPUP ---- */
.popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}
.popup-hidden { opacity: 0; pointer-events: none; }
.popup-box {
    background: linear-gradient(135deg, #1a1f36, #0f172a);
    border: 1px solid rgba(59,130,246,0.3); border-radius: 20px;
    padding: 32px; max-width: 420px; width: 100%;
    position: relative; animation: slideUp 0.3s ease;
}
.popup-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: var(--text-muted);
    font-size: 28px; cursor: pointer; transition: color 0.2s;
}
.popup-close:hover { color: #fff; }
.popup-header { text-align: center; margin-bottom: 16px; }
.popup-badge {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    background: linear-gradient(90deg, #3b82f6, #10b981); color: #fff;
    margin-bottom: 12px;
}
.popup-header h3 { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; }
.popup-desc { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.popup-promo {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: rgba(59,130,246,0.1); border: 2px dashed rgba(59,130,246,0.4);
    border-radius: 12px; padding: 14px; margin-bottom: 20px;
}
.popup-code {
    font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700;
    color: #60a5fa; letter-spacing: 2px;
}
.popup-copy {
    padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    transition: all 0.2s;
}
.popup-copy:hover { background: var(--primary-dark); }
.popup-referral {
    background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px; padding: 16px; margin-bottom: 20px;
}
.popup-ref-title { font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 12px; text-align: center; }
.popup-ref-items { display: flex; justify-content: space-around; }
.popup-ref-item { text-align: center; }
.popup-ref-num { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.popup-ref-reward {
    font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700;
    color: var(--secondary);
}
.popup-share { display: flex; gap: 8px; margin-bottom: 20px; }
.popup-share-btn {
    flex: 1; padding: 10px; border-radius: 10px; text-align: center;
    font-size: 12px; font-weight: 600; text-decoration: none;
    color: #fff; transition: all 0.2s;
}
.popup-share-tg { background: #0088cc; }
.popup-share-vk { background: #4a76a8; }
.popup-share-wa { background: #25d366; }
.popup-share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.popup-cta {
    display: block; width: 100%; padding: 16px; border-radius: 14px;
    font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #10b981); color: #fff;
    border: none; cursor: pointer; transition: all 0.3s;
}
.popup-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.3); }

/* ---- TG NOTIFICATION ---- */
.tg-notif-btn {
    position: fixed; top: 100px; right: 20px; z-index: 90;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff; font-weight: 900; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(239,68,68,0.4);
    animation: wobble 3s infinite;
}
@keyframes wobble {
    0%,100% { transform: rotate(0deg); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(6deg); }
    60% { transform: rotate(-4deg); }
    75% { transform: rotate(2deg); }
}

/* ---- CHAT ---- */
.chat-float-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 80;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 20px; border-radius: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff; cursor: pointer; font-weight: 600; font-size: 14px;
    box-shadow: 0 4px 20px rgba(59,130,246,0.4);
    transition: all 0.3s; user-select: none;
}
.chat-float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,130,246,0.5); }
.chat-icon { font-size: 18px; }
.chat-unread {
    background: #ef4444; color: #fff; font-size: 11px; font-weight: 700;
    min-width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}
.chat-box {
    position: fixed; bottom: 24px; right: 24px; z-index: 85;
    width: 340px; max-height: 480px; border-radius: 16px;
    background: var(--dark-bg2); border: 1px solid var(--border);
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.3s ease;
}
.chat-hidden { display: none !important; }
.chat-header {
    padding: 14px 16px; display: flex; justify-content: space-between; align-items: center;
    background: rgba(30,41,59,0.9); border-bottom: 1px solid var(--border);
}
.chat-header-left { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.chat-header-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse 2s infinite; }
.chat-header-right { display: flex; align-items: center; gap: 12px; }
.chat-online-count { font-size: 12px; color: var(--secondary); }
.chat-close { background: none; border: none; color: var(--text-muted); font-size: 22px; cursor: pointer; }
.chat-close:hover { color: #fff; }
.chat-messages { flex: 1; overflow-y: auto; padding: 12px; min-height: 300px; max-height: 340px; }
.chat-msg { margin-bottom: 10px; animation: fadeIn 0.3s ease; }
.chat-msg-name { font-size: 12px; font-weight: 600; color: #60a5fa; margin-right: 8px; }
.chat-msg-user .chat-msg-name { color: var(--secondary); }
.chat-msg-text { font-size: 13px; color: var(--text-secondary); }
.chat-input-wrap {
    display: flex; padding: 10px; border-top: 1px solid var(--border);
    background: rgba(30,41,59,0.5);
}
.chat-input-wrap input {
    flex: 1; background: rgba(15,23,42,0.8); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 12px; color: #fff; font-size: 13px;
    outline: none; font-family: 'Inter', sans-serif;
}
.chat-input-wrap input::placeholder { color: var(--text-muted); }
.chat-send {
    background: var(--primary); border: none; color: #fff; padding: 8px 14px;
    border-radius: 8px; margin-left: 8px; cursor: pointer; font-size: 16px;
    transition: background 0.2s;
}
.chat-send:hover { background: var(--primary-dark); }

/* ---- STREAMER BANNER ---- */
.streamer-banner {
    border-radius: 16px; padding: 28px 32px;
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(59,130,246,0.12));
    border: 1px solid rgba(139,92,246,0.2);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.streamer-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(139,92,246,0.15);
    display: flex; align-items: center; justify-content: center; font-size: 30px;
}
.streamer-amount { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 800; color: var(--secondary); }
.streamer-btn {
    padding: 14px 28px; border-radius: 14px; font-weight: 700;
    text-decoration: none; color: #fff;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    transition: all 0.3s; font-size: 15px;
}
.streamer-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.3); }

/* ---- BONUS PAGE ---- */
.bonus-hero-code {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 24px; border-radius: 12px;
    background: rgba(59,130,246,0.1); border: 2px dashed rgba(59,130,246,0.4);
    font-family: 'Unbounded', sans-serif; font-size: 28px; font-weight: 700;
    color: #60a5fa; margin-bottom: 20px; letter-spacing: 3px;
}
.deposit-card { padding: 28px; text-align: center; position: relative; }
.deposit-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700;
    background: var(--primary); color: #fff;
}
.deposit-card.special { border-color: rgba(245,158,11,0.4); }
.deposit-card.special .deposit-num { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.deposit-bonus { font-family: 'Unbounded', sans-serif; font-size: 36px; font-weight: 800; margin: 16px 0 8px; }
.deposit-fs { font-size: 18px; font-weight: 600; color: var(--secondary); }
.vip-level {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    border-radius: 12px; background: rgba(26,31,54,0.5);
    border: 1px solid var(--border); margin-bottom: 12px;
}
.vip-badge {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.vip-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.vip-info p { font-size: 13px; color: var(--text-muted); }

/* ---- REVIEWS PAGE ---- */
.review-card { padding: 24px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-name { font-weight: 700; font-size: 15px; }
.review-location { font-size: 13px; color: var(--text-muted); }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.review-date { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.rating-summary {
    text-align: center; padding: 40px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(16,185,129,0.08));
    border: 1px solid rgba(59,130,246,0.15); margin-bottom: 48px;
}
.rating-big { font-family: 'Unbounded', sans-serif; font-size: 64px; font-weight: 800; }
.rating-bar-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rating-bar-label { font-size: 14px; color: var(--text-muted); width: 60px; text-align: right; }
.rating-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #3b82f6, #10b981); }
.rating-bar-count { font-size: 13px; color: var(--text-muted); width: 40px; }

/* ---- PAYMENT TABLE ---- */
.pay-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pay-table th {
    padding: 14px 16px; background: rgba(30,41,59,0.9);
    font-weight: 600; color: var(--text-secondary); text-align: left;
}
.pay-table td {
    padding: 14px 16px; border-top: 1px solid var(--border); color: var(--text-secondary);
}
.pay-table tr:nth-child(even) { background: rgba(15,23,42,0.3); }

/* ---- ANIMATIONS ---- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-btn { display: block; }
    .nav-play-btn { display: none; }
    .nav-online { display: none; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 48px 16px; }
    .hero { padding-top: 80px; padding-bottom: 48px; }
    .streamer-banner { flex-direction: column; text-align: center; }
    .streamer-amount { font-size: 28px; }
    .chat-box { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
    .popup-box { padding: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-18 { text-align: center; }
    .comp-table td:first-child { min-width: 140px; }
}
@media (max-width: 480px) {
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stats-bar .stat-card { padding: 16px; }
    .stats-bar .stat-val { font-size: 22px; }
    .hero h1 { font-size: 28px; }
    .hero-btn-primary, .hero-btn-secondary { padding: 14px 24px; font-size: 15px; }
    .tg-notif-btn { top: 80px; right: 12px; width: 40px; height: 40px; font-size: 18px; }
}
