:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151921;
            --bg-tertiary: #1E2329;
            --brand-primary: #FFD700;
            --brand-secondary: #C9A000;
            --brand-accent: #FF4D4D;
            --success: #00C853;
            --error: #FF3D00;
            --warning: #FFB300;
            --info: #2196F3;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --text-inverse: #0B0E11;
            --border-light: #2B3139;
            --border-medium: #3B424B;
            --border-strong: #FFD700;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { 
            background-color: var(--bg-primary); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-light);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 16px; 
            border-radius: 8px; 
            font-size: 14px; 
            cursor: pointer; 
            border: none; 
            font-weight: 600; 
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-auth:hover { opacity: 0.8; transform: translateY(-1px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { 
            width: 100%; 
            aspect-ratio: 2 / 1; 
            border-radius: 16px; 
            overflow: hidden; 
            margin-bottom: 20px; 
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { 
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
            border: 2px solid var(--brand-primary);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: bold; 
            color: var(--brand-primary); 
            font-family: var(--font-secondary);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card { 
            background: var(--bg-secondary); 
            padding: 25px; 
            border-radius: 16px; 
            border: 1px solid var(--border-medium); 
            margin-bottom: 30px;
            text-align: center;
        }
        .intro-card h1 { font-size: 24px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }

        .section-title { 
            font-size: 22px; 
            margin: 30px 0 20px; 
            padding-left: 15px; 
            border-left: 4px solid var(--brand-primary); 
            color: var(--text-primary);
        }
        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px;
        }
        .game-card { 
            background: var(--bg-tertiary); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-light); 
            transition: 0.3s;
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            color: var(--text-primary); 
            text-align: center; 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis;
        }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px;
        }
        .payment-item { 
            background: var(--bg-tertiary); 
            padding: 15px 5px; 
            border-radius: 10px; 
            text-align: center; 
            font-size: 12px; 
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--brand-primary); margin-bottom: 8px; }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px;
        }
        .guide-card { 
            background: var(--bg-secondary); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-light);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .lottery-marquee { 
            background: var(--bg-secondary); 
            padding: 15px 0; 
            margin-bottom: 30px; 
            overflow: hidden; 
            white-space: nowrap; 
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: relative;
        }
        .marquee-content { 
            display: inline-block; 
            animation: marquee 30s linear infinite; 
            color: var(--text-secondary);
            font-size: 14px;
        }
        .marquee-item { 
            display: inline-block; 
            margin-right: 50px; 
        }
        .marquee-item span { color: var(--brand-primary); font-weight: bold; }
        @keyframes marquee { 
            0% { transform: translateX(0); } 
            100% { transform: translateX(-50%); } 
        }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px;
        }
        .provider-box { 
            background: var(--bg-tertiary); 
            padding: 20px; 
            border-radius: 10px; 
            text-align: center; 
            font-weight: bold; 
            font-size: 16px; 
            border-left: 4px solid var(--brand-primary);
        }
        .provider-box:nth-child(even) { border-left: none; border-right: 4px solid var(--brand-accent); }

        .review-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px;
        }
        .review-card { 
            background: var(--bg-secondary); 
            padding: 20px; 
            border-radius: 16px; 
            border: 1px solid var(--border-light);
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-name { font-weight: 600; font-size: 16px; }
        .review-stars { color: var(--brand-primary); font-size: 12px; margin-bottom: 10px; }
        .review-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { color: var(--text-muted); font-size: 12px; text-align: right; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-secondary); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            border: 1px solid var(--border-light); 
            overflow: hidden;
        }
        .faq-question { 
            padding: 15px 20px; 
            font-weight: 600; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            background: var(--bg-tertiary);
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-section { 
            background: var(--bg-secondary); 
            padding: 25px; 
            border-radius: 16px; 
            text-align: center; 
            border: 1px solid var(--border-light);
            margin-bottom: 30px;
        }
        .security-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
            gap: 20px; 
            margin-top: 20px;
        }
        .security-item i { font-size: 30px; color: var(--success); margin-bottom: 10px; display: block; }
        .security-item h4 { font-size: 16px; margin-bottom: 5px; }
        .security-item p { font-size: 12px; color: var(--text-muted); }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-secondary); 
            display: flex; 
            justify-content: space-around; 
            padding: 12px 0; 
            border-top: 1px solid var(--border-light); 
            z-index: 1000;
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer { 
            background: var(--bg-secondary); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-light);
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 15px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .footer-copy { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--border-light); padding-top: 20px; }

        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }