:root {
            --bg-pangunahin: #0a0b0c;
            --bg-sekundarya: #16181d;
            --bg-ibabaw: #1e2128;
            --ginto-primary: #ffc107;
            --ginto-dark: #b38600;
            --teksto-pangunahin: #ffffff;
            --teksto-sekundarya: #b0b3b8;
            --accent-pula: #ff3b30;
            --font-main: 'Montserrat', sans-serif;
            --font-sec: 'Inter', 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; padding-bottom: 70px; }
        header { background: var(--bg-sekundarya); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d3139; display: flex; align-items: center; justify-content: space-between; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--ginto-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; 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(--ginto-primary); }
        .btn-register { background: var(--ginto-primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: linear-gradient(135deg, #1e2128 0%, #0a0b0c 100%); border: 2px solid var(--ginto-primary); border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .jackpot-box h2 { font-size: 18px; color: var(--teksto-sekundarya); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--ginto-primary); font-family: 'Roboto Mono', monospace; }
        .intro-card { background: var(--bg-ibabaw); padding: 25px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid var(--ginto-primary); }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--ginto-primary); }
        .intro-card p { color: var(--teksto-sekundarya); font-size: 14px; }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--ginto-primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-ibabaw); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; border: 1px solid #2d3139; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--teksto-pangunahin); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-sekundarya); padding: 20px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--teksto-sekundarya); }
        .payment-item i { font-size: 24px; color: var(--ginto-primary); display: block; margin-bottom: 5px; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-ibabaw); padding: 20px; border-radius: 12px; }
        .guide-item h3 { color: var(--ginto-primary); margin-bottom: 10px; font-size: 18px; }
        .lottery-list { background: var(--bg-sekundarya); border-radius: 12px; padding: 15px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d3139; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--ginto-primary); font-weight: 600; }
        .lottery-win { color: #00c853; font-weight: bold; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1; min-width: calc(50% - 10px); background: #2d3139; padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; color: var(--ginto-light); }
        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-ibabaw); padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #3e4451; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .review-stars { color: #ffc107; font-size: 12px; }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: var(--bg-ibabaw); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid #2d3139; color: var(--ginto-primary); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--teksto-sekundarya); background: var(--bg-sekundarya); }
        .security-section { background: #121417; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed #3e4451; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--ginto-primary); }
        .security-text { font-size: 12px; color: var(--teksto-sekundarya); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(22, 24, 29, 0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d3139; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--teksto-sekundarya); display: flex; flex-direction: column; align-items: center; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--ginto-primary); }
        footer { background: var(--bg-sekundarya); padding: 30px 15px 100px; border-top: 1px solid #2d3139; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: var(--teksto-pangunahin); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--teksto-sekundarya); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--teksto-tersyarya); padding-top: 20px; border-top: 1px solid #2d3139; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .review-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
            .guides-container { grid-template-columns: repeat(2, 1fr); }
        }