:root {
            --primary-gold: #FFD700;
            --primary-gold-variant: #C5A021;
            --secondary-accent: #E5B80B;
            --cta-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --main-bg: #0B0E11;
            --surface-dark: #161A1E;
            --surface-elevated: #1E2329;
            --modal-overlay: rgba(0, 0, 0, 0.85);
            --primary-text: #FFFFFF;
            --secondary-text: #B7BDC6;
            --disabled-text: #5E6673;
            --accent-text: #FFD700;
            --success: #02C076;
            --error: #F84960;
            --warning: #F0B90B;
            --info: #2979FF;
            --default-border: #2B2F36;
            --focused-border: #FFD700;
            --subtle-divider: #1E2329;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-num: 'Roboto', sans-serif;
        }

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

        body {
            background-color: var(--main-bg);
            color: var(--primary-text);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

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

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

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

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

        .btn {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            font-family: var(--font-main);
        }

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

        .btn-register {
            background: var(--cta-gradient);
            color: #000;
        }

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

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

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

        .jackpot-container {
            background: var(--surface-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-variant);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }

        .jackpot-title {
            color: var(--secondary-text);
            font-size: 14px;
            margin-bottom: 5px;
        }

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

        .intro-card {
            background: var(--surface-dark);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-gold);
        }

        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }

        .section-title {
            padding: 15px 15px 5px;
            font-size: 24px;
            color: var(--primary-text);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }

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

        .game-card:active {
            transform: scale(0.95);
        }

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

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

        .payment-section {
            background: var(--surface-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
        }

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

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

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

        .guidelines {
            padding: 15px;
        }

        .guide-item {
            background: var(--surface-dark);
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 8px;
        }

        .guide-item h3 {
            color: var(--primary-gold);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .lottery-section {
            background: #111418;
            margin: 15px;
            border-radius: 12px;
            overflow: hidden;
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid var(--subtle-divider);
            font-size: 13px;
        }

        .lottery-item span {
            font-family: var(--font-num);
        }

        .lottery-user { color: var(--accent-text); }
        .lottery-win { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-box {
            background: var(--surface-elevated);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            color: var(--primary-gold);
            font-weight: 600;
            border: 1px solid var(--default-border);
        }

        .reviews {
            padding: 15px;
        }

        .review-card {
            background: var(--surface-dark);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--default-border);
        }

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

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

        .star-rating {
            color: var(--warning);
            font-size: 12px;
        }

        .review-date {
            font-size: 12px;
            color: var(--disabled-text);
            margin-top: 8px;
            display: block;
        }

        .faq-section {
            padding: 15px;
        }

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

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

        .security-section {
            background: var(--surface-dark);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface-dark);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--default-border);
            z-index: 1000;
        }

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

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

        footer {
            background: var(--surface-dark);
            padding: 30px 20px 100px;
            border-top: 1px solid var(--default-border);
        }

        .footer-social {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }

        .footer-social a {
            color: var(--secondary-text);
            text-decoration: none;
            background: var(--surface-elevated);
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
            text-align: center;
        }

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

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

        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: var(--disabled-text);
            border-top: 1px solid var(--subtle-divider);
            padding-top: 15px;
        }