:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #C5A021;
            --brand-accent: #FF4500;
            --gradient-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6E6E6E;
            --on-brand: #000000;
            --border-default: #333333;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
            --font-display: 'Galada', cursive;
        }

        * {
            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;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        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-default);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
            font-family: var(--font-display);
        }

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

        .btn-login {
            background-color: transparent;
            color: var(--brand-primary);
            border: 1px solid var(--brand-primary);
        }

        .btn-register {
            background: var(--gradient-gold);
            color: var(--on-brand);
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

        .jackpot-title {
            font-size: 18px;
            color: var(--brand-primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-secondary);
        }

        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }

        .intro-section h1 {
            font-size: 28px;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .intro-section p {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .section-header {
            padding: 0 15px;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-header h2 {
            font-size: 22px;
            color: var(--brand-primary);
            position: relative;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }

        .game-card {
            background: var(--bg-secondary);
            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;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-item {
            display: flex;
            gap: 12px;
            background: var(--bg-secondary);
            padding: 10px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }

        .article-item img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .article-info h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }

        .article-info p {
            font-size: 12px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 25px;
        }

        .payment-item {
            background: var(--bg-tertiary);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-default);
        }

        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 8px;
            display: block;
        }

        .payment-item span {
            font-size: 11px;
            color: var(--text-secondary);
        }

        .lottery-box {
            background: var(--bg-secondary);
            margin: 20px 15px;
            border-radius: 15px;
            padding: 15px;
            height: 250px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }

        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            padding: 10px 0;
            border-bottom: 1px solid var(--bg-tertiary);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lottery-user {
            color: var(--brand-primary);
            font-size: 14px;
        }

        .lottery-win {
            color: var(--success);
            font-weight: bold;
            color: #00C853;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
        }

        .provider-item {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }

        .review-section {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-user i {
            background: var(--bg-tertiary);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--brand-primary);
        }

        .review-stars {
            color: var(--brand-primary);
            font-size: 12px;
        }

        .review-content {
            font-size: 14px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .faq-section {
            padding: 0 15px;
        }

        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
        }

        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .security-section {
            background: var(--bg-tertiary);
            margin: 30px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--brand-primary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

        .nav-item {
            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(--brand-primary);
        }

        footer {
            padding: 30px 15px 100px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-default);
            text-align: center;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
        }

        .footer-copyright {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }