:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: #D4AF37;
            --radius: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .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: 400; color: var(--primary); }

        .header-right { 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(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

        main { max-width: 800px; margin: 0 auto; padding: 1rem; }

        .banner { width: 100%; aspect-ratio: 2/1; border-radius: var(--radius); overflow: hidden; cursor: pointer; margin-bottom: 1.5rem; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a, #262626);
            border: 2px solid var(--border-gold);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-weight: 900; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 2rem; font-weight: 900; color: #fff; margin-top: 5px; }

        .intro-card { background: var(--bg-surface); padding: 1.5rem; border-radius: var(--radius); margin-bottom: 1.5rem; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }

        .section-title { font-size: 1.25rem; margin-bottom: 1rem; padding-left: 10px; border-left: 3px solid var(--primary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 2rem; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 0.875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; }

        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 2rem; background: var(--bg-surface); padding: 15px; border-radius: var(--radius); }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 1.25rem; color: var(--primary); }
        .payment-item span { font-size: 10px; text-align: center; }

        .guides-container { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
        .guide-box { background: var(--bg-surface); padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .guide-box h2 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.75rem; }
        .guide-box p { font-size: 0.875rem; color: var(--text-secondary); }

        .lottery-container { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 2rem; overflow: hidden; height: 150px; position: relative; }
        .lottery-track { animation: scrollUp 20s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 0.8rem; }
        .winner-name { color: var(--primary); font-weight: bold; }
        .winner-amount { color: var(--secondary); font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 2rem; }
        .provider-tag { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: 600; font-size: 0.85rem; color: var(--text-secondary); }

        .review-card { background: var(--bg-surface); padding: 1rem; border-radius: var(--radius); margin-bottom: 1rem; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
        .review-avatar { width: 35px; height: 35px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .stars { color: #FFCC00; font-size: 0.75rem; }
        .review-date { font-size: 0.7rem; color: var(--text-muted); float: right; }

        .faq-section { margin-bottom: 2rem; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--primary); font-size: 0.95rem; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.875rem; }

        .security-section { background: var(--bg-elevated); padding: 1.5rem; border-radius: var(--radius); text-align: center; margin-bottom: 2rem; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary); }
        .security-text { font-size: 0.8rem; color: var(--text-muted); }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item:hover { color: var(--primary); }

        footer { background: var(--bg-surface); padding: 2rem 1rem; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { margin-bottom: 1.5rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1.5rem; }
        .footer-links a { color: var(--text-muted); font-size: 0.8rem; text-decoration: none; }
        .footer-copy { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }