* { box-sizing: border-box; margin: 0; padding: 0; }
        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; }
        header { background: linear-gradient(180deg, #1e222d 0%, #131720 100%); padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e3a; 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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #f0b90b; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #f0b90b; }
        .btn-register { background: linear-gradient(180deg, #f0b90b 0%, #d2a108 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; display: block; }
        .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 #2a2e3a; }
        .announcement i { color: #f0b90b; }
        .marquee { white-space: nowrap; overflow: hidden; position: relative; flex: 1; font-size: 12px; color: #ced4da; }
        .marquee span { display: inline-block; padding-left: 100%; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; color: #f0b90b; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f0b90b; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e222d; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e3a; transition: transform 0.3s; }
        .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: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: linear-gradient(145deg, #1e222d 0%, #131720 100%); padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #2a2e3a; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
        .intro-card h1 { font-size: 18px; color: #f0b90b; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #ced4da; text-align: justify; }
        .winning-list { background: #161a21; border-radius: 12px; padding: 10px; height: 300px; overflow-y: auto; border: 1px solid #2a2e3a; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #2a2e3a; font-size: 12px; }
        .winner-name { color: #f0b90b; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .review-card { background: #1e222d; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2a2e3a; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { color: #f0b90b; font-size: 12px; }
        .review-author { font-weight: 600; font-size: 14px; }
        .review-content { font-size: 13px; color: #adb5bd; font-style: italic; }
        .faq-section { margin-top: 25px; }
        .faq-item { background: #1e222d; border-radius: 8px; padding: 15px; margin-bottom: 10px; border-left: 3px solid #f0b90b; }
        .faq-question { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: #f0b90b; }
        .faq-answer { font-size: 14px; color: #ced4da; }
        .trust-badges { display: flex; justify-content: space-around; padding: 20px 0; opacity: 0.7; }
        .trust-badges i { font-size: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; padding: 8px 0; border-top: 1px solid #2a2e3a; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #adb5bd; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f0b90b; }
        footer { background: #131720; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e3a; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { font-size: 13px; color: #adb5bd; transition: color 0.3s; }
        .footer-links a:hover { color: #f0b90b; }
        .copyright { font-size: 12px; color: #6c757d; margin-top: 15px; }