* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #1a1d24; 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 #2c313a; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: #f3ba2f; border: 1px solid #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d49a17 100%); color: #000; }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2c313a; }
        .announcement i { color: #f3ba2f; }
        .marquee-box { overflow: hidden; white-space: nowrap; flex: 1; }
        .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%); } }
        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 18px; color: #f3ba2f; text-transform: uppercase; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2c313a; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .intro-card { margin: 20px 15px; background: linear-gradient(145deg, #1e222b, #15181f); padding: 20px; border-radius: 15px; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b8c1; text-align: justify; }
        .winning-list { margin: 0 15px; background: #1a1d24; border-radius: 12px; padding: 15px; height: 200px; overflow-y: auto; border: 1px solid #2c313a; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2c313a; font-size: 13px; }
        .winning-item span:first-child { color: #f3ba2f; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; background: #1a1d24; margin: 20px 0; }
        .trust-item { text-align: center; font-size: 12px; color: #888; }
        .trust-item i { display: block; font-size: 24px; color: #f3ba2f; margin-bottom: 5px; }
        .reviews-section { padding: 0 15px; margin: 20px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 10px; border: 1px solid #2c313a; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .reviewer-name { font-weight: bold; font-size: 14px; color: #f3ba2f; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; color: #b0b8c1; font-style: italic; }
        .faq-section { padding: 0 15px; margin: 20px 0; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2c313a; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b8c1; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2c313a; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-weight: 500; }
        .nav-item:nth-child(3) { position: relative; top: -15px; background: #f3ba2f; width: 55px; height: 55px; border-radius: 50%; color: #000; border: 5px solid #0f1216; justify-content: center; }
        .nav-item:nth-child(3) i { font-size: 24px; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2c313a; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #888; transition: color 0.3s; }
        .footer-links a:hover { color: #f3ba2f; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { font-size: 20px; color: #f3ba2f; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #1a1d24; padding-top: 20px; }