:root {
            --bg-primary: #0A0D14;
            --bg-secondary: #161B22;
            --bg-tertiary: #1C2128;
            --bg-surface: #0D1117;
            --brand-primary: #FFD700;
            --brand-variant: #C5A000;
            --brand-secondary: #B8860B;
            --brand-accent: #FFBF00;
            --brand-gradient: linear-gradient(180deg, #FDB931 0%, #9F7928 100%);
            --success: #00E676;
            --error: #FF5252;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-default: #30363D;
            --font-main: 'Hind Siliguri', sans-serif;
        }

        * {
            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.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

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

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

        .logo-area img {
            width: 25px;
            height: 25px;
        }

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

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

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            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(--brand-gradient);
            color: #000;
        }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

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

        .jackpot-container {
            background: var(--bg-secondary);
            border: 1px solid var(--brand-secondary);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            margin-bottom: 25px;
        }

        .jackpot-title {
            color: var(--brand-accent);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
        }

        .intro-section {
            margin-bottom: 30px;
        }

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

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

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-primary);
            padding-left: 10px;
        }

        .section-header h2 {
            font-size: 20px;
            font-weight: 600;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-tertiary);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: block;
            border: 1px solid var(--border-default);
            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(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .article-card {
            display: flex;
            gap: 12px;
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 12px;
            text-decoration: none;
            border: 1px solid var(--border-default);
        }

        .article-image {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
        }

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

        .article-info h3 {
            font-size: 16px;
            color: var(--brand-primary);
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .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;
            margin-bottom: 30px;
        }

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

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

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

        .lottery-wrapper {
            background: var(--bg-tertiary);
            border-radius: 12px;
            height: 250px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            border: 1px solid var(--border-default);
        }

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

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

        .lottery-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .lottery-game {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .lottery-amount {
            font-size: 14px;
            color: var(--success);
            font-weight: 700;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }

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

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

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

        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--bg-tertiary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            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 {
            margin-bottom: 30px;
        }

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

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

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

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

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

        .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: 1001;
        }

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

        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
        }

        .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: 14px;
        }

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