:root {
            --bg-pangunahin: #0D0D0D;
            --bg-pangalawa: #1A1A1A;
            --bg-ibabaw: #242424;
            --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
            --primary-gold: #D4AF37;
            --secondary-gold: #F9E076;
            --premium-red: #8B0000;
            --vibrant-gold: #FFD700;
            --text-pangunahin: #FFFFFF;
            --text-pangalawa: #B3B3B3;
            --text-highlight: #FFD700;
            --border-default: #333333;
            --border-accent: #D4AF37;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-pangunahin);
            color: var(--text-pangunahin);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background: 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: 5px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--secondary-gold); font-family: 'Montserrat', sans-serif; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-pangunahin); border: 1px solid var(--border-accent); }
        .btn-register { background: var(--primary-gold); color: #000; }

        main { max-width: 800px; margin: 0 auto; padding: 15px; }

        .banner-container { width: 100%; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 20px; cursor: pointer; aspect-ratio: 2/1; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: var(--gradient-dark);
            border: 2px solid var(--border-accent);
            padding: 20px;
            text-align: center;
            border-radius: var(--radius-lg);
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--text-pangalawa); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-size: 36px; 
            font-weight: 900; 
            color: var(--vibrant-gold); 
            font-family: 'Montserrat', sans-serif;
            margin: 10px 0;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card { background: var(--bg-ibabaw); padding: 25px; border-radius: var(--radius-md); margin-bottom: 25px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; color: var(--secondary-gold); margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
        .intro-card p { color: var(--text-pangalawa); font-size: 15px; }

        .section-title { font-size: 20px; margin: 25px 0 15px; color: var(--primary-gold); display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-pangalawa); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--border-accent); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; overflow: hidden; background: #000; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-pangunahin); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-ibabaw); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 24px; color: var(--secondary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-pangalawa); }

        .guide-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-pangalawa); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-default); }
        .guide-card h2 { font-size: 18px; color: var(--secondary-gold); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-pangalawa); text-align: justify; }

        .lottery-list { background: var(--bg-ibabaw); border-radius: var(--radius-md); padding: 10px; margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: var(--secondary-gold); font-weight: 600; }
        .win-amount { color: var(--text-highlight); font-weight: 700; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-item { background: linear-gradient(45deg, var(--premium-red), #500); padding: 15px; border-radius: 10px; text-align: center; font-weight: bold; color: white; letter-spacing: 1px; }

        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .comment-card { background: var(--bg-pangalawa); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-default); }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 30px; color: var(--primary-gold); }
        .rating { color: var(--vibrant-gold); font-size: 12px; margin-bottom: 10px; }

        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-ibabaw); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: var(--secondary-gold); font-size: 15px; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-pangalawa); font-size: 14px; }

        .security-section { text-align: center; background: var(--bg-ibabaw); padding: 30px 20px; border-radius: var(--radius-md); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 30px; color: var(--primary-gold); }
        .age-limit { display: inline-block; border: 2px solid var(--premium-red); color: var(--premium-red); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin-bottom: 15px; }

        .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;
            padding-bottom: 5px;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-pangalawa); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }

        footer {
            background: #000;
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-pangalawa); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-pangalawa); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: var(--text-pangalawa); border-top: 1px solid var(--bg-ibabaw); padding-top: 20px; }

        @media (max-width: 480px) {
            .jackpot-amount { font-size: 28px; }
            .section-title { font-size: 18px; }
        }