:root {
            --primary-bg: #050505;
            --secondary-bg: #121212;
            --surface: #1E1E1E;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #FFD700;
            --brand-secondary: #D4AF37;
            --action: #FF0000;
            --action-hover: #CC0000;
            --luxury-gold: #CFB53B;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --brand-contrast: #000000;
            --border-default: #333333;
            --border-active: #FFD700;
            --font-main: 'Hind Siliguri', sans-serif;
            --font-secondary: 'Noto Sans Bengali', sans-serif;
            --font-display: 'Galada', cursive;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
        }

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

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

        .logo {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .platform-name {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
            font-family: var(--font-display);
        }

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

        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

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

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

        .btn-register:hover {
            background-color: var(--brand-secondary);
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
        }

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

        .jackpot-container {
            background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--luxury-gold);
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

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

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

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

        h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }

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

        .section-title {
            padding: 10px 15px;
            font-size: 20px;
            border-left: 4px solid var(--brand-primary);
            margin: 20px 0 15px 15px;
        }

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

        .game-card {
            background-color: var(--surface);
            border-radius: 12px;
            overflow: hidden;
            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-info {
            padding: 10px;
            text-align: center;
        }

        .game-info h3 {
            font-size: 14px;
            color: var(--text-primary);
        }

        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-card {
            display: flex;
            gap: 12px;
            background-color: var(--surface);
            padding: 10px;
            border-radius: 10px;
        }

        .article-img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .article-body h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--brand-primary);
        }

        .article-body p {
            font-size: 13px;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-section {
            padding: 20px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            background-color: var(--secondary-bg);
            margin: 20px 0;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

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

        .lottery-wrapper {
            background-color: var(--surface);
            margin: 15px;
            border-radius: 15px;
            height: 200px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-default);
        }

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

        .winner-name { color: var(--brand-primary); font-weight: 600; }
        .win-amount { color: var(--luxury-gold); font-weight: 700; }

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

        .provider-block {
            background-color: var(--surface);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

        .review-section {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .review-card {
            background-color: var(--surface);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--brand-primary);
        }

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

        .user-icon {
            font-size: 30px;
            color: var(--text-muted);
        }

        .stars { color: #FFBB33; font-size: 14px; }

        .faq-section { padding: 15px; }

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

        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--brand-primary);
            cursor: pointer;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .security-section {
            padding: 30px 15px;
            text-align: center;
            background-color: var(--secondary-bg);
            margin-top: 20px;
        }

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

        .security-text {
            font-size: 12px;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

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

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

        .nav-item.active { color: var(--brand-primary); }

        footer {
            background-color: var(--primary-bg);
            padding: 40px 15px 100px;
            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 {
            font-size: 14px;
            color: var(--text-muted);
        }

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

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