:root {
            --primary: #FFD700;
            --primary-hover: #F0C419;
            --secondary: #D40000;
            --accent-gold: #C5A059;
            --accent-gold-light: #E9D2A1;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #EAECEF;
            --text-secondary: #848E9C;
            --highlight: #FFD700;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #474D57;
            --font-primary: 'Montserrat', sans-serif;
            --font-display: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 12px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--primary); color: #000; }

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

        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            padding: 20px;
            text-align: center;
            margin: 15px 10px;
            border: 1px solid var(--accent-gold);
            border-radius: 12px;
        }
        .jackpot-title { color: var(--accent-gold-light); font-family: var(--font-display); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 32px; color: var(--primary); font-weight: 900; text-shadow: 0 0 10px rgba(255,215,0,0.5); }

        .platform-intro { padding: 20px 15px; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; font-family: var(--font-display); }
        .platform-intro p { font-size: 14px; color: var(--text-secondary); }

        .section-title { padding: 15px 15px 5px; font-size: 20px; color: var(--accent-gold-light); border-left: 4px solid var(--primary); margin-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 8px; overflow: hidden; border: 1px solid var(--bg-elevated); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .trust-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: var(--bg-surface); margin: 15px 0; }
        .trust-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .trust-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }

        .guides { padding: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-marquee { background: var(--bg-surface); margin: 15px 0; overflow: hidden; height: 40px; border-top: 1px solid var(--bg-elevated); border-bottom: 1px solid var(--bg-elevated); }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; align-items: center; height: 100%; }
        .marquee-item { padding: 0 20px; font-size: 13px; color: var(--text-primary); }
        .marquee-item span { color: var(--success); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

        .providers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag { background: var(--bg-elevated); padding: 10px; text-align: center; border-radius: 4px; font-weight: 600; color: var(--accent-gold-light); }

        .comments { padding: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--bg-elevated); }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 20px; color: var(--text-secondary); }
        .stars { color: var(--primary); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-secondary); margin-top: 8px; }

        .faq { padding: 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--bg-elevated); padding-bottom: 10px; }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 5px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer { text-align: center; padding: 20px 15px; background: #000; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-top: 10px; font-size: 24px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            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-align: center; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item.active { color: var(--primary); }

        footer {
            background: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--bg-elevated);
        }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        footer .contact-link { color: var(--primary); font-size: 14px; }
        footer .link-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        footer .link-cols a { font-size: 13px; color: var(--text-secondary); }
        footer .copyright { text-align: center; font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--bg-elevated); padding-top: 20px; }