:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #C5A021;
            --glow: rgba(212, 175, 55, 0.5);
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --border-default: #2C2C2C;
            --success: #27AE60;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px var(--glow);
        }
        .jackpot-label { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-size: 36px; 
            font-weight: 900; 
            color: var(--secondary); 
            text-shadow: 0 0 10px var(--glow);
            font-family: 'JetBrains 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-size: 24px; margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { margin: 20px 0 15px; font-size: 20px; border-bottom: 1px solid var(--border-default); padding-bottom: 5px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-elevated); border-radius: 8px; overflow: hidden; transition: transform 0.2s; }
        .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-primary); }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .winners-list { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: var(--secondary); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(90deg, #1e1e1e, #2c2c2c); padding: 12px; border-radius: 6px; text-align: center; font-weight: 600; font-size: 14px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .comment-info h3 { font-size: 14px; color: var(--text-primary); margin: 0; }
        .stars { color: #f1c40f; font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-box { background: #0a0a0a; border: 1px dashed var(--border-default); padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-box p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--text-secondary); }
        footer { background: var(--bg-surface); padding: 30px 15px 80px; border-top: 1px solid var(--border-default); }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-socials a { font-size: 14px; color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }