:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #FF8C00;
            --brand-accent: #00FF7F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333333;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 0;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 50px;
        }
        .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-box img {
            width: 25px;
            height: 25px;
        }
        .logo-box strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--brand-primary);
        }
        .header-btns {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background-color: var(--brand-primary);
            color: #000;
        }
        .btn:active { transform: scale(0.95); }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
            display: block;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px var(--brand-glow);
        }
        .jackpot-title {
            color: var(--brand-primary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary);
            font-family: monospace;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section { padding: 30px 15px; }
        .intro-section h1 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--brand-primary);
            text-align: center;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 15px;
            text-align: justify;
        }
        .section-title {
            font-size: 20px;
            color: var(--brand-primary);
            margin: 25px 15px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: border-color 0.3s;
        }
        .game-card:hover { border-color: var(--brand-primary); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background-color: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            gap: 10px;
            border-bottom: 2px solid var(--bg-tertiary);
        }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h2 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-info p { font-size: 12px; color: var(--text-secondary); height: 3.2em; overflow: hidden; }
        .trust-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 20px 15px;
            background: var(--bg-secondary);
            margin: 25px 0;
        }
        .trust-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .trust-item i {
            display: block;
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }
        .winning-ticker {
            height: 200px;
            overflow: hidden;
            background: var(--bg-tertiary);
            margin: 0 15px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
        }
        .ticker-list { animation: scrollUp 20s linear infinite; }
        .ticker-item {
            padding: 12px;
            border-bottom: 1px solid var(--bg-secondary);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .review-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 0 15px;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-primary);
        }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 20px; color: var(--brand-secondary); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
        }
        .provider-item {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-default);
        }
        .faq-section { padding: 0 15px; margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
            border-bottom: 1px solid var(--bg-tertiary);
        }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #000;
            padding: 25px 15px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .security-badge { font-size: 40px; color: var(--brand-accent); margin-bottom: 15px; }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--brand-primary);
            z-index: 1001;
        }
        .nav-item { text-align: center; font-size: 11px; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item:nth-child(3) { color: var(--brand-primary); font-weight: bold; }
        footer {
            padding: 30px 15px 100px;
            background: #050505;
            color: var(--text-muted);
            font-size: 13px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { color: var(--text-secondary); padding: 5px 0; }
        .copy-right { text-align: center; padding-top: 20px; border-top: 1px solid var(--bg-tertiary); }