* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0f1216; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        header { background: linear-gradient(180deg, #1e222b 0%, #13161c 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.5); border-bottom: 1px solid #d4af3733; }
        .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: #d4af37; letter-spacing: 0.5px; }
        .auth-btns { display: flex; gap: 8px; }
        .btn { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f0d07a 0%, #d4af37 100%); color: #1a1d24; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; margin-bottom: 10px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 15px; border-bottom: 1px solid #2a2e38; }
        .announcement i { color: #d4af37; font-size: 14px; }
        .marquee-box { overflow: hidden; white-space: nowrap; flex: 1; position: relative; }
        .marquee-text { display: inline-block; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .container { padding: 0 12px; }
        .section-title { font-size: 18px; margin: 20px 0 12px; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 0; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1e222b 0%, #13161c 100%); padding: 20px; border-radius: 15px; border: 1px solid #d4af3733; margin: 25px 0; }
        .intro-card h1 { font-size: 20px; color: #d4af37; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; text-align: justify; }
        .trust-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 25px 0; text-align: center; }
        .trust-item i { font-size: 24px; color: #d4af37; margin-bottom: 5px; }
        .trust-item span { font-size: 10px; display: block; color: #888; text-transform: uppercase; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winning-item span:first-child { color: #aaa; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .review-card { background: #1e222b; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 4px solid #d4af37; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer-name { font-weight: 600; color: #d4af37; font-size: 14px; }
        .stars { color: #f0d07a; font-size: 12px; }
        .review-text { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2a2e38; padding-bottom: 10px; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #aaa; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0f1216; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #1a1d24; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { font-size: 13px; color: #888; transition: color 0.2s; }
        .footer-row a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; line-height: 1.6; }