:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --highlight: #FFCC00;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --success: #28A745;
            --win: #00FF7F;
            --border: #333333;
            --font-primary: 'Hind Siliguri', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; }
        .jackpot-box {
            background: linear-gradient(145deg, var(--bg-surface), #000);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 30px; font-weight: 800; color: var(--win); text-shadow: 0 0 10px rgba(0, 255, 127, 0.5); }
        .intro-card {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); }
        .section-title { font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--accent); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 15px;
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .guidelines { margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border); }
        .guide-item h2 { font-size: 18px; color: var(--highlight); margin-bottom: 8px; }
        .win-marquee {
            background: var(--bg-surface);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            margin-bottom: 25px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .win-record { display: inline-flex; align-items: center; margin-right: 30px; font-size: 13px; gap: 8px; }
        .win-record span { color: var(--win); font-weight: 700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 25px;
            padding: 15px;
            background: var(--bg-surface);
            border-radius: 15px;
        }
        .provider-tag { background: var(--bg-elevated); padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid var(--border); }
        .review-grid { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 15px; border-top: 2px solid var(--secondary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--primary); font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
        }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 24px; color: var(--success); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item { text-align: center; font-size: 12px; color: var(--text-secondary); }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #000; padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .contact-link { background: var(--bg-elevated); padding: 10px; border-radius: 8px; font-size: 13px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }