:root {
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --brand-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-card: #262626;
            --text-title: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-highlight: #FFD700;
            --text-inverse: #000000;
            --semantic-success: #00C853;
            --border-default: #333333;
            --border-focused: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-body);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-title); text-align: center; }
        h1 { font-size: 24px; margin-bottom: 10px; }
        h2 { font-size: 20px; margin: 25px 0 15px; color: var(--brand-primary); }
        h3 { font-size: 14px; font-weight: 600; margin-top: 8px; }
        a { text-decoration: none; color: inherit; }
        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-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-gradient); color: var(--text-inverse); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; font-weight: bold; margin-bottom: 5px; }
        .jackpot-value { font-family: var(--font-heading); font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
        .intro-card { margin: 15px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; text-align: center; border-left: 4px solid var(--brand-primary); }
        .intro-card p { font-size: 14px; color: var(--text-body); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-image { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-image img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-provider { font-size: 10px; color: var(--text-muted); display: block; margin-top: 2px; }
        .payment-section { padding: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { font-size: 10px; color: var(--text-muted); }
        .payment-item i { font-size: 24px; color: var(--brand-primary); display: block; margin-bottom: 5px; }
        .guides-section { padding: 15px; }
        .guide-item { background: var(--bg-card); padding: 15px; border-radius: 12px; margin-bottom: 12px; }
        .guide-item h3 { text-align: left; color: var(--brand-primary); margin-bottom: 8px; }
        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; }
        .winner-item { white-space: nowrap; padding: 0 20px; font-size: 12px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
        .winner-amount { color: var(--brand-primary); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-section { padding: 20px 15px; text-align: center; }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .provider-wall span { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: bold; }
        .reviews-section { padding: 15px; overflow-x: auto; display: flex; gap: 15px; }
        .review-card { min-width: 280px; background: var(--bg-card); padding: 15px; border-radius: 12px; border-bottom: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-primary); }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; font-style: italic; color: var(--text-body); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: var(--brand-primary); cursor: pointer; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-body); }
        .security-section { padding: 30px 15px; text-align: center; background: #000; border-top: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: #1A1A1A;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 10px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { padding: 40px 15px 100px; background: var(--bg-secondary); border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { font-size: 18px; color: var(--brand-primary); border: 1px solid var(--brand-primary); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; font-size: 13px; color: var(--text-muted); }
        .footer-bottom { margin-top: 40px; text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid #333; padding-top: 20px; }