:root {
            --primary: #FFD700;
            --primary-hover: #F0C800;
            --secondary: #1A73E8;
            --accent: #00E676;
            --bg-main: #0D1117;
            --bg-surface: #161B22;
            --bg-elevated: #21262D;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --text-disabled: #484F58;
            --text-inverse: #0D1117;
            --text-link: #58A6FF;
            --success: #238636;
            --warning: #D29922;
            --error: #F85149;
            --border-subtle: #30363D;
            --border-default: #484F58;
            --border-active: #FFD700;
            --font-heading: 'Montserrat', 'Inter', system-ui, sans-serif;
            --font-body: 'Inter', 'Roboto', system-ui, sans-serif;
            --font-numeric: 'JetBrains Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            border: none;
            border-radius: 6px;
            padding: 8px 16px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            transition: opacity 0.2s;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #161B22 0%, #21262D 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 14px; margin-bottom: 8px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; color: var(--primary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-family: var(--font-heading); font-size: 20px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); display: flex; flex-direction: column; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-licence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .payment-item span { font-size: 10px; text-align: center; }
        .guide-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--secondary); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-ticker { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 15px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
        .lottery-track { display: inline-block; animation: scroll 40s linear infinite; }
        .lottery-item { display: inline-block; padding: 0 20px; font-size: 13px; border-right: 1px solid var(--border-subtle); }
        .lottery-item span { color: var(--accent); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-tag { background: var(--bg-elevated); color: var(--text-primary); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; font-size: 14px; }
        .reviews { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-info h3 { font-size: 16px; font-weight: 600; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary); font-size: 15px; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .safety { padding: 20px; margin: 15px; background: #0a0e14; border-radius: 12px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .safety-icons i { font-size: 30px; color: var(--success); }
        .safety-text { font-size: 12px; color: var(--text-secondary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 65px; display: flex; border-top: 1px solid var(--border-subtle); z-index: 1000; }
        .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: var(--text-secondary); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); text-align: center; }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        footer .contact-row a { color: var(--text-link); text-decoration: none; font-size: 14px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        footer .links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        footer .copy { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-subtle); padding-top: 20px; }