:root {
            --primary-gold: #D4AF37;
            --bright-gold: #FFD700;
            --jackpot-red: #E63946;
            --premium-black: #0A0A0A;
            --bg-primary: #050505;
            --bg-secondary: #121212;
            --card-surface: #1E1E1E;
            --text-main: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-soft: #2C2C2C;
            --success: #00C853;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--bright-gold); }
        a { text-decoration: none; color: inherit; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--premium-black);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-soft);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-main); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--bright-gold); border: 1px solid var(--bright-gold); }
        .btn-reg { background: linear-gradient(135deg, var(--primary-gold), var(--bright-gold)); color: var(--premium-black); }

        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

        .jackpot-box {
            margin: 20px 16px;
            background: radial-gradient(circle at center, #2c0000, #0a0a0a);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { color: var(--text-main); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: var(--jackpot-red);
            text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
            margin: 10px 0;
        }

        .intro-card { margin: 20px 16px; padding: 20px; background: var(--card-surface); border-radius: 15px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        .section-title { margin: 25px 16px 15px; font-size: 20px; display: flex; align-items: center; gap: 8px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
        .game-card { background: var(--card-surface); border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border-soft); }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; background: var(--bg-secondary); margin: 20px 0; }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; display: block; }

        .guide-section { padding: 16px; }
        .guide-card { background: var(--card-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary-gold); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-list { margin: 20px 16px; background: var(--card-surface); border-radius: 12px; padding: 15px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
        .lottery-item:last-child { border: none; }
        .user-info { display: flex; flex-direction: column; }
        .user-name { font-weight: 600; font-size: 14px; }
        .game-name { font-size: 12px; color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: 700; font-family: 'Roboto Mono', monospace; }

        .provider-wall { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; }
        .provider-tag { flex: 1 1 calc(50% - 8px); background: linear-gradient(45deg, #1e1e1e, #2c2c2c); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--primary-gold); font-weight: 600; font-size: 14px; }

        .review-card { background: var(--card-surface); padding: 15px; border-radius: 12px; margin: 0 16px 15px; border: 1px solid var(--border-soft); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: var(--bright-gold); font-size: 12px; }

        .faq-section { padding: 16px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-soft); }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { padding: 20px 16px; text-align: center; background: #0a0a0a; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-soft); padding: 5px 10px; border-radius: 4px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--premium-black);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-soft);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }

        footer { background: var(--premium-black); padding: 30px 16px 100px; border-top: 2px solid var(--primary-gold); }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; justify-content: center; }
        .footer-contacts a { font-size: 14px; color: var(--primary-gold); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-soft); padding-top: 20px; }

        @keyframes countUp {
            from { transform: translateY(0); }
            to { transform: translateY(-5px); }
        }
        .animate-num { display: inline-block; animation: countUp 0.5s infinite alternate ease-in-out; }