:root {
            --p-gold: #D4AF37;
            --b-gold: #FFD700;
            --d-gold: #996515;
            --bg-p: #0B0C10;
            --bg-s: #1F2833;
            --bg-surf: #2D3748;
            --t-p: #FFFFFF;
            --t-s: #C5C6C7;
            --t-a: #FFD700;
            --t-d: #4A5568;
            --s-success: #2ECC71;
            --s-warning: #F1C40F;
            --s-danger: #E74C3C;
            --border: #2D3748;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--t-p);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-s);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--p-gold);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--t-p); }
        header .actions { display: flex; gap: 10px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .btn-login { background-color: transparent; color: var(--p-gold); border: 1px solid var(--p-gold); }
        header .btn-reg { background: linear-gradient(135deg, var(--p-gold), var(--d-gold)); color: var(--bg-p); }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner-box { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: radial-gradient(circle, var(--bg-surf), var(--bg-p));
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--p-gold);
        }
        .jackpot-title { color: var(--b-gold); font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #FFFFFF; text-shadow: 0 0 10px var(--p-gold); }
        .intro-card { background: var(--bg-s); margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--p-gold); }
        .intro-card h1 { font-size: 24px; color: var(--p-gold); margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: var(--t-s); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; color: var(--b-gold); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surf); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid transparent; transition: 0.3s; }
        .game-card:hover { border-color: var(--p-gold); transform: translateY(-3px); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--t-p); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-s); margin: 15px; border-radius: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--t-s); }
        .payment-item i { font-size: 24px; color: var(--p-gold); }
        .guide-container { padding: 0 15px; }
        .guide-item { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h2 { font-size: 18px; color: var(--p-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--t-s); }
        .lottery-box { background: var(--bg-s); margin: 15px; border-radius: 15px; padding: 15px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
        .lottery-item span:nth-child(2) { color: var(--s-success); font-weight: bold; }
        .providers-box { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(45deg, var(--bg-surf), var(--bg-s)); padding: 10px; text-align: center; border-radius: 8px; border: 1px solid var(--d-gold); font-weight: 600; color: var(--p-gold); }
        .comment-grid { padding: 0 15px; }
        .comment-card { background: var(--bg-surf); padding: 15px; border-radius: 15px; margin-bottom: 15px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 30px; color: var(--p-gold); }
        .comment-stars { color: var(--s-warning); margin-bottom: 8px; }
        .comment-text { font-size: 13px; color: var(--t-s); font-style: italic; }
        .comment-date { font-size: 11px; color: var(--t-d); margin-top: 8px; text-align: right; }
        .faq-container { padding: 0 15px; }
        .faq-item { background: var(--bg-s); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; color: var(--p-gold); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-a { padding: 0 15px 15px; font-size: 14px; color: var(--t-s); }
        .security-section { background: #000; margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed var(--t-d); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--t-s); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-s);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--p-gold);
            z-index: 1000;
        }
        .navigator a { text-decoration: none; color: var(--t-s); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .navigator a i { font-size: 20px; }
        footer { background: #050505; padding: 30px 15px 100px; text-align: center; color: var(--t-s); }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-row a { color: var(--p-gold); text-decoration: none; font-size: 14px; }
        footer .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        footer .link-grid a { color: var(--t-d); text-decoration: none; font-size: 13px; }
        footer .copy { font-size: 12px; color: var(--t-d); border-top: 1px solid var(--bg-surf); padding-top: 15px; }