:root {
            --primary-bg: #1a1d24;
            --secondary-bg: #252a34;
            --accent-gold: #d4af37;
            --text-white: #ffffff;
            --text-grey: #b0b3b8;
            --card-bg: #2c323d;
            --btn-gold: linear-gradient(180deg, #f9e394 0%, #d4af37 100%);
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--primary-bg); color: var(--text-white); line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: var(--secondary-bg); height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
        .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(--accent-gold); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
        .btn-register { background: var(--btn-gold); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title { font-size: 18px; color: var(--accent-gold); margin: 20px 15px 10px; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--accent-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card span { display: block; padding: 8px; text-align: center; font-size: 13px; font-weight: 500; color: var(--text-grey); background: rgba(0,0,0,0.3); }
        .jackpot-box { margin: 20px 15px; background: radial-gradient(circle, #3a4252 0%, #1a1d24 100%); border: 2px solid var(--accent-gold); border-radius: 15px; padding: 20px; text-align: center; }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.8); font-family: 'Courier New', monospace; }
        .intro-card { background: var(--secondary-bg); margin: 20px 15px; padding: 20px; border-radius: 15px; border-bottom: 3px solid var(--accent-gold); }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: var(--accent-gold); }
        .intro-card p { font-size: 14px; color: var(--text-grey); }
        .guidelines { padding: 0 15px; display: grid; gap: 10px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 10px; border-left: 3px solid var(--accent-gold); }
        .guide-item h3 { font-size: 15px; margin-bottom: 5px; color: var(--text-white); }
        .guide-item p { font-size: 13px; color: var(--text-grey); }
        .winning-list { height: 250px; overflow: hidden; margin: 10px 15px; background: var(--secondary-bg); border-radius: 15px; padding: 10px; border: 1px solid #3a4252; }
        .win-track { animation: scrollWin 40s linear infinite; }
        @keyframes scrollWin { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #3a4252; font-size: 13px; }
        .win-user { color: var(--accent-gold); }
        .win-amount { color: #4caf50; font-weight: bold; }
        .trust-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 15px; text-align: center; }
        .trust-item i { font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .trust-item span { display: block; font-size: 11px; text-transform: uppercase; }
        .comments { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 15px; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { font-size: 20px; color: var(--accent-gold); }
        .comment-name { font-weight: bold; font-size: 14px; }
        .comment-stars { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-grey); font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; background: var(--secondary-bg); border-radius: 10px; overflow: hidden; }
        .faq-q { padding: 12px 15px; font-weight: 600; font-size: 14px; background: #2c323d; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 15px; font-size: 13px; color: var(--text-grey); border-top: 1px solid #3a4252; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--accent-gold); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-grey); font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--accent-gold); }
        footer { background: #111; padding: 30px 15px 90px; text-align: center; border-top: 1px solid #333; }
        .footer-row { margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-link { font-size: 13px; color: var(--text-grey); transition: color 0.2s; }
        .footer-link:hover { color: var(--accent-gold); }
        .copyright { font-size: 12px; color: #666; margin-top: 20px; }