:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --accent-dark: #050505;
            --gold-primary: #D4AF37;
            --gold-secondary: #C5A028;
            --gold-accent: #FFD700;
            --gradient: linear-gradient(135deg, #B8860B, #FFD700);
            --text-primary: #FFFFFF;
            --text-secondary: #E5E5E5;
            --text-muted: #A1A1AA;
            --success: #22C55E;
            --winnings: #4ADE80;
            --border-default: #3F3F46;
            --radius-lg: 16px;
            --radius-md: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background: var(--bg-secondary);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .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: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
        .btn-register { background: var(--gradient); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 0 0 20px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid var(--gold-primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            font-weight: 800; 
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-secondary); border-radius: var(--radius-lg); border-left: 4px solid var(--gold-primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-header { padding: 15px 20px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; margin-bottom: 25px; }
        .game-card { background: var(--bg-secondary); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .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; padding: 15px; background: var(--accent-dark); margin: 15px; border-radius: var(--radius-md); }
        .payment-item { text-align: center; }
        .payment-item i { font-size: 20px; color: var(--gold-primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-muted); }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-secondary); padding: 15px; border-radius: var(--radius-md); margin-bottom: 12px; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold-accent); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background: var(--accent-dark); padding: 20px 15px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-bottom: 1px solid var(--bg-tertiary); }
        .lottery-user { font-weight: 600; color: var(--text-primary); }
        .lottery-game { font-size: 13px; color: var(--text-muted); }
        .lottery-win { color: var(--winnings); font-weight: 700; font-family: 'Roboto Mono', monospace; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-btn { background: var(--bg-tertiary); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid var(--border-default); color: var(--gold-primary); }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-secondary); padding: 20px; border-radius: var(--radius-lg); margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--gold-primary); }
        .review-stars { color: var(--gold-accent); margin-bottom: 10px; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--gold-primary); border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { text-align: center; padding: 30px 20px; background: var(--accent-dark); margin: 20px 0; border-top: 2px solid var(--gold-primary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--gold-primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #111;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--gold-primary); }
        footer { background: var(--bg-secondary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--gold-primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; border-top: 1px solid var(--border-default); padding-top: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 8px; }
        .copyright { font-size: 12px; color: var(--text-muted); padding-top: 20px; }