:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --brand-primary: #FFD700;
            --brand-secondary: #FF4500;
            --brand-accent: #B8860B;
            --brand-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --text-highlight: #FFD700;
            --border-default: #333333;
            --border-focused: #FFD700;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Hind Siliguri', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-secondary);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-logo img {
            width: 25px;
            height: 25px;
        }
        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
        }
        .header-auth {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background: var(--brand-gradient);
            color: var(--bg-primary);
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            cursor: pointer;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: var(--bg-secondary);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid var(--brand-accent);
        }
        .jackpot-title {
            color: var(--brand-primary);
            font-size: 1.125rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            font-family: monospace;
            background: #000;
            padding: 10px;
            border-radius: 8px;
            display: inline-block;
            min-width: 250px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .container {
            padding: 0 15px;
        }
        .intro-section {
            margin: 30px 0;
            text-align: center;
        }
        h1 {
            font-size: 1.75rem;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.25;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 1rem;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 25px 0 15px;
            border-left: 4px solid var(--brand-primary);
            padding-left: 10px;
        }
        h2 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .game-card {
            background: var(--bg-tertiary);
            border-radius: var(--radius-md);
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 0.875rem;
            padding: 10px;
            text-align: center;
            color: var(--text-primary);
        }
        .article-list {
            margin-top: 20px;
        }
        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-secondary);
            padding: 12px;
            border-radius: var(--radius-md);
            margin-bottom: 15px;
            text-decoration: none;
            color: inherit;
        }
        .article-img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .article-info h3 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }
        .article-info p {
            font-size: 0.875rem;
            color: var(--text-muted);
            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: 20px 0;
        }
        .payment-item {
            background: var(--bg-secondary);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
        }
        .payment-item i {
            font-size: 1.5rem;
            color: var(--brand-primary);
            margin-bottom: 8px;
            display: block;
        }
        .payment-item span {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .lottery-wrapper {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius-md);
            height: 250px;
            overflow: hidden;
            position: relative;
            margin: 20px 0;
        }
        .lottery-list {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 0.875rem;
        }
        .lottery-item .user { color: var(--brand-primary); }
        .lottery-item .amount { color: #00C853; font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .review-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .user-info i {
            width: 30px;
            height: 30px;
            background: var(--bg-tertiary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
        }
        .stars { color: var(--brand-primary); font-size: 0.75rem; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); }
        .review-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; text-align: right; }
        .faq-section {
            margin: 30px 0;
        }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }
        .safety-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
            padding: 25px 15px;
            text-align: center;
            border-radius: var(--radius-md);
            margin: 30px 0;
            border: 1px solid var(--border-default);
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 2rem;
            color: var(--brand-primary);
        }
        .responsibility-text {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        .age-badge {
            display: inline-block;
            border: 2px solid #FF1744;
            color: #FF1744;
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: bold;
            margin-top: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            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-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.75rem;
        }
        .nav-item i {
            font-size: 1.25rem;
            margin-bottom: 4px;
        }
        .nav-item.active {
            color: var(--brand-primary);
        }
        footer {
            background: var(--bg-secondary);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .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: 0.875rem;
        }
        .copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }