:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #C5A028;
            --accent-yellow: #FFD700;
            --deep-gold: #996515;
            --main-bg: #0A0B0C;
            --surface-dark: #151719;
            --elevated-surface: #1F2226;
            --primary-text: #FFFFFF;
            --secondary-text: #B0B3B8;
            --muted-text: #65676B;
            --success: #00C853;
            --win-color: #00E676;
            --subtle-border: #2D3139;
            --divider: #1C1E21;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --font-display: 'Bebas Neue', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: var(--font-secondary);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-primary); font-weight: 700; color: var(--primary-gold); }
        h1 { font-size: 24px; text-align: center; margin: 20px 15px; }
        h2 { font-size: 22px; margin: 25px 15px 15px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        h3 { font-size: 16px; color: var(--primary-text); }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--surface-dark);
            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(--subtle-border);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); font-family: var(--font-display); letter-spacing: 1px; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: var(--primary-text); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--main-bg); }
        .hero-banner { width: 100%; display: block; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; }
        .jackpot-container {
            background: linear-gradient(145deg, var(--surface-dark), var(--main-bg));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--deep-gold);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
        }
        .jackpot-label { font-family: var(--font-display); font-size: 18px; color: var(--accent-yellow); margin-bottom: 5px; letter-spacing: 2px; }
        #jackpot-amount { font-size: 36px; font-weight: 800; color: var(--primary-gold); font-family: var(--font-primary); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-section { padding: 20px 15px; text-align: center; background: var(--surface-dark); border-radius: 15px; margin: 15px; }
        .intro-section p { color: var(--secondary-text); font-size: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--elevated-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--subtle-border); transition: 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--surface-dark); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--divider); }
        .article-img { width: 100%; height: 180px; object-fit: cover; }
        .article-body { padding: 15px; }
        .article-body h3 { margin-bottom: 8px; line-height: 1.3; color: var(--primary-gold); }
        .article-body p { font-size: 14px; color: var(--secondary-text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-section { padding: 20px 15px; background: var(--surface-dark); margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .payment-item span { font-size: 10px; color: var(--muted-text); text-transform: uppercase; }
        .win-records { margin: 15px; background: var(--elevated-surface); border-radius: 12px; padding: 10px; border: 1px solid var(--divider); height: 300px; overflow-y: auto; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid var(--divider); }
        .win-user { font-weight: 600; color: var(--secondary-text); }
        .win-amount { color: var(--win-color); font-weight: 700; }
        .win-game { font-size: 12px; color: var(--muted-text); }
        .providers-section { padding: 20px 15px; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-box { background: var(--surface-dark); height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--subtle-border); font-weight: 700; color: var(--primary-gold); font-size: 14px; }
        .review-section { padding: 15px; }
        .review-card { background: var(--elevated-surface); padding: 20px; border-radius: 15px; margin-bottom: 15px; border: 1px solid var(--divider); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--surface-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); }
        .stars { color: var(--accent-yellow); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--secondary-text); font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--surface-dark); border-radius: 10px; padding: 15px; border-bottom: 2px solid var(--deep-gold); }
        .faq-item h3 { margin-bottom: 10px; font-size: 16px; color: var(--primary-gold); }
        .faq-item p { font-size: 14px; color: var(--secondary-text); }
        .security-section { padding: 20px 15px; background: var(--surface-dark); text-align: center; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--primary-gold); font-size: 30px; }
        .security-text { font-size: 13px; color: var(--muted-text); max-width: 300px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--surface-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--subtle-border);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--secondary-text); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: var(--main-bg); padding: 30px 15px 100px; border-top: 1px solid var(--divider); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--muted-text); font-size: 13px; }
        .footer-bottom { text-align: center; color: var(--muted-text); font-size: 12px; border-top: 1px solid var(--divider); padding-top: 20px; }