:root {
            --primary: #D4AF37;
            --primary-bright: #F9A602;
            --secondary: #008751;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #15191D;
            --bg-elev: #1E2329;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-pri: #FFFFFF;
            --text-sec: #B7BDC6;
            --text-dis: #5E6673;
            --border-weak: #2B3139;
            --border-strong: #474D57;
            --success: #02C076;
            --error: #F6465D;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-pri);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        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-weak);
        }
        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; text-transform: uppercase; color: var(--primary); }
        header .actions { display: flex; gap: 10px; }
        header .actions button {
            border: none;
            padding: 8px 14px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-pri); border: 1px solid var(--border-strong) !important; }
        .btn-reg { background: var(--primary); color: var(--bg-main); }
        main { max-width: 600px; margin: 0 auto; padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-value { font-family: 'Roboto Mono', monospace; font-size: 32px; color: var(--primary-bright); font-weight: 700; text-shadow: 0 0 10px rgba(249, 166, 2, 0.5); }
        .platform-intro { margin: 15px; padding: 20px; background: var(--bg-surface); border-radius: 12px; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
        .platform-intro p { font-size: 14px; color: var(--text-sec); text-align: justify; }
        .section-title { margin: 25px 15px 15px; font-size: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-weak); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 13px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-sec); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: var(--bg-elev); margin: 20px 0; }
        .trust-item { text-align: center; }
        .trust-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .trust-item span { display: block; font-size: 10px; color: var(--text-sec); }
        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-bottom: 2px solid var(--secondary); }
        .guide-item h2 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-sec); }
        .lottery-ticker { background: var(--bg-surface); margin: 20px 15px; border-radius: 8px; height: 150px; overflow: hidden; position: relative; border: 1px solid var(--border-weak); }
        .lottery-scroll { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -400%; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid var(--border-weak); display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-item span:first-child { color: var(--success); font-weight: 600; }
        .lottery-item span:last-child { color: var(--text-dis); }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-tag { background: var(--bg-elev); padding: 12px; text-align: center; border-radius: 6px; color: var(--primary); font-weight: 600; border: 1px solid var(--border-weak); font-size: 14px; }
        .reviews-container { padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid var(--border-weak); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { color: var(--text-sec); font-size: 20px; }
        .review-header .user-info { flex: 1; }
        .review-header .user-name { font-size: 14px; font-weight: 600; display: block; }
        .review-header .stars { color: var(--primary-bright); font-size: 10px; }
        .review-content { font-size: 13px; color: var(--text-sec); font-style: italic; }
        .review-date { display: block; text-align: right; font-size: 11px; color: var(--text-dis); margin-top: 5px; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-item h2 { font-size: 14px; padding: 15px; background: var(--bg-elev); cursor: pointer; color: var(--primary); display: flex; justify-content: space-between; align-items: center; }
        .faq-item p { padding: 15px; font-size: 13px; color: var(--text-sec); border-top: 1px solid var(--border-weak); }
        .security-section { margin: 30px 15px; padding: 20px; background: rgba(0, 135, 81, 0.1); border-radius: 12px; border: 1px solid var(--secondary); text-align: center; }
        .security-section i { font-size: 30px; color: var(--secondary); margin-bottom: 10px; }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: var(--text-sec); margin-bottom: 15px; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid var(--error); color: var(--error); border-radius: 50%; font-weight: 800; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-strong);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-sec); font-size: 10px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; color: var(--text-pri); }
        footer {
            background: var(--bg-main);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-weak);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-contact a { color: var(--primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { display: block; font-size: 12px; color: var(--text-sec); margin-bottom: 8px; }
        .footer-copy { font-size: 11px; color: var(--text-dis); padding-top: 20px; border-top: 1px solid var(--border-weak); }