:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-surface: #242424;
            --brand-gold: #FFD700;
            --brand-gold-variant: #C5A021;
            --brand-green: #00C853;
            --brand-accent: #FF4500;
            --text-white: #FFFFFF;
            --text-gray: #B0B0B0;
            --text-muted: #757575;
            --border-color: #333333;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-white);
            font-family: var(--font-main);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            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-color);
        }
        .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(--brand-gold);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            border: none;
            border-radius: 4px;
            padding: 6px 15px;
            font-weight: 600;
            cursor: pointer;
            font-family: var(--font-main);
            font-size: 14px;
        }
        .btn-login {
            background-color: transparent;
            color: var(--brand-gold);
            border: 1px solid var(--brand-gold);
        }
        .btn-register {
            background-color: var(--brand-gold);
            color: #000;
        }
        .hero-banner {
            width: 100%;
            cursor: pointer;
            display: block;
        }
        .hero-banner img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
        }
        .jackpot-container {
            background: linear-gradient(135deg, #1A1A1A 0%, #242424 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-gold-variant);
        }
        .jackpot-title {
            color: var(--brand-gold);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 700;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-green);
            font-family: monospace;
            text-shadow: 0 0 10px rgba(0,200,83,0.5);
        }
        .section-intro {
            padding: 20px 15px;
            text-align: center;
        }
        .section-intro h1 {
            font-size: 24px;
            color: var(--brand-gold);
            margin-bottom: 15px;
        }
        .section-intro p {
            color: var(--text-gray);
            font-size: 14px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 15px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: transform 0.2s;
            text-decoration: none;
            color: inherit;
        }
        .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;
            margin: 0;
            color: var(--text-white);
        }
        .article-section {
            padding: 15px;
        }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-color);
        }
        .article-card img {
            width: 100px;
            height: 80px;
            object-fit: cover;
        }
        .article-info {
            padding: 10px;
            flex: 1;
        }
        .article-info h2 {
            font-size: 14px;
            margin: 0 0 5px 0;
            color: var(--brand-gold);
        }
        .article-info p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background-color: var(--bg-secondary);
            padding: 20px 15px;
            margin: 20px 0;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--brand-gold);
            margin-bottom: 5px;
            display: block;
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-gray);
        }
        .winner-ticker {
            background: var(--bg-surface);
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
            border-left: 4px solid var(--brand-green);
        }
        .winner-list {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .winner-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            font-size: 12px;
        }
        .winner-item span:first-child { color: var(--brand-gold); }
        .winner-item span:last-child { color: var(--brand-green); font-weight: bold; }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--border-color);
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-top: 2px solid var(--brand-gold);
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-user i {
            background: var(--bg-surface);
            padding: 8px;
            border-radius: 50%;
            color: var(--brand-gold);
        }
        .stars { color: #FFEA00; font-size: 12px; }
        .faq-section { padding: 15px; }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 6px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 16px; color: var(--brand-gold); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-gray); }

        .security-section {
            text-align: center;
            padding: 30px 15px;
            background: #000;
            border-top: 1px solid var(--border-color);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--brand-gold);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-color);
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-gray);
            font-size: 12px;
        }
        .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 4px;
        }
        .nav-item.active { color: var(--brand-gold); }

        footer {
            padding: 20px 15px 80px 15px;
            background: var(--bg-primary);
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-copy {
            font-size: 12px;
            color: var(--text-muted);
        }