:root {
            --bg-color: #0f1218;
            --card-bg: #1a1d24;
            --primary-gold: #ffd700;
            --secondary-gold: #c5a021;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --accent-red: #ff4d4d;
            --rounded: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 80px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: rgba(26, 29, 36, 0.95);
            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 #2a2e38;
        }
        .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: 8px; }
        .btn {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--primary-gold); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold)); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(45deg, #1a1d24, #2c1f1f);
            margin: 15px;
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .section-header { padding: 15px 15px 5px; display: flex; align-items: center; gap: 8px; }
        .section-header h2 { font-size: 18px; color: var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--card-bg); border-radius: var(--rounded); overflow: hidden; position: relative; border: 1px solid #2a2e38; }
        .game-card img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { margin: 15px; padding: 20px; background: var(--card-bg); border-radius: var(--rounded); border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; color: var(--primary-gold); }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #22262e; padding: 15px; border-radius: var(--rounded); display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--primary-gold); font-size: 18px; margin-top: 3px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-content p { font-size: 13px; color: var(--text-dim); }
        .winner-ticker { margin: 15px; background: #000; border-radius: var(--rounded); padding: 10px; height: 200px; overflow-y: hidden; position: relative; }
        .winner-list { animation: scrollList 30s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #1a1d24; font-size: 12px; }
        .winner-name { color: var(--text-dim); }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 20px 15px; background: #15181f; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; opacity: 0.7; }
        .pro-elements i { font-size: 30px; }
        .comments { padding: 15px; display: grid; gap: 15px; }
        .comment-box { background: var(--card-bg); padding: 15px; border-radius: var(--rounded); border: 1px solid #2a2e38; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; background: #3a3f4b; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .comment-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .rating { color: var(--primary-gold); font-size: 10px; }
        .faq-section { padding: 15px; background: #15181f; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2a2e38; padding-bottom: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-dim); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1d24;
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2a2e38;
            z-index: 1001;
            padding-bottom: 5px;
        }
        .nav-item { text-align: center; color: var(--text-dim); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: var(--primary-gold); }
        footer { padding: 30px 15px 100px; background: #0a0c10; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 10px; }
        .footer-links a { color: var(--text-dim); font-size: 13px; }
        .footer-copy { font-size: 12px; color: #555; }