/* ===== VARIABLES ===== */
:root {
    --bg-dark: #0a1229;
    --bg-deeper: #060d1f;
    --bg-card: #0f1a3a;
    --bg-card-hover: #152250;
    --blue-primary: #1e5adc;
    --blue-bright: #3282ff;
    --blue-light: #64aaff;
    --blue-glow: rgba(50, 130, 255, 0.3);
    --accent: #ff8c1a;
    --accent-hover: #ffa040;
    --gold: #ffc832;
    --red: #dc3232;
    --white: #ffffff;
    --text: #c8d6f0;
    --text-muted: #8899bb;
    --font-main: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
    --font-display: 'Oswald', 'Noto Sans Devanagari', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(50, 130, 255, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 700;
    font-size: 15px; border: none; cursor: pointer;
    transition: var(--transition); text-align: center;
    font-family: var(--font-main); white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    color: var(--white); box-shadow: 0 4px 20px rgba(30, 90, 220, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(30, 90, 220, 0.6); color: var(--white); }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), #ff6a00);
    color: var(--white); box-shadow: 0 4px 20px rgba(255, 140, 26, 0.4);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(255, 140, 26, 0.6); color: var(--white); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { border-color: var(--blue-bright); color: var(--blue-bright); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.08); color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-xl { padding: 20px 48px; font-size: 20px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

.pulse-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 140, 26, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(255, 140, 26, 0.8), 0 0 60px rgba(255, 140, 26, 0.3); }
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
    background: rgba(10, 18, 41, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(50, 130, 255, 0.1);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(6, 13, 31, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white);
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); letter-spacing: 2px; }
.nav { display: flex; gap: 4px; }
.nav a {
    padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--text); transition: var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(50, 130, 255, 0.15); }
.header-actions { display: flex; gap: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10001; }
.burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
    background: linear-gradient(160deg, var(--bg-deeper) 0%, #0d1f4d 40%, #0a1840 70%, var(--bg-dark) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.particles { position: absolute; inset: 0; }
.hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(50, 130, 255, 0.15); border: 1px solid rgba(50, 130, 255, 0.3);
    font-size: 14px; font-weight: 600; color: var(--blue-light); margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-main); font-size: clamp(32px, 5vw, 56px);
    font-weight: 900; line-height: 1.2; color: var(--white); margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.hero-desc { font-size: 18px; color: var(--text); margin-bottom: 30px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); }
.stat-suffix { font-family: var(--font-display); font-size: 24px; color: var(--blue-light); }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero-image { text-align: center; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-glow); }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 1; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.animate-fade-down { opacity: 0; transform: translateY(-20px); animation: fadeDown 0.6s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { to { opacity: 1; transform: translateY(0); } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Reveal on scroll */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; position: relative; }
.section-title {
    font-size: clamp(26px, 4vw, 40px); font-weight: 800;
    color: var(--white); text-align: center; margin-bottom: 16px;
}
.section-desc { text-align: center; max-width: 800px; margin: 0 auto 48px; font-size: 17px; color: var(--text); }
.text-center { text-align: center; margin-top: 40px; }

/* ===== ABOUT ===== */
.about { background: var(--bg-dark); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.about-card {
    background: var(--bg-card); border: 1px solid rgba(50, 130, 255, 0.1);
    border-radius: var(--radius-lg); padding: 36px; transition: var(--transition);
}
.about-card:hover { transform: translateY(-8px); border-color: rgba(50, 130, 255, 0.3); box-shadow: var(--shadow-glow); }
.about-icon { font-size: 48px; margin-bottom: 16px; }
.about-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--text); }

/* ===== BONUS ===== */
.bonus {
    background: linear-gradient(160deg, var(--bg-deeper), #0d1a45, var(--bg-dark));
}
.bonus-wrapper {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
    background: var(--bg-card); border: 1px solid rgba(255, 200, 50, 0.2);
    border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
}
.bonus-wrapper::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 100%; height: 200%; background: radial-gradient(circle, rgba(255, 200, 50, 0.05) 0%, transparent 70%);
}
.bonus-image img { border-radius: var(--radius); }
.bonus-amount {
    font-family: var(--font-display); font-size: 56px; font-weight: 700;
    color: var(--gold); margin: 16px 0;
    text-shadow: 0 0 40px rgba(255, 200, 50, 0.3);
}
.bonus-content p { font-size: 16px; margin-bottom: 24px; }
.bonus-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.bonus-feat {
    padding: 10px 16px; background: rgba(50, 130, 255, 0.1); border-radius: 8px;
    font-size: 14px; font-weight: 600; color: var(--white);
}

/* ===== CASINO ===== */
.casino { background: var(--bg-dark); }
.casino-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.casino-card {
    background: var(--bg-card); border: 1px solid rgba(50, 130, 255, 0.1);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.casino-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(50, 130, 255, 0.3); }
.casino-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 0; }
.casino-card-body { padding: 28px; }
.casino-card-body h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.casino-card-body p { font-size: 15px; margin-bottom: 20px; }

/* ===== SPORTS ===== */
.sports {
    background: linear-gradient(160deg, var(--bg-deeper), #0d1a45, var(--bg-dark));
}
.sports-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.sports-content p { font-size: 16px; margin-bottom: 28px; }
.sports-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.sport-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid rgba(50, 130, 255, 0.1); transition: var(--transition);
}
.sport-item:hover { border-color: rgba(50, 130, 255, 0.3); }
.sport-icon { font-size: 36px; flex-shrink: 0; }
.sport-item h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sport-item p { font-size: 14px; color: var(--text); }
.sports-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===== LIVE CASINO ===== */
.live { background: var(--bg-dark); }
.live-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.live-card {
    background: var(--bg-card); border: 1px solid rgba(50, 130, 255, 0.1);
    border-radius: var(--radius); padding: 28px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.live-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 0 30px rgba(220, 50, 50, 0.2); }
.live-badge {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    background: var(--red); color: var(--white); font-size: 12px;
    font-weight: 700; letter-spacing: 1px; margin-bottom: 16px;
    animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.live-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.live-card p { font-size: 14px; margin-bottom: 20px; }

/* ===== AVIATOR ===== */
.aviator {
    background: linear-gradient(160deg, #0a0e2a 0%, #1a0a30 50%, #0a1840 100%);
}
.aviator-wrapper {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
    background: var(--bg-card); border: 1px solid rgba(255, 100, 100, 0.15);
    border-radius: var(--radius-lg); padding: 48px; overflow: hidden;
}
.aviator-content p { font-size: 16px; margin-bottom: 28px; }
.aviator-visual { text-align: center; position: relative; min-height: 250px; }
.aviator-plane {
    font-size: 80px; position: absolute; top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    animation: fly 3s ease-in-out infinite;
}
@keyframes fly {
    0% { transform: translate(-50%, -50%) rotate(-10deg); }
    50% { transform: translate(-30%, -70%) rotate(5deg); }
    100% { transform: translate(-50%, -50%) rotate(-10deg); }
}
.aviator-multiplier {
    font-family: var(--font-display); font-size: 64px; font-weight: 700;
    color: var(--accent); position: absolute; bottom: 20%; left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 0 40px rgba(255, 140, 26, 0.5);
}

/* ===== APP ===== */
.app { background: var(--bg-dark); }
.app-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.app-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-glow); }
.app-content p { font-size: 16px; margin-bottom: 24px; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.app-feat {
    padding: 12px 16px; background: rgba(50, 130, 255, 0.1); border-radius: 8px;
    font-size: 14px; font-weight: 600; color: var(--white);
}

/* ===== REGISTRATION STEPS ===== */
.registration { background: linear-gradient(160deg, var(--bg-deeper), #0d1a45, var(--bg-dark)); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.step-card {
    background: var(--bg-card); border: 1px solid rgba(50, 130, 255, 0.1);
    border-radius: var(--radius-lg); padding: 36px; text-align: center;
    transition: var(--transition); position: relative;
}
.step-card:hover { border-color: rgba(50, 130, 255, 0.3); transform: translateY(-5px); }
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 24px; font-weight: 700;
    color: var(--white); margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step-card p { font-size: 15px; }

/* ===== PAYMENTS ===== */
.payments { background: var(--bg-dark); }
.payments-image { text-align: center; margin-bottom: 40px; }
.payments-image img { margin: 0 auto; max-width: 500px; }
.payments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pay-card {
    background: var(--bg-card); border: 1px solid rgba(50, 130, 255, 0.1);
    border-radius: var(--radius); padding: 24px; text-align: center;
    transition: var(--transition);
}
.pay-card:hover { border-color: var(--blue-bright); transform: translateY(-4px); }
.pay-card h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pay-card p { font-size: 13px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { background: linear-gradient(160deg, var(--bg-deeper), #0d1a45, var(--bg-dark)); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(50, 130, 255, 0.1); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(50, 130, 255, 0.3); }
.faq-question {
    width: 100%; padding: 20px 24px; background: var(--bg-card);
    border: none; color: var(--white); font-size: 16px; font-weight: 600;
    font-family: var(--font-main); cursor: pointer; text-align: right;
    display: flex; justify-content: space-between; align-items: center;
    direction: ltr;
}
.faq-question::after { content: '+'; font-size: 24px; color: var(--blue-bright); transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question::after { content: '−'; color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== CTA ===== */
.cta {
    position: relative; padding: 100px 0; text-align: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; border-radius: 0; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10, 18, 41, 0.7); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deeper); border-top: 1px solid rgba(50, 130, 255, 0.1);
    padding: 60px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-col p { font-size: 14px; color: var(--text-muted); }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 4px 0; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.disclaimer { margin-top: 8px; font-size: 12px; color: #667; }

/* ===== STICKY CTA ===== */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 12px 16px; background: rgba(10, 18, 41, 0.95);
    backdrop-filter: blur(20px); border-top: 1px solid rgba(50, 130, 255, 0.2);
    text-align: center;
}
.sticky-cta .btn { width: 100%; max-width: 400px; justify-content: center; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deeper); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-bright); }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 420px; margin: 0 auto; border-radius: 14px; }
    .about-grid { grid-template-columns: 1fr; }
    .bonus-wrapper { grid-template-columns: 1fr; }
    .bonus-image { text-align: center; }
    .casino-grid { grid-template-columns: 1fr; }
    .sports-wrapper { grid-template-columns: 1fr; }
    .sports-image { order: -1; text-align: center; }
    .live-grid { grid-template-columns: repeat(2, 1fr); }
    .aviator-wrapper { grid-template-columns: 1fr; }
    .app-wrapper { grid-template-columns: 1fr; }
    .app-image { text-align: center; order: -1; }
    .steps-grid { grid-template-columns: 1fr; }
    .payments-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none !important; }
    .header-actions .btn-outline { display: none; }
    .header-actions .btn-primary { padding: 8px 16px; font-size: 13px; }
    .burger { display: flex !important; }
    
    /* Mobile nav overlay */
    .nav.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: #060d1f !important;
        padding: 80px 24px 24px;
        gap: 8px;
        z-index: 9999;
        overflow-y: auto;
    }
    .nav.active a {
        display: block !important;
        padding: 16px 20px;
        font-size: 18px;
        border-radius: 10px;
        color: var(--white);
        background: rgba(50, 130, 255, 0.08);
        border: 1px solid rgba(50, 130, 255, 0.1);
    }
    .nav.active a:hover {
        background: rgba(50, 130, 255, 0.2);
    }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero { min-height: auto; padding: 90px 0 50px; }
    .hero-content { gap: 24px; }
    .hero-image img { max-width: 320px; margin: 0 auto; border-radius: 12px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 14px; }
    .hero-title { font-size: 24px; margin-bottom: 14px; line-height: 1.3; }
    .hero-desc { font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
    .hero-buttons { gap: 10px; margin-bottom: 24px; }
    .hero-stats { 
        display: grid; grid-template-columns: repeat(4, 1fr); 
        gap: 8px; width: 100%; 
        background: rgba(15, 26, 58, 0.8);
        border-radius: 12px; padding: 16px 8px;
        border: 1px solid rgba(50, 130, 255, 0.15);
    }
    .stat { text-align: center; }
    .stat-num { font-size: 22px; display: block; }
    .stat-suffix { font-size: 16px; }
    .stat-label { font-size: 11px; margin-top: 2px; }
    .hero-wave svg { height: 40px; }
    
    .section { padding: 50px 0; }
    .section-title { font-size: 22px; margin-bottom: 12px; }
    .section-desc { font-size: 14px; margin-bottom: 32px; }
    
    .bonus-wrapper { padding: 20px; gap: 24px; }
    .bonus-image img { max-width: 100%; border-radius: 10px; }
    .bonus-amount { font-size: 36px; }
    .bonus-content p { font-size: 14px; }
    .bonus-features { grid-template-columns: 1fr; gap: 8px; }
    .bonus-feat { font-size: 13px; padding: 8px 12px; }
    
    .casino-card img { height: 180px; }
    .casino-card-body { padding: 20px; }
    .casino-card-body h3 { font-size: 18px; }
    .casino-card-body p { font-size: 14px; }
    
    .sport-item { flex-direction: column; align-items: center; text-align: center; padding: 16px; }
    .sport-icon { font-size: 32px; }
    .sport-item h4 { font-size: 16px; }
    .sport-item p { font-size: 13px; }
    
    .live-grid { grid-template-columns: 1fr; }
    .live-card { padding: 20px; }
    .live-card h3 { font-size: 16px; }
    .live-card p { font-size: 13px; }
    
    .aviator-wrapper { padding: 24px; gap: 24px; }
    .aviator-content p { font-size: 14px; }
    .aviator-visual { min-height: 180px; }
    .aviator-plane { font-size: 56px; }
    .aviator-multiplier { font-size: 44px; }
    
    .app-image img { max-width: 320px; margin: 0 auto; }
    .app-content p { font-size: 14px; }
    .app-features { grid-template-columns: 1fr; gap: 8px; }
    .app-feat { font-size: 13px; padding: 10px 12px; }
    
    .steps-grid { gap: 16px; }
    .step-card { padding: 24px; }
    .step-card h3 { font-size: 18px; }
    .step-card p { font-size: 14px; }
    .step-num { width: 48px; height: 48px; font-size: 20px; }
    
    .payments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .payments-image img { max-width: 340px; }
    .pay-card { padding: 16px; }
    .pay-card h4 { font-size: 16px; }
    .pay-card p { font-size: 12px; }
    
    .faq-question { font-size: 14px; padding: 14px 16px; text-align: left; }
    .faq-answer p { padding: 0 16px 16px; font-size: 13px; }
    
    .cta { padding: 60px 0; }
    .cta-content h2 { font-size: 22px; }
    .cta-content p { font-size: 15px; margin-bottom: 24px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col h4 { margin-bottom: 10px; }
    .footer { padding: 40px 0 100px; }
    
    .sticky-cta { display: block; }
    
    .btn-lg { padding: 13px 24px; font-size: 14px; }
    .btn-xl { padding: 15px 28px; font-size: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .header-inner { height: 60px; }
    .logo-icon { width: 34px; height: 34px; font-size: 18px; }
    .logo-text { font-size: 18px; letter-spacing: 1px; }
    .header-actions .btn-primary { padding: 7px 14px; font-size: 12px; }
    
    .hero { padding: 75px 0 40px; }
    .hero-image img { max-width: 280px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .hero-title { font-size: 20px; }
    .hero-desc { font-size: 13px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 14px; }
    .stat-num { font-size: 24px; }
    .stat-label { font-size: 10px; }
    
    .about-card { padding: 20px; }
    .about-icon { font-size: 36px; }
    .about-card h3 { font-size: 17px; }
    .about-card p { font-size: 13px; }
    
    .bonus-wrapper { padding: 16px; }
    .bonus-amount { font-size: 30px; }
    .bonus-content .section-title { font-size: 20px; }
    
    .section-title { font-size: 20px; }
    
    .casino-card img { height: 150px; }
    .casino-card-body { padding: 16px; }
    
    .step-card { padding: 20px; }
    .step-num { width: 42px; height: 42px; font-size: 18px; }
    
    .aviator-wrapper { padding: 18px; }
    .aviator-visual { min-height: 150px; }
    .aviator-plane { font-size: 48px; }
    .aviator-multiplier { font-size: 36px; }
    
    .payments-grid { grid-template-columns: 1fr; }
    .payments-image img { max-width: 280px; }
    
    .cta-content h2 { font-size: 20px; }
    .cta-content p { font-size: 14px; }
    
    .sticky-cta { padding: 10px 14px; }
    .sticky-cta .btn { font-size: 13px; padding: 12px 20px; }
}
