:root {
            --primary-gold: #f3c158;
            --dark-bg: #0f1218;
            --card-bg: #1a1d24;
            --text-light: #e0e0e0;
            --text-dim: #a0a0a0;
            --accent-green: #2ecc71;
            --btn-grad: linear-gradient(135deg, #f3c158 0%, #d4a017 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 15px; }
        header {
            background-color: var(--card-bg);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-reg { background: var(--btn-grad); color: #000; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-box {
            background: radial-gradient(circle, #2c3e50 0%, #000 100%);
            margin: 15px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #444;
        }
        .jackpot-title { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(243, 193, 88, 0.5); }
        .section-title { font-size: 18px; margin: 20px 0 15px; padding-left: 10px; border-left: 4px solid var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; }
        .intro-card { background: var(--card-bg); padding: 20px; border-radius: 15px; margin: 20px 0; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 20px; }
        .guide-item { background: #252830; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { color: var(--primary-gold); font-size: 20px; }
        .winning-ticker { background: #111; border-radius: 10px; padding: 10px; height: 200px; overflow-y: auto; font-size: 12px; border: 1px solid #222; }
        .win-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #222; }
        .win-user { color: var(--text-light); }
        .win-amount { color: var(--accent-green); font-weight: bold; }
        .casino-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .feature-box { padding: 15px 5px; background: var(--card-bg); border-radius: 10px; font-size: 11px; }
        .feature-box i { font-size: 24px; color: var(--primary-gold); margin-bottom: 8px; display: block; }
        .comment-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary-gold); }
        .comment-user { font-weight: 600; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .comment-stars { color: #f1c40f; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: 600; cursor: pointer; border-bottom: 1px solid #333; color: var(--primary-gold); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-dim); background: #1e2229; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-dim); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; color: var(--text-dim); }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { color: var(--text-light); }
        .copyright { margin-top: 20px; font-size: 12px; }