:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-red: #E31837;
            --accent-gold: #FFD700;
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-surface-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-muted: #6B6B6B;
            --border-default: #2C2C2C;
            --border-active: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-display: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: #000000;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); font-family: var(--font-display); }
        header .actions { display: flex; gap: 10px; }
        header .actions button {
            padding: 6px 14px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold) !important; }
        .btn-register { background: var(--primary-gold); color: #000; }
        main { max-width: 600px; margin: 0 auto; padding-bottom: 20px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a, #000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-gold); font-family: var(--font-display); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin-top: 5px; text-shadow: 0 0 10px var(--primary-gold); }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; font-family: var(--font-display); border-left: 4px solid var(--primary-gold); margin-left: 15px; margin-top: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; 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 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 16px; color: var(--primary-gold-light); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); text-align: justify; }
        .lottery-ticker { background: var(--bg-surface-elevated); margin: 15px; border-radius: 10px; height: 120px; overflow: hidden; position: relative; border: 1px solid var(--border-default); }
        .ticker-track { animation: scrollUp 20s linear infinite; }
        .ticker-item { padding: 8px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 12px; }
        .ticker-user { color: var(--primary-gold-light); }
        .ticker-amount { color: var(--accent-gold); font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: linear-gradient(45deg, #222, #111); padding: 12px; text-align: center; border-radius: 6px; font-weight: bold; font-size: 14px; color: var(--primary-gold); border: 1px solid var(--border-default); }
        .comment-section { padding: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--primary-gold); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--text-muted); }
        .comment-info h3 { font-size: 14px; margin: 0; }
        .comment-stars { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 10px; }
        .faq-item h2 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { padding: 20px; background: #000; text-align: center; margin-top: 20px; border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: #000;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 18px; }
        footer {
            background: #000;
            padding: 30px 20px 80px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        footer .contact-row a { color: var(--primary-gold); font-size: 13px; text-decoration: underline; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        footer .links-grid a { font-size: 13px; color: var(--text-secondary); }
        footer .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }