:root {
            --brand-primary: #FFD700;
            --brand-secondary: #B8860B;
            --brand-accent: #FF4500;
            --premium-gold: #D4AF37;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-card: #121212;
            --bg-gradient: linear-gradient(180deg, #1F2833 0%, #0B0C10 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #666666;
            --text-brand-contrast: #000000;
            --border-default: #333333;
            --border-active: #FFD700;
            --border-subtle: #252525;
            --win-highlight: #FFCC00;
            --font-primary: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-display: 'Li Adorsho', sans-serif;
        }

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

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

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

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

        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }

        .btn:active {
            transform: scale(0.95);
        }

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

        .btn-register {
            background-color: var(--brand-primary);
            color: var(--text-brand-contrast);
        }

        .hero {
            width: 100%;
            cursor: pointer;
        }

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

        .jackpot-container {
            background: var(--bg-gradient);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--premium-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }

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

        .jackpot-amount {
            font-family: var(--font-secondary);
            font-size: 32px;
            font-weight: 700;
            color: var(--win-highlight);
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }

        .intro-section {
            padding: 20px;
            text-align: center;
        }

        h1 {
            font-size: 36px;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        h2 {
            font-size: 30px;
            color: var(--brand-primary);
            margin: 25px 0 15px;
            text-align: center;
        }

        h3 {
            font-size: 16px;
            color: var(--text-primary);
            margin-top: 8px;
        }

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

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

        .game-card {
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            text-decoration: none;
            transition: border-color 0.3s;
        }

        .game-card:hover {
            border-color: var(--brand-primary);
        }

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

        .game-card-info {
            padding: 10px;
            text-align: center;
        }

        .article-list {
            padding: 15px;
        }

        .article-card {
            display: flex;
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }

        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .article-content {
            padding: 10px;
            flex: 1;
        }

        .article-content h3 {
            font-size: 16px;
            margin: 0 0 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 {
            padding: 20px 15px;
            background: var(--bg-surface);
            margin: 20px 0;
        }

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

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

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

        .lottery-box {
            height: 200px;
            overflow: hidden;
            background: var(--bg-card);
            margin: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            position: relative;
        }

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

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

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

        .lottery-user { color: var(--brand-primary); }
        .lottery-win { color: var(--win-highlight); font-weight: bold; }

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

        .provider-block {
            background: var(--bg-surface);
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--premium-gold);
            border: 1px solid var(--border-subtle);
        }

        .reviews-section {
            padding: 15px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-primary);
        }

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

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

        .review-stars {
            color: var(--win-highlight);
            font-size: 12px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
            text-align: right;
        }

        .faq-section {
            padding: 15px;
        }

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            color: var(--brand-primary);
            display: flex;
            justify-content: space-between;
        }

        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-section {
            padding: 20px;
            text-align: center;
            background: var(--bg-card);
            border-top: 1px solid var(--border-subtle);
        }

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

        .age-limit {
            display: inline-block;
            border: 2px solid var(--brand-accent);
            color: var(--brand-accent);
            padding: 5px 10px;
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .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-subtle);
            z-index: 2000;
        }

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

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

        .nav-item:nth-child(3) i {
            color: var(--brand-primary);
            font-size: 24px;
            margin-top: -15px;
            background: var(--bg-main);
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            border: 2px solid var(--brand-primary);
        }

        footer {
            padding: 20px 15px 100px;
            background: var(--bg-main);
            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 {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
        }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .providers-grid { grid-template-columns: repeat(4, 1fr); }
        }