* { 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; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323e; }
        .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 { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d49a17 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #f3ba2f; border-bottom: 1px solid #2d323e; }
        .announcement i { font-size: 16px; }
        .marquee { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee p { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #f3ba2f; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323e; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; font-weight: 500; background: #1a1d24; }
        .intro-card { background: linear-gradient(145deg, #1e232b, #13161b); padding: 20px; border-radius: 15px; border: 1px solid #2d323e; margin: 25px 0; }
        .intro-card h1 { font-size: 20px; color: #f3ba2f; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b8c1; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; text-align: center; }
        .feature-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; border: 1px solid #2d323e; }
        .feature-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; display: block; }
        .feature-item span { font-size: 11px; color: #ffffff; }
        .winning-list { background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: hidden; position: relative; border: 1px solid #2d323e; }
        .winning-track { animation: winScroll 30s linear infinite; }
        @keyframes winScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .win-user { color: #f3ba2f; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .trust-badges { display: flex; justify-content: space-around; align-items: center; padding: 20px 0; opacity: 0.7; }
        .trust-badges i { font-size: 30px; }
        .reviews-section { margin: 25px 0; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-name { font-weight: bold; color: #f3ba2f; font-size: 14px; }
        .review-stars { color: #f3ba2f; font-size: 12px; }
        .review-text { font-size: 13px; color: #b0b8c1; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 10px; border: 1px solid #2d323e; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #f3ba2f; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #b0b8c1; line-height: 1.5; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323e; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-align: center; color: #b0b8c1; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #f3ba2f; }
        footer { background: #0f1216; padding: 30px 15px; text-align: center; border-top: 1px solid #2d323e; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #b0b8c1; font-size: 13px; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 20px; color: #f3ba2f; }
        .copyright { font-size: 12px; color: #666; }