:root {
            --primary: #D4AF37;
            --primary-hover: #F2D06B;
            --secondary: #E63946;
            --accent: #00C851;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --link: #F0B90B;
            --border: #474D57;
            --font-main: 'Hind Siliguri', 'Kohinoor Bangla', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        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);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
        .btn-register { background: var(--primary); color: #000; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 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-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 10px var(--primary); }
        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; border-left: 4px solid var(--primary); font-size: 20px; }
        .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; transition: transform 0.3s; border: 1px solid var(--border); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: var(--bg-surface); margin: 20px 15px; padding: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .guidelines { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-marquee { background: var(--bg-surface); margin: 15px; padding: 10px; border-radius: 8px; overflow: hidden; position: relative; height: 150px; }
        .lottery-track { position: absolute; animation: scrollUp 20s linear infinite; width: 100%; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -100%; } }
        .lottery-item { font-size: 12px; padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: var(--bg-elevated); padding: 15px; text-align: center; border-radius: 8px; color: var(--primary); font-weight: 600; border: 1px solid var(--border); }
        .review-grid { display: flex; flex-direction: column; gap: 15px; padding: 0 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--accent); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #ffc107; font-size: 12px; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; padding: 15px; border-radius: 8px; border: 1px solid var(--border); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: #000; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dashed var(--border); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        footer { background: var(--bg-surface); padding: 30px 15px; border-top: 1px solid var(--border); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary); font-size: 14px; border: 1px solid var(--primary); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-secondary); padding-top: 20px; border-top: 1px solid var(--border); }