:root {
            --primary: #D4AF37;
            --primary-light: #FFD700;
            --primary-dark: #996515;
            --secondary: #004225;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-overlay: #262626;
            --bg-nav: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --border-default: #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.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-nav);
            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: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .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-container {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(135deg, var(--primary-dark), #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { color: var(--primary-light); font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: 2px; }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
            margin-bottom: 25px;
        }
        .intro-card h1 { color: var(--primary); font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .section-header h2 { font-size: 20px; font-weight: 700; color: var(--text-primary); }
        .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;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.98); }
        .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); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-overlay);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }
        .guideline-section { margin-bottom: 25px; }
        .guideline-item { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 10px; border-left: 3px solid var(--secondary); }
        .guideline-item h3 { font-size: 17px; color: var(--primary-light); margin-bottom: 8px; }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .lottery-marquee {
            background: var(--bg-nav);
            padding: 10px;
            border-radius: 8px;
            overflow: hidden;
            height: 150px;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
        }
        .lottery-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item { padding: 8px; border-bottom: 1px solid #222; font-size: 13px; display: flex; justify-content: space-between; }
        .lottery-user { color: var(--primary); }
        .lottery-win { color: var(--accent); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: var(--bg-overlay); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; color: var(--primary-light); border: 1px solid var(--border-default); }
        .review-section { margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: var(--text-muted); }
        .review-rating { color: #FFC107; font-size: 12px; margin-bottom: 5px; }
        .review-content { font-size: 14px; color: var(--text-secondary); }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-overlay); border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--secondary); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; }
        .security-text { font-size: 13px; color: #fff; opacity: 0.9; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:active { color: var(--primary); }
        footer {
            background: var(--bg-nav);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contacts { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-primary); text-decoration: none; font-size: 14px; background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }