:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #262626;
            --gold-primary: #D4AF37;
            --gold-light: #F9E076;
            --emerald: #00875A;
            --accent-red: #E63946;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #8A6D3B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #D4AF37;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--gold-primary);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--gold-primary);
            border: 1px solid var(--gold-primary);
        }
        .btn-register {
            background: var(--gold-gradient);
            color: #000;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
            background: var(--bg-surface);
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-box {
            background: var(--bg-secondary);
            margin: 15px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .jackpot-title {
            color: var(--gold-light);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold-primary);
            font-family: monospace;
        }
        .intro-section {
            padding: 20px 0;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--gold-primary);
            margin-bottom: 10px;
            text-align: center;
        }
        .intro-section p {
            font-size: 14px;
            color: var(--text-secondary);
            text-align: justify;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--gold-primary);
        }
        .section-header h2 {
            font-size: 20px;
            color: var(--text-primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            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: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
        }
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-info {
            padding: 10px;
            flex: 1;
        }
        .article-info h3 {
            font-size: 14px;
            color: var(--gold-primary);
            margin-bottom: 5px;
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            font-size: 20px;
            color: var(--gold-primary);
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .lottery-container {
            background: var(--bg-secondary);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            margin: 20px 0;
            border: 1px solid var(--border-default);
            position: relative;
        }
        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }
        .lottery-user { color: var(--gold-light); }
        .lottery-win { color: var(--emerald); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            color: var(--gold-primary);
            font-weight: 600;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-top {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-top i {
            font-size: 24px;
            color: var(--text-muted);
        }
        .review-user {
            flex: 1;
        }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-rating { color: var(--gold-primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin: 20px 0; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            color: var(--gold-light);
        }
        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        .security-section {
            background: var(--bg-surface);
            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: 30px;
            color: var(--gold-primary);
        }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 12px;
        }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item.active { color: var(--gold-primary); }
        footer {
            background: var(--bg-primary);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }