:root {
            --bg-primary: #0A0B0C;
            --bg-secondary: #15181C;
            --bg-tertiary: #1E2228;
            --bg-elevated: #252A31;
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #E63946;
            --grad-gold: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-subtle: #2F3336;
            --border-default: #3E4144;
            --font-main: 'Hind Siliguri', sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        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-subtle);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login {
            background: transparent;
            color: var(--brand-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background: var(--grad-gold);
            color: #000;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-secondary);
        }
        .jackpot-title {
            color: var(--brand-primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Roboto', sans-serif;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }
        .intro-section p {
            font-size: 16px;
            color: var(--text-secondary);
        }
        .section-title {
            font-size: 20px;
            margin: 20px 15px 10px;
            border-left: 4px solid var(--brand-primary);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 15px;
        }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            margin-bottom: 12px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-content {
            padding: 10px;
            flex: 1;
        }
        .article-content h3 {
            font-size: 14px;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }
        .article-content p {
            font-size: 12px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background: var(--bg-tertiary);
            padding: 20px 15px;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-secondary);
        }
        .lottery-section {
            margin: 20px 15px;
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 15px;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-item span:nth-child(2) {
            color: var(--brand-primary);
            font-weight: 600;
        }
        .providers-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--brand-secondary);
            border: 1px solid var(--border-subtle);
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 20px;
            color: var(--brand-primary);
        }
        .star-rating {
            color: #FFAB00;
            font-size: 12px;
        }
        .review-body {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .review-date {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: var(--bg-secondary);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
            color: var(--brand-primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .responsible-gaming {
            padding: 30px 15px;
            text-align: center;
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border-subtle);
        }
        .responsible-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--text-secondary);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 12px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 2px;
        }
        .nav-item.active {
            color: var(--brand-primary);
        }
        footer {
            padding: 20px 15px 80px;
            background: var(--bg-primary);
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .footer-copy {
            font-size: 12px;
            color: var(--text-muted);
        }
        @keyframes jackpotAnimate {
            0% { opacity: 0.8; }
            50% { opacity: 1; transform: scale(1.02); }
            100% { opacity: 0.8; }
        }
        .jackpot-amount {
            animation: jackpotAnimate 2s infinite ease-in-out;
        }