:root {
            --brand-gold: #D4AF37;
            --brand-gold-light: #F9E076;
            --brand-gold-dark: #996515;
            --brand-red: #E63946;
            --bg-primary: #0B0B0B;
            --bg-secondary: #161616;
            --bg-tertiary: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muta: #666666;
            --border-matingkad: #333333;
            --border-banayad: #222222;
            --success: #28A745;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            background-color: var(--bg-secondary);
            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-matingkad);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-gold); }
        .btn-register { background: var(--brand-gold); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-tertiary), #000);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--brand-gold-dark);
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--brand-gold-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        #jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: var(--brand-gold); font-weight: 800; }
        .intro-card {
            background-color: var(--bg-secondary);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--brand-gold);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--brand-gold); }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .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(--brand-red); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background-color: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-banayad);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .pl-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .pl-item i { font-size: 20px; color: var(--brand-gold); margin-bottom: 5px; display: block; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--bg-secondary); padding: 20px; border-radius: 12px; border: 1px solid var(--border-banayad); }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--brand-gold-light); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-container {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-banayad);
            font-size: 13px;
        }
        .lottery-item span:nth-child(2) { color: var(--brand-gold); font-weight: bold; }
        .lottery-item span:nth-child(3) { color: var(--success); }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item {
            background: linear-gradient(45deg, var(--bg-tertiary), var(--bg-secondary));
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--brand-gold-light);
            border: 1px solid var(--border-matingkad);
        }
        .comment-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: var(--bg-tertiary); padding: 20px; border-radius: 12px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--brand-gold); }
        .comment-stars { color: #FFC107; font-size: 12px; margin-bottom: 8px; }
        .comment-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muta); text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-secondary); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border-banayad); color: var(--brand-gold-light); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #000;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--brand-red);
            text-align: center;
            margin-bottom: 25px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-red); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-matingkad);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item:nth-child(3) i { color: var(--brand-gold); font-size: 26px; }
        footer {
            background: var(--bg-secondary);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-matingkad);
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--brand-gold); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muta); border-top: 1px solid var(--border-banayad); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-license { grid-template-columns: repeat(8, 1fr); }
            .comment-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
            .guides-container { grid-template-columns: 1fr 1fr; }
        }