:root {
            --brand-primary: #FFD700;
            --brand-secondary: #E61E2A;
            --brand-accent: #00C853;
            --premium-gold: #D4AF37;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #1F1F22;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --border-default: #2D2D30;
            --border-active: #D4AF37;
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevated), #000);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--premium-gold);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--premium-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--brand-primary); font-family: monospace; }
        .content-section { padding: 20px 15px; }
        h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; text-align: center; }
        h2 { font-size: 22px; color: var(--premium-gold); margin-bottom: 20px; border-left: 4px solid var(--brand-secondary); padding-left: 10px; }
        h3 { font-size: 16px; margin-top: 10px; color: var(--text-primary); }
        .intro-p { color: var(--text-secondary); margin-bottom: 25px; text-align: justify; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: 10px;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; border-radius: 8px; object-fit: cover; }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .article-card {
            display: flex;
            background: var(--bg-elevated);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 20px; color: var(--premium-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-muted); }
        .win-records {
            background: var(--bg-surface);
            border-radius: var(--radius);
            padding: 15px;
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .win-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .win-user { color: var(--brand-accent); }
        .win-amount { color: var(--brand-primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--text-secondary); }
        .review-section { margin-bottom: 30px; }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-elevated); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .faq-question { font-weight: 600; color: var(--brand-primary); margin-bottom: 8px; display: block; }
        .faq-answer { font-size: 14px; color: var(--text-secondary); }
        .security-box {
            background: #1a1a1c;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .security-box i { font-size: 30px; color: var(--brand-accent); margin-bottom: 10px; }
        .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-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        footer { padding: 30px 15px 100px; background: #050505; text-align: center; }
        .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; }
        .copyright { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-default); padding-top: 20px; }