:root {
            --primary: #D4AF37;
            --primary-light: #F9E29B;
            --primary-dark: #996515;
            --accent: #E31837;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #F9E29B 100%);
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222224;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B5;
            --text-muted: #707075;
            --border-subtle: #2D2D30;
            --border-strong: #404045;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        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-subtle);
        }
        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(--primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
        .btn-register { background: var(--gold-gradient); color: #0A0A0B; }
        main { max-width: 800px; margin: 0 auto; padding: 0; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: radial-gradient(circle at center, #2c1e05 0%, #0A0A0B 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 2px solid var(--primary);
            margin-bottom: 20px;
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
        .jackpot-amount {
            font-family: 'Archivo Black', sans-serif;
            font-size: 32px;
            color: var(--primary-light);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            margin-top: 5px;
        }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border-subtle); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; font-family: 'Archivo Black', sans-serif; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 20px; border-left: 4px solid var(--primary); font-family: 'Archivo Black', sans-serif; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); text-decoration: none; color: inherit; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-secondary); }
        .payment-licence { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px; background: var(--bg-surface); margin: 15px; border-radius: 12px; }
        .pl-item { text-align: center; font-size: 10px; color: var(--text-muted); }
        .pl-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guide-section { padding: 15px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--accent); }
        .guide-card h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary-light); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .lottery-box { background: var(--bg-surface); margin: 15px; border-radius: 12px; height: 120px; overflow: hidden; border: 1px solid var(--border-subtle); position: relative; }
        .lottery-track { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -400%; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
        .lottery-user { color: var(--primary); font-weight: 600; }
        .lottery-win { color: var(--semantic-win, #00E676); font-weight: 700; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; }
        .provider-item { flex: 1 1 calc(50% - 10px); background: var(--bg-elevated); padding: 10px; text-align: center; border-radius: 6px; font-weight: 700; color: var(--text-secondary); font-size: 14px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin: 10px 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--text-muted); }
        .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-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { text-align: center; padding: 30px 15px; background: #000; margin-top: 20px; }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--primary); }
        .security-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 15px; }
        .security-links a { color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }