:root {
            --primary: #FFD700;
            --secondary: #DAA520;
            --accent: #FF4500;
            --cta: #28A745;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: #2B3139;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --text-highlight: #F0B90B;
            --success: #02C076;
            --win-gold: #FFD700;
            --border-default: #474D57;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-display: 'Galada', cursive;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background: 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-default);
        }

        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }

        main { max-width: 600px; margin: 0 auto; padding-bottom: 80px; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(180deg, #1e2329 0%, #0b0e11 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--win-gold);
            font-family: 'monospace';
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card { padding: 20px; margin: 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); text-align: justify; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid var(--primary); margin-left: 15px; }
        .section-title h2 { font-size: 20px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active { transform: scale(0.98); }
        .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;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-overlay);
            margin: 20px 0;
        }
        .payment-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; display: block; }

        .guides-section { padding: 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 15px; }
        .guide-item h3 { color: var(--text-highlight); margin-bottom: 8px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

        .lottery-ticker {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 10px;
            border-radius: 8px;
            height: 150px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }
        .ticker-track { animation: scrollUp 20s linear infinite; }
        .ticker-item {
            padding: 8px 0;
            border-bottom: 1px solid var(--bg-overlay);
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .ticker-user { color: var(--primary); }
        .ticker-amount { color: var(--success); font-weight: bold; }

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

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag {
            background: var(--bg-overlay);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            border-left: 3px solid var(--accent);
        }

        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin: 0 15px 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-info h3 { font-size: 16px; margin: 0; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-surface); border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { padding: 20px 15px; background: var(--bg-overlay); text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; }
        .badge i { font-size: 24px; color: var(--success); margin-bottom: 5px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }

        footer { background: #000; padding: 30px 15px 100px; text-align: center; }
        .footer-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 5px; border: 1px solid var(--bg-overlay); border-radius: 4px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: left; }
        .footer-grid a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--bg-overlay); padding-top: 20px; }