:root {
            --pangunahing-bg: #0A0B10;
            --sekondaryong-bg: #161B22;
            --surface-bg: #1F2937;
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-red: #E63946;
            --luxury-black: #050505;
            --text-main: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --brand-gold: #FFD700;
            --border-default: #30363D;
            --border-brand: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--pangunahing-bg);
            color: var(--text-main);
            font-family: 'Inter', 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--luxury-black);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .logo-container { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--brand-gold); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--brand-gold); color: var(--brand-gold); }
        .btn-register { background: var(--brand-gold); color: var(--luxury-black); }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(145deg, #161B22, #050505);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-brand);
            text-align: center;
        }
        .jackpot-title { color: var(--secondary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-size: 36px; 
            font-weight: 800; 
            color: var(--text-main); 
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            margin: 10px 0;
        }
        .intro-card { margin: 20px 15px; padding: 25px; background: var(--sekondaryong-bg); border-radius: 15px; border-left: 4px solid var(--brand-gold); }
        .intro-card h1 { font-size: 24px; color: var(--brand-gold); margin-bottom: 15px; font-family: 'Playfair Display', serif; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-size: 20px; border-left: 3px solid var(--accent-red); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface-bg); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: 0.3s; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-main); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; margin-bottom: 25px; }
        .payment-item { background: var(--sekondaryong-bg); padding: 15px 5px; border-radius: 10px; text-align: center; font-size: 12px; }
        .payment-item i { display: block; font-size: 24px; color: var(--brand-gold); margin-bottom: 8px; }
        .guide-section { padding: 0 15px; margin-top: 30px; }
        .guide-item { background: var(--surface-bg); padding: 20px; border-radius: 15px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .guide-item h2 { font-size: 18px; color: var(--secondary-gold); margin-bottom: 10px; }
        .lottery-container { margin: 20px 15px; background: var(--sekondaryong-bg); border-radius: 15px; overflow: hidden; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-user { color: var(--brand-gold); }
        .lottery-win { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(90deg, #1F2937, #111827); padding: 15px; border-radius: 8px; text-align: center; color: var(--text-secondary); font-weight: 600; border: 1px solid var(--border-default); }
        .review-grid { padding: 0 15px; margin-top: 20px; }
        .review-card { background: var(--surface-bg); padding: 20px; border-radius: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .stars { color: var(--secondary-gold); font-size: 12px; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { margin: 20px 15px; padding: 20px; background: #050505; border: 1px dashed var(--border-brand); border-radius: 15px; text-align: center; }
        .security-section i { font-size: 40px; color: var(--brand-gold); margin-bottom: 15px; }
        .navigator { 
            position: fixed; bottom: 0; left: 0; width: 100%; background: var(--luxury-black); 
            border-top: 1px solid var(--border-default); display: flex; justify-content: space-around; 
            padding: 10px 0; z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer { background: var(--luxury-black); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .animate-jackpot { animation: countUp 1s ease-out; }