:root {
            --ginto-brand: #D4AF37;
            --ginto-liwanag: #F9E076;
            --ginto-dilim: #996515;
            --pangunahing-aksyon: #FFD700;
            --bg-pangunahin: #0A0A0A;
            --bg-sekundarya: #121212;
            --bg-card: #1E1E1E;
            --overlay: rgba(0, 0, 0, 0.85);
            --txt-pangunahin: #FFFFFF;
            --txt-sekundarya: #E0E0E0;
            --txt-muted: #A0A0A0;
            --txt-diin: #D4AF37;
            --txt-baligtad: #000000;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F1C40F;
            --info: #3498DB;
            --panalo: #FFD700;
            --border-banayad: #2C2C2C;
            --border-aktibo: #D4AF37;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Inter', sans-serif; background-color: var(--bg-pangunahin); color: var(--txt-pangunahin); line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--ginto-brand); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            position: sticky; top: 0; z-index: 1000; height: 60px;
            background: var(--bg-sekundarya); border-bottom: 1px solid var(--border-banayad);
            display: flex; align-items: center; justify-content: space-between; padding: 0 15px;
        }
        header .logo-box { display: flex; align-items: center; gap: 10px; }
        header .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-box strong { font-size: 16px; font-weight: 500; color: var(--txt-pangunahin); }
        header .auth-btns { display: flex; gap: 10px; }
        header button { padding: 6px 15px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; }
        header .btn-login { background: transparent; color: var(--ginto-brand); border: 1px solid var(--ginto-brand); }
        header .btn-register { background: linear-gradient(135deg, var(--ginto-brand), var(--ginto-dilim)); color: var(--txt-baligtad); }

        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }

        .banner-box { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: radial-gradient(circle at center, #2c1f01, #0a0a0a);
            padding: 20px; text-align: center; border-bottom: 2px solid var(--border-banayad);
        }
        .jackpot-title { font-size: 14px; color: var(--ginto-liwanag); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 800; color: var(--panalo); text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }

        .intro-card { padding: 25px 15px; background: var(--bg-card); margin: 15px; border-radius: 15px; border-left: 4px solid var(--ginto-brand); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; }
        .intro-card p { font-size: 16px; color: var(--txt-sekundarya); }

        .section-header { padding: 15px; display: flex; justify-content: space-between; align-items: center; }
        .section-header h2 { font-size: 20px; border-left: 4px solid var(--ginto-brand); padding-left: 10px; }

        .game-grid { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 10px; }
        .game-card { width: calc(50% - 5px); background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-banayad); position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform 0.5s; }
        .game-card:active img { transform: scale(0.95); }
        .game-card h3 { font-size: 14px; padding: 10px; color: var(--txt-pangunahin); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { background: var(--bg-sekundarya); padding: 20px 10px; margin: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--ginto-brand); }
        .payment-item span { font-size: 10px; color: var(--txt-muted); }

        .guides-grid { padding: 10px; }
        .guide-card { background: var(--bg-sekundarya); padding: 15px; border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-banayad); }
        .guide-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--ginto-liwanag); }
        .guide-card p { font-size: 14px; color: var(--txt-muted); }

        .lottery-box { margin: 15px; background: #151515; border-radius: 12px; padding: 15px; height: 250px; overflow-y: auto; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #222; font-size: 13px; }
        .lottery-user { color: var(--ginto-brand); font-weight: 600; }
        .lottery-amount { color: var(--success); font-weight: bold; }

        .provider-wall { display: flex; flex-wrap: wrap; gap: 8px; padding: 15px; }
        .provider-item { flex: 1 1 45%; background: linear-gradient(45deg, #1e1e1e, #2c2c2c); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--ginto-brand); font-size: 14px; }

        .comment-grid { padding: 10px; }
        .comment-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-banayad); }
        .comment-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-top i { font-size: 30px; color: var(--txt-muted); }
        .comment-user { font-weight: 700; color: var(--ginto-liwanag); }
        .comment-stars { color: var(--pangunahing-aksyon); font-size: 12px; }
        .comment-content { font-size: 14px; color: var(--txt-sekundarya); font-style: italic; margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--txt-muted); }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-sekundarya); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 700; color: var(--ginto-brand); font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 14px; color: var(--txt-sekundarya); }

        .security-section { padding: 20px; text-align: center; background: #000; border-top: 1px solid var(--border-banayad); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--txt-muted); }
        .security-text { font-size: 12px; color: var(--txt-muted); line-height: 1.4; }

        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: #121212; border-top: 1px solid var(--border-banayad);
            display: flex; justify-content: space-around; align-items: center; z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--txt-muted); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item.active { color: var(--ginto-brand); }

        footer { background: var(--bg-sekundarya); padding: 30px 15px 100px 15px; border-top: 1px solid var(--border-banayad); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: var(--ginto-brand); display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--txt-muted); padding: 5px 0; }
        .footer-copy { font-size: 12px; color: var(--txt-muted); border-top: 1px solid var(--border-banayad); padding-top: 20px; }