:root {
            --primary: #FFD700;
            --primary-variant: #F5C518;
            --secondary: #1A1A1A;
            --accent: #FF4D4D;
            --bg-main: #0B0E11;
            --bg-surface: #151921;
            --bg-elevated: #1C212D;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #2D3748;
            --font-main: 'Hind Siliguri', 'Segoe UI', Roboto, 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;
        }
        header {
            background-color: var(--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: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-weight: 500;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, #1C212D 0%, #0B0E11 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-box h2 { font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; }
        #jackpot-amount { font-size: 32px; font-weight: bold; color: var(--primary); font-family: monospace; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 10px; color: var(--primary); }
        .section-title { font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
        }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .guide-container { display: grid; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 18px; }
        .winners-list { background: var(--bg-surface); border-radius: 12px; padding: 10px; }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-row:last-child { border-bottom: none; }
        .winner-row span:nth-child(3) { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary-variant);
            border: 1px dashed var(--border-default);
        }
        .review-grid { display: grid; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; }
        .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 { display: grid; gap: 10px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .security-section {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 20px 0;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .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:hover { color: var(--primary); }
        footer { background: var(--secondary); padding: 30px 15px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-bottom { text-align: center; color: var(--text-disabled); font-size: 12px; border-top: 1px solid var(--border-default); pt: 15px; }