:root {
            --bg-primary: #0B0E11;
            --bg-secondary: #151A21;
            --bg-tertiary: #1C242D;
            --brand-primary: #FFD700;
            --brand-secondary: #FFA500;
            --brand-accent: #00C853;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --border-default: #2D3748;
            --font-main: 'Hind Siliguri', 'Noto Sans Bengali', 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.5;
            -webkit-tap-highlight-color: transparent;
        }
        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);
        }
        .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-box img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .logo-box strong {
            font-size: 16px;
            font-weight: 400;
        }
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-main);
            font-size: 14px;
        }
        .btn-login {
            background: transparent;
            color: var(--brand-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
            color: var(--bg-primary);
        }
        .hero {
            width: 100%;
            cursor: pointer;
        }
        .hero img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            display: block;
        }
        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            color: var(--brand-primary);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 700;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
        }
        .intro-section {
            padding: 20px 15px;
        }
        .intro-section h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        .section-header {
            padding: 0 15px;
            margin-top: 25px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-header h2 {
            font-size: 20px;
            color: var(--text-primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .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;
        }
        .article-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            gap: 12px;
        }
        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .article-content {
            padding: 10px 10px 10px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .article-content h3 {
            font-size: 15px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }
        .article-content 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;
            padding: 15px;
        }
        .payment-item {
            background: var(--bg-secondary);
            border-radius: 8px;
            padding: 15px 5px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            display: block;
            margin-bottom: 8px;
        }
        .win-records-box {
            margin: 15px;
            background: var(--bg-tertiary);
            border-radius: 15px;
            height: 250px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            position: relative;
        }
        .win-records-list {
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .win-user {
            color: var(--brand-accent);
            font-weight: 600;
        }
        .win-game {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .win-amount {
            color: var(--brand-primary);
            font-weight: 700;
        }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .provider-block {
            background: var(--bg-tertiary);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .review-list {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 12px;
            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-text {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 8px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-muted);
        }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            background: var(--bg-secondary);
            border-radius: 10px;
            margin-bottom: 10px;
            border: 1px solid var(--border-default);
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
        }
        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        .responsible-gaming {
            padding: 30px 15px;
            text-align: center;
            background: var(--bg-tertiary);
            margin-top: 30px;
        }
        .responsible-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--brand-primary);
        }
        .responsible-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 8px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-secondary);
            flex: 1;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
        }
        .nav-item span {
            font-size: 11px;
        }
        .nav-item:nth-child(3) {
            margin-top: -20px;
        }
        .nav-item:nth-child(3) .nav-circle {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 5px;
            color: var(--bg-primary);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        footer {
            padding: 40px 15px 100px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-default);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }