* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.5; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        .section-padding { padding: 15px; }
        .card-rounded { background: #1e2228; border-radius: 12px; overflow: hidden; margin-bottom: 15px; border: 1px solid #2d323a; }
        
        header { height: 60px; background: #1a1d24; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #cca352; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #f1f1f1; letter-spacing: 0.5px; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; font-size: 14px; border: 1px solid #cca352; color: #cca352; }
        .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; background: linear-gradient(135deg, #cca352, #e5c07b); color: #000; font-weight: bold; }

        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .announcement { background: #1a1d24; height: 35px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid #2d323a; }
        .announcement i { color: #cca352; margin-right: 10px; }
        .ticker { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #adb5bd; }
        .ticker span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 15px; }
        .game-card { position: relative; border-radius: 10px; overflow: hidden; background: #252a31; transition: transform 0.2s; border-bottom: 3px solid #cca352; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-title { padding: 8px; font-size: 12px; text-align: center; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(0,0,0,0.6); }

        .intro-card { padding: 20px; border-left: 4px solid #cca352; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #cca352; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ced4da; }

        .winning-list { padding: 0 15px; }
        .winning-item { display: flex; align-items: center; padding: 10px; border-bottom: 1px solid #2d323a; font-size: 13px; gap: 10px; }
        .winning-item span:first-child { color: #cca352; font-weight: bold; }
        .winning-item span:nth-child(2) { flex: 1; color: #adb5bd; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }

        .trust-badges { display: flex; justify-content: space-around; padding: 15px 0; background: #161a20; margin: 15px 0; border-top: 1px solid #2d323a; border-bottom: 1px solid #2d323a; }
        .badge-item { text-align: center; font-size: 11px; color: #adb5bd; }
        .badge-item i { font-size: 24px; color: #cca352; display: block; margin-bottom: 5px; }

        .review-card { padding: 15px; border-bottom: 1px solid #2d323a; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 5px; }
        .review-name { font-weight: bold; font-size: 14px; color: #e5c07b; }
        .review-stars { color: #f39c12; font-size: 12px; }
        .review-text { font-size: 13px; color: #ced4da; font-style: italic; }

        .faq-container { margin-top: 20px; }
        .faq-item { margin-bottom: 15px; background: #1e2228; border-radius: 8px; padding: 15px; }
        .faq-question { font-weight: bold; color: #cca352; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-answer { font-size: 14px; color: #adb5bd; line-height: 1.6; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323a; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #adb5bd; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #cca352; }

        footer { padding: 30px 15px 100px; background: #0b0d10; text-align: center; font-size: 13px; color: #6c757d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #adb5bd; }
        .footer-social { margin-bottom: 20px; display: flex; justify-content: center; gap: 20px; font-size: 20px; }
        .copyright { margin-top: 20px; font-size: 12px; border-top: 1px solid #2d323a; padding-top: 15px; }

        h2.section-title { font-size: 16px; margin: 10px 0; border-left: 3px solid #cca352; padding-left: 10px; color: #f1f1f1; }