:root {
            --primary: #D4AF37;
            --primary-hover: #F9E076;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-overlay: #1E1E20;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-muted: #6B6B6B;
            --success: #00C853;
            --error: #FF3D00;
            --jackpot: #FF00FF;
            --border-subtle: #2D2D30;
            --border-bright: #D4AF37;
            --font-heading: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-body: 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); }
        .btn-register { background-color: var(--primary); color: #000; }
        .btn-register:hover { background-color: var(--primary-hover); }
        main { max-width: 800px; margin: 0 auto; padding: 16px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 16px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card {
            background: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--primary); font-family: 'Roboto Mono', monospace; }
        .intro-card {
            background-color: var(--bg-surface);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            border: 1px solid var(--border-subtle);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-left: 8px; border-left: 4px solid var(--primary); }
        .section-header h2 { font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .game-card { background-color: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
        .payment-item { background: var(--bg-overlay); padding: 12px 4px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 4px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); display: block; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
        .guide-item { background: var(--bg-surface); padding: 16px; border-radius: 12px; border-bottom: 2px solid var(--border-subtle); }
        .guide-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }
        .marquee-container { background: var(--bg-overlay); padding: 12px; border-radius: 12px; overflow: hidden; margin-bottom: 24px; border: 1px solid var(--border-subtle); }
        .marquee-content { display: flex; flex-direction: column; gap: 8px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-record { display: flex; justify-content: space-between; font-size: 12px; padding: 6px 10px; background: rgba(255,255,255,0.05); border-radius: 6px; }
        .win-user { color: var(--primary); font-weight: bold; }
        .win-amount { color: var(--success); }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
        .provider-tag { background: linear-gradient(90deg, var(--bg-overlay), var(--bg-surface)); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--primary); border: 1px solid var(--border-subtle); }
        .comment-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
        .comment-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 24px; color: var(--text-muted); }
        .comment-stars { color: var(--accent); font-size: 12px; }
        .faq-section { margin-bottom: 24px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 16px; color: var(--text-secondary); font-size: 14px; background: var(--bg-overlay); }
        .security-section { background: #000; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-subtle); margin-bottom: 24px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .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-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; display: block; }
        .nav-item.active { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 30px 16px 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: var(--text-secondary); font-size: 18px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-muted); font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }