:root {
            --pangunahing-ginto: #FFD700;
            --pangalawang-ginto: #D4AF37;
            --patingkad-na-ginto: #F9A602;
            --aksenteng-pula: #E63946;
            --bg-pangunahin: #0A0A0A;
            --bg-pangalawa: #121212;
            --bg-itaas: #1E1E1E;
            --bg-card: #171717;
            --teksto-pangunahin: #FFFFFF;
            --teksto-pangalawa: #E0E0E0;
            --teksto-muted: #A0A0A0;
            --tagumpay: #00C851;
            --border-default: #2C2C2C;
            --font-main: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --font-display: 'Archivo Black', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-pangunahin);
            color: var(--teksto-pangunahin);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-pangalawa);
            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-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; font-family: var(--font-display); color: var(--pangunahing-ginto); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--teksto-pangunahin); border: 1px solid var(--pangunahing-ginto); }
        .btn-register { background: var(--pangunahing-ginto); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-itaas) 0%, var(--bg-pangunahin) 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .jackpot-title { font-size: 14px; color: var(--pangunahing-ginto); font-weight: 700; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-display); font-size: 32px; color: var(--pangunahing-ginto); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px 15px; background: var(--bg-card); margin: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 20px; color: var(--pangunahing-ginto); margin-bottom: 10px; font-family: var(--font-display); }
        .intro-card p { font-size: 14px; color: var(--teksto-pangalawa); }
        .section-container { padding: 10px 15px; }
        .section-title { font-size: 18px; font-weight: 700; margin: 15px 0; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--pangunahing-ginto); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--teksto-pangunahin); }
        .game-provider { font-size: 12px; color: var(--teksto-muted); margin-top: 4px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-card); border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--pangunahing-ginto); }
        .payment-item span { font-size: 10px; color: var(--teksto-muted); }
        .guide-section { background: var(--bg-itaas); padding: 20px 15px; border-radius: 12px; margin: 15px; }
        .guide-item { margin-bottom: 20px; }
        .guide-item h2 { font-size: 18px; color: var(--pangunahing-ginto); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--teksto-pangalawa); text-align: justify; }
        .marquee-container { background: #111; padding: 10px 0; overflow: hidden; border-y: 1px solid var(--border-default); }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-record { white-space: nowrap; padding: 0 20px; font-size: 13px; display: flex; gap: 8px; color: var(--teksto-pangalawa); }
        .win-record span { color: var(--tagumpay); font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px; opacity: 0.7; }
        .provider-name { font-weight: 800; font-size: 14px; color: var(--teksto-muted); }
        .review-card { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-itaas); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--pangunahing-ginto); }
        .review-user-info h3 { font-size: 14px; margin: 0; }
        .stars { color: var(--pangunahing-ginto); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--teksto-pangalawa); line-height: 1.4; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-card); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--pangunahing-ginto); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--teksto-pangalawa); }
        .responsible-gaming { padding: 20px 15px; text-align: center; background: var(--bg-itaas); margin-top: 20px; }
        .responsible-gaming p { font-size: 12px; color: var(--teksto-muted); margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; font-size: 20px; color: var(--pangunahing-ginto); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-pangalawa); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--teksto-muted); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--pangunahing-ginto); }
        footer { background: var(--bg-pangunahin); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: var(--pangunahing-ginto); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--teksto-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--teksto-muted); border-top: 1px solid var(--border-default); padding-top: 15px; }