body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; }
        header { position: sticky; top: 0; z-index: 1000; background-color: #1a1d24; border-bottom: 1px solid #2d323e; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; }
        .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: #ffcc00; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; border: none; font-weight: 600; text-decoration: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; border: 1px solid #ffcc00; color: #ffcc00; }
        .btn-register { background: linear-gradient(180deg, #ffcc00 0%, #d48806 100%); color: #000; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .announcement { background-color: #1e222b; padding: 8px 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #2d323e; }
        .announcement i { color: #ffcc00; }
        .scrolling-wrapper { overflow: hidden; white-space: nowrap; width: 100%; }
        .scrolling-text { display: inline-block; padding-left: 100%; animation: scroll-left 20s linear infinite; font-size: 13px; color: #cccccc; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; font-size: 18px; color: #ffcc00; display: flex; align-items: center; gap: 8px; font-weight: bold; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; margin: 0; font-size: 13px; color: #ffffff; text-align: center; font-weight: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .intro-card { margin: 20px 15px; padding: 20px; background: linear-gradient(145deg, #1a1d24 0%, #252932 100%); border-radius: 15px; border-left: 4px solid #ffcc00; }
        .intro-card h1 { margin: 0 0 10px 0; font-size: 20px; line-height: 1.3; color: #ffcc00; }
        .intro-card p { margin: 0; font-size: 14px; color: #abb1bc; text-align: justify; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 15px; gap: 10px; }
        .badge-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; text-align: center; }
        .badge-item i { font-size: 24px; color: #ffcc00; margin-bottom: 5px; }
        .winning-board { margin: 20px 15px; background-color: #1a1d24; border-radius: 12px; padding: 10px; }
        .winning-header { border-bottom: 1px solid #2d323e; padding-bottom: 8px; margin-bottom: 10px; font-size: 15px; color: #ffcc00; font-weight: bold; }
        .winning-list { height: 200px; overflow-y: auto; scrollbar-width: none; }
        .winning-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; border-bottom: 1px dashed #2d323e; }
        .winning-item span.user { color: #888; }
        .winning-item span.amount { color: #4caf50; font-weight: bold; }
        .payment-methods { padding: 15px; text-align: center; border-top: 1px solid #2d323e; border-bottom: 1px solid #2d323e; margin: 20px 0; }
        .payment-icons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
        .payment-icons i { font-size: 28px; color: #abb1bc; }
        .reviews-section { padding: 0 15px; }
        .review-card { background-color: #1e222b; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: #ffcc00; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-text { font-size: 13px; color: #abb1bc; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 20px; }
        .faq-item { background-color: #1a1d24; border-radius: 8px; margin-bottom: 10px; padding: 15px; }
        .faq-question { font-weight: bold; font-size: 15px; color: #ffcc00; margin-bottom: 8px; display: block; }
        .faq-answer { font-size: 14px; color: #abb1bc; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #ffcc00; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #abb1bc; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #ffcc00; }
        footer { padding: 30px 15px 100px; background-color: #0a0c10; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-row a { color: #abb1bc; text-decoration: none; font-size: 13px; }
        .footer-row a:hover { color: #ffcc00; }
        .footer-contact i { margin-right: 5px; }
        .copyright { font-size: 12px; color: #555; margin-top: 15px; }