:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #1DB954;
            --accent: #FF4500;
            --bg-default: #0B0E11;
            --bg-surface: #1E2329;
            --bg-elevated: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-link: #F0B90B;
            --border-low: #2B3139;
            --border-high: #F0B90B;
            --success: #0ECB81;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            margin: 0;
            padding: 0;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            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-low);
        }
        header .logo-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        header img {
            width: 25px;
            height: 25px;
        }
        header strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header button {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-family: var(--font-main);
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-high);
        }
        .btn-register {
            background-color: var(--primary);
            color: #000;
        }
        main {
            padding-bottom: 80px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(180deg, #1e2329 0%, #0b0e11 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--primary);
        }
        .jackpot-title {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--success);
            text-shadow: 0 0 10px rgba(14, 203, 129, 0.5);
        }
        .intro-card {
            background-color: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 {
            font-size: 24px;
            color: var(--primary);
            margin: 0 0 10px 0;
        }
        .intro-card p {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-low);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            color: var(--text-primary);
            margin: 8px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .section-header {
            padding: 0 15px;
            margin-top: 20px;
        }
        .section-header h2 {
            font-size: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .payment-section {
            background-color: var(--bg-surface);
            padding: 15px;
            margin: 15px;
            border-radius: 12px;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .guidelines {
            padding: 15px;
        }
        .guide-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .guide-item h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .lottery-container {
            background-color: var(--bg-modal);
            margin: 15px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--bg-elevated);
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            animation: scrollLottery 20s linear infinite;
        }
        @keyframes scrollLottery {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            padding: 8px;
            border-bottom: 1px solid var(--border-low);
            font-size: 13px;
            display: flex;
            justify-content: space-between;
        }
        .lottery-item span { color: var(--success); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-box {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-low);
        }
        .review-card {
            background: var(--bg-surface);
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-user i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: #f0b90b; margin-bottom: 10px; }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 16px; margin: 0 0 10px 0; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); margin: 0; }
        .security-section {
            background: var(--bg-modal);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            font-size: 24px;
            color: var(--secondary);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-low);
            z-index: 1000;
        }
        .navigator a {
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        .navigator i { font-size: 20px; margin-bottom: 4px; }
        footer {
            background-color: #000;
            padding: 30px 15px 100px 15px;
            text-align: center;
            color: var(--text-secondary);
        }
        .footer-contacts {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-contacts a { color: var(--text-link); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; border-top: 1px solid var(--border-low); padding-top: 20px; }