:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #1A1A1A;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1E1E1E;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
            --font-secondary: 'Roboto', 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.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: cover; }
        header strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-primary);
            font-weight: 600;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            text-align: center;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 100px; }
        .banner-container { width: 100%; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            border-radius: 15px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .reward-section {
            background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            border: 1px solid var(--border-subtle);
        }
        .reward-section h2 { color: var(--primary); margin-bottom: 15px; font-size: 28px; }
        .reward-section p { color: var(--text-secondary); margin-bottom: 20px; font-size: 18px; }
        .btn-large {
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            font-size: 20px;
            border-radius: 50px;
            display: inline-block;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }

        .section-title {
            font-size: 24px;
            color: var(--primary);
            margin: 40px 0 20px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            text-align: center; 
            color: var(--text-primary); 
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { color: var(--primary); font-size: 20px; }

        .guidelines {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border-bottom: 3px solid var(--primary);
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: var(--primary); }
        .review-user span { font-weight: bold; }
        .review-stars { color: #ffcc00; margin-bottom: 10px; font-size: 14px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; font-style: italic; }
        .review-date { color: var(--text-muted); font-size: 12px; text-align: right; }

        .lottery-list {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .lottery-item {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
            text-align: center;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-header { font-weight: bold; color: var(--primary); border-bottom: 2px solid var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-item {
            background: linear-gradient(45deg, var(--bg-surface), #2a2a2a);
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-highlight);
        }

        .faq-section {
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px 20px;
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 20px 15px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .safety-box {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .safety-icon i { font-size: 30px; color: var(--primary); margin-bottom: 10px; display: block; }
        .safety-icon span { font-size: 12px; color: var(--text-secondary); }
        .age-notice { color: var(--error); font-weight: bold; margin-top: 15px; display: block; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 13px; }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
        }