:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-strong: #444444;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: 'Poppins', sans-serif; 
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-strong);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-weight: 600; 
            font-family: 'Montserrat', sans-serif; 
            border: none; 
            transition: 0.3s; 
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            display: block; 
        }

        .jackpot-section { 
            background: linear-gradient(45deg, #000, #222); 
            text-align: center; 
            padding: 20px; 
            border-bottom: 2px solid var(--primary); 
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount { 
            font-family: 'Montserrat', sans-serif; 
            font-size: 32px; 
            font-weight: 700; 
            color: var(--primary); 
            display: block; 
        }

        .section-container { padding: 30px 15px; max-width: 1200px; margin: 0 auto; }
        .intro-box { text-align: center; margin-bottom: 40px; }
        .intro-box h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
        .intro-box p { color: var(--text-secondary); font-size: 16px; }

        .grid-games { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            color: inherit; 
            border: 1px solid var(--border-subtle); 
            transition: 0.3s; 
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; font-weight: 500; }

        .article-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .article-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle); 
            text-decoration: none; 
            color: inherit; 
            display: flex; 
            flex-direction: column; 
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 8px; 
            border: 1px solid var(--border-subtle); 
            font-size: 12px; 
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            padding: 15px; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-strong); 
        }
        .win-records h2 { text-align: center; margin-bottom: 20px; font-size: 20px; }
        .win-row { 
            display: flex; 
            justify-content: space-between; 
            padding: 10px 0; 
            border-bottom: 1px solid var(--border-subtle); 
            font-size: 13px; 
        }
        .win-row:last-child { border-bottom: none; }
        .win-user { color: var(--text-primary); }
        .win-game { color: var(--text-secondary); }
        .win-amount { color: var(--success); font-weight: 600; }

        .providers-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            background: linear-gradient(135deg, var(--bg-surface), #2a2a2a); 
            padding: 20px; 
            text-align: center; 
            border-radius: 12px; 
            font-weight: 600; 
            border: 1px solid var(--border-subtle); 
            color: var(--primary);
        }

        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            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: 24px; color: var(--secondary); }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            border: 1px solid var(--border-subtle); 
            overflow: hidden; 
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: 600; 
            background: #222; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .safety-box { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-strong); 
            border-radius: 12px; 
            padding: 20px; 
            text-align: center; 
            margin-bottom: 40px; 
        }
        .safety-box i { font-size: 30px; color: var(--success); margin-bottom: 10px; }
        .safety-box p { font-size: 13px; color: var(--text-secondary); margin: 10px 0; }
        .safety-box a { color: var(--primary); text-decoration: none; font-size: 13px; }

        .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-strong); 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 11px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px; 
        }
        .nav-item i { font-size: 18px; }

        footer { 
            background: #050505; 
            padding: 40px 15px 100px; 
            text-align: center; 
            border-top: 1px solid var(--border-subtle); 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .copyright { color: var(--text-muted); font-size: 12px; }

        h2 { font-family: 'Montserrat', sans-serif; font-size: 20px; text-align: center; margin-bottom: 25px; color: var(--text-primary); }