:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #B8860B;
            --accent: #E63946;
            --bg-main: #0B0E11;
            --bg-surface: #15191C;
            --bg-elevated: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --border-default: #2B2F36;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
        header {
            background-color: var(--bg-surface);
            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);
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .hero-banner { width: 100%; cursor: pointer; display: block; line-height: 0; }
        .hero-banner img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: var(--radius);
            border: 1px solid var(--secondary);
        }
        .jackpot-label { color: var(--primary); font-weight: bold; font-size: 14px; margin-bottom: 5px; }
        #jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 32px; color: var(--primary); font-weight: 900; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; }
        .article-section { padding: 15px; background: var(--bg-surface); margin: 15px 0; }
        .article-item { display: flex; gap: 15px; margin-bottom: 15px; text-decoration: none; color: inherit; }
        .article-item img { width: 100px; height: 60px; object-fit: cover; border-radius: 4px; }
        .article-content h3 { font-size: 14px; color: var(--primary); margin-bottom: 4px; }
        .article-content p { font-size: 12px; color: var(--text-muted); height: 36px; overflow: hidden; }
        .payment-section { padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; font-size: 12px; }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; display: block; }
        .winning-records { padding: 20px; background: var(--bg-surface); margin: 15px; border-radius: var(--radius); }
        .winning-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winning-row span:nth-child(2) { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; border-left: 4px solid var(--primary); }
        .review-section { padding: 15px; overflow-x: auto; display: flex; gap: 15px; }
        .review-card { min-width: 280px; background: var(--bg-surface); padding: 15px; border-radius: var(--radius); border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--primary); }
        .stars { color: #f0b90b; font-size: 12px; margin-bottom: 8px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 20px; }
        .faq-item { margin-bottom: 20px; background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { padding: 25px 20px; text-align: center; background: var(--bg-elevated); margin-top: 20px; }
        .security-icons { font-size: 30px; color: var(--primary); margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; }
        .security-section p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .security-section a { color: var(--primary); text-decoration: none; font-weight: bold; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 24px; }
        footer { padding: 30px 20px 80px; background: #000; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }