:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #14171A;
            --bg-tertiary: #1E2227;
            --bg-surface: #252A30;
            --brand-primary: #FFD700;
            --brand-variant: #C5A028;
            --brand-secondary: #B8860B;
            --brand-accent: #FFBF00;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-on-brand: #000000;
            --border-default: #33383E;
            --border-active: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            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-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: 400; }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--text-on-brand); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-surface));
            border: 1px solid var(--brand-secondary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-label { color: var(--brand-primary); font-weight: 700; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: var(--brand-accent); font-family: 'monospace'; overflow: hidden; display: inline-block; white-space: nowrap; }
        .platform-intro { margin-bottom: 25px; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; }
        .platform-intro p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 20px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card {
            background-color: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            text-decoration: none;
            transition: 0.3s;
        }
        .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; color: var(--text-primary); }
        .article-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .article-card {
            display: flex;
            background-color: var(--bg-tertiary);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            gap: 12px;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; }
        .article-content h3 { font-size: 15px; color: var(--brand-primary); margin-bottom: 5px; }
        .article-content p { font-size: 13px; color: var(--text-secondary); height: 40px; overflow: hidden; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); display: block; margin-bottom: 5px; }
        .lottery-box { background-color: var(--bg-tertiary); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-faint);
            font-size: 13px;
        }
        .lottery-item span:first-child { color: var(--brand-accent); }
        .lottery-item span:last-child { color: var(--semantic-success); font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background-color: var(--bg-secondary); padding: 20px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: bold; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background-color: var(--bg-surface); padding: 15px; border-radius: 12px; border-bottom: 2px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--brand-primary); }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-item { background-color: var(--bg-tertiary); margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .security-section { text-align: center; padding: 20px; background-color: var(--bg-secondary); border-radius: 12px; margin-bottom: 25px; border: 1px dashed var(--brand-secondary); }
        .security-section i { font-size: 30px; color: var(--semantic-success); margin-bottom: 10px; }
        .security-section p { font-size: 13px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:nth-child(3) {
            background-color: var(--brand-primary);
            color: var(--text-on-brand);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-top: -30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        footer { background-color: var(--bg-primary); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); }