:root {
            --primary-bg: #0B0E11;
            --secondary-bg: #1E2329;
            --tertiary-bg: #2B3139;
            --brand-primary: #FCD535;
            --brand-secondary: #EAB308;
            --brand-accent: #FFD700;
            --text-primary: #FFFFFF;
            --text-secondary: #EAECEF;
            --text-muted: #848E9C;
            --border-color: #474D57;
            --success: #0ECB81;
            --win: #22C55E;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--secondary-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

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

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

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

        header .auth-buttons {
            display: flex;
            gap: 8px;
        }

        .btn {
            padding: 6px 14px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

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

        .btn-register {
            background: var(--brand-primary);
            color: #0B0E11;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
        }

        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }

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

        .jackpot-container {
            background: linear-gradient(135deg, #1E2329 0%, #2B3139 100%);
            border: 2px solid var(--brand-primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(252, 213, 53, 0.2);
        }

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

        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--brand-accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background: var(--secondary-bg);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--brand-primary);
        }

        .intro-card h1 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--brand-primary);
        }

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

        .section-title {
            font-size: 20px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

        .game-card {
            background: var(--secondary-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-color);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
        }

        .payment-section {
            background: var(--tertiary-bg);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

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

        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-muted);
        }

        .guides-container {
            display: grid;
            gap: 15px;
            margin-bottom: 25px;
        }

        .guide-item {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: 12px;
        }

        .guide-item h2 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--brand-primary);
        }

        .lottery-box {
            background: #000;
            border-radius: 12px;
            padding: 15px;
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 25px;
            border: 1px solid var(--tertiary-bg);
        }

        .lottery-track {
            animation: marquee 30s linear infinite;
        }

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

        .lottery-item {
            padding: 8px 0;
            border-bottom: 1px solid #1e2329;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }

        .lottery-item span { color: var(--win); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

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

        .review-card {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }

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

        .review-header i { font-size: 30px; color: var(--text-muted); }

        .stars { color: #F0B90B; font-size: 12px; }

        .faq-section {
            margin-bottom: 25px;
        }

        .faq-item {
            background: var(--secondary-bg);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }

        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 8px; }

        .security-section {
            background: #111;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--border-color);
        }

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

        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            text-align: center;
            font-size: 12px;
        }

        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }

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

        .footer-contacts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-contacts a { color: var(--brand-primary); text-decoration: none; font-size: 14px; }

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

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

        .copyright { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }