:root {
            --primary: #FFD700;
            --secondary: #C5A021;
            --accent: #1E90FF;
            --bg-main: #0F0F0F;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --text-main: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --text-inv: #000000;
            --success: #28A745;
            --danger: #DC3545;
            --border: #333333;
            --font-main: 'Montserrat', 'Inter', sans-serif;
            --font-head: 'Poppins', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
        .btn-reg { background: var(--primary); color: var(--text-inv); }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1A1A1A 0%, #262626 100%);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--text-main); margin-top: 10px; font-family: 'Roboto Mono', monospace; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-family: var(--font-head); font-size: 24px; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-title { font-family: var(--font-head); font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border);
        }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; position: relative; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .pay-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border);
        }
        .pay-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; display: block; }
        .guide-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-card h3 { color: var(--accent); margin-bottom: 8px; font-size: 16px; }
        .lottery-list { background: var(--bg-secondary); border-radius: 12px; padding: 15px; margin-bottom: 30px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }
        .lottery-item:last-child { border: none; }
        .winner-user { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .provider-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .provider-item {
            flex: 1 1 calc(50% - 10px);
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
        }
        .reviews { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-stars { color: var(--primary); font-size: 12px; }
        .faq-item { margin-bottom: 12px; background: var(--bg-secondary); border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
        .faq-a { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-sec { background: #111; padding: 20px; border-radius: 12px; text-align: center; border: 1px dotted var(--text-muted); margin-bottom: 30px; }
        .security-sec i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-secondary); padding: 30px 15px 80px; border-top: 1px solid var(--border); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-main); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 8px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border); padding-top: 20px; }