* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; 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: #1a1d24; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #f3d078; }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f3d078; color: #f3d078; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }

        .banner { width: 100%; display: block; margin-bottom: 20px; border-radius: 12px; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }

        .jackpot-section { background: #1a1d24; border: 1px solid #333; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .jackpot-title { color: #f3d078; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(243,208,120,0.5); font-family: 'Courier New', monospace; }

        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #f3d078; }
        .section-title i { font-size: 20px; }
        
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; 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: 10px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; border-left: 4px solid #f3d078; margin-bottom: 25px; }
        .intro-card h1 { font-size: 18px; line-height: 1.4; margin-bottom: 10px; color: #f3d078; }
        .intro-card p { font-size: 14px; color: #ccc; }

        .professional-row { display: flex; justify-content: space-around; background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 25px; border: 1px solid #333; }
        .pro-item { text-align: center; font-size: 11px; color: #aaa; }
        .pro-item i { font-size: 24px; color: #f3d078; display: block; margin-bottom: 5px; }

        .guidelines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; font-size: 13px; display: flex; align-items: center; gap: 10px; border: 1px solid #333; }
        .guide-item i { color: #f3d078; }

        .winners-box { background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #333; margin-bottom: 25px; height: 250px; overflow: hidden; position: relative; }
        .winner-list { animation: scrollList 30s linear infinite; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e35; font-size: 13px; }
        .winner-name { color: #ccc; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .comments-section { margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #333; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-meta { font-weight: 600; font-size: 14px; color: #f3d078; }
        .rating { color: #ffc107; font-size: 12px; }
        .comment-body { font-size: 13px; color: #bbb; font-style: italic; }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #333; }
        .faq-item h3 { font-size: 15px; color: #f3d078; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #aaa; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item.active { color: #f3d078; }

        footer { background: #0b0d11; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #888; transition: 0.3s; }
        .footer-links a:hover { color: #f3d078; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .brand-footer { margin-bottom: 20px; opacity: 0.6; }