:root {
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --highlight: #FFF8E1;
            --bg-default: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --border-default: #2C2C2C;
            --win-color: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary); }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .actions { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(145deg, #1e1e1e, #121212);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-box .title { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; }
        .jackpot-box .amount { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: var(--win-color); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { margin: 20px 15px 10px; font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 10px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .pl-item { background: var(--bg-surface); border-radius: 8px; padding: 15px 5px; text-align: center; border: 1px solid var(--border-default); }
        .pl-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .pl-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guide-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--secondary); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-list { margin: 15px; background: var(--bg-surface); border-radius: 15px; overflow: hidden; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { font-size: 13px; font-weight: 600; }
        .lottery-game { font-size: 12px; color: var(--text-secondary); }
        .lottery-win { color: var(--win-color); font-weight: 700; font-size: 14px; }
        .lottery-time { font-size: 11px; color: var(--text-muted); }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%); color: #000; padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; }
        .comment-grid { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .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: 8px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-user { font-size: 14px; font-weight: 600; }
        .comment-stars { color: var(--accent); font-size: 12px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: #666; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--highlight); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 15px; padding: 20px; background: #1a1a1a; border-radius: 15px; text-align: center; border: 1px dashed var(--primary); }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin: 15px 0; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-contact a { background: var(--bg-elevated); padding: 10px; border-radius: 8px; font-size: 13px; border: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 5px; }
        .footer-copy { font-size: 11px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }