* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #12141a; 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 #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%); color: #fff; }
        .btn-login:active, .btn-register:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { margin: 20px 15px; background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #FFD700; }
        .intro-card { margin: 20px 15px; padding: 20px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { margin: 25px 15px 15px; font-size: 18px; border-left: 4px solid #FF2E63; padding-left: 10px; display: flex; align-items: center; justify-content: space-between; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }
        .payment-methods { background: #12141a; padding: 25px 15px; margin-top: 25px; text-align: center; }
        .methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.7; }
        .methods-grid i { font-size: 30px; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .guide-item { background: #252932; padding: 20px; border-radius: 12px; border-bottom: 2px solid #333; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #bbb; }
        .winners-marquee { background: #12141a; padding: 15px 0; margin: 25px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 20px; animation: scroll 40s linear infinite; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: #252932; padding: 8px 15px; border-radius: 20px; font-size: 12px; border: 1px solid #444; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 20px 15px; background: #12141a; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #555; }
        .provider-name { background: #252932; padding: 5px 12px; border-radius: 4px; border: 1px solid #333; font-size: 13px; color: #aaa; }
        .comments-section { padding: 0 15px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .user-meta { flex-grow: 1; }
        .user-name { font-size: 14px; font-weight: bold; display: block; }
        .stars { color: #FFD700; font-size: 10px; }
        .comment-date { font-size: 11px; color: #777; }
        .comment-text { font-size: 13px; color: #ccc; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { margin-bottom: 15px; background: #12141a; border-radius: 10px; padding: 15px; border: 1px solid #333; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-section { margin: 30px 15px; padding: 20px; background: #12141a; border-radius: 15px; text-align: center; border: 1px dashed #FF2E63; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #12141a; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0c0e12; padding: 40px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact a { font-size: 13px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 12px; border-radius: 15px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 12px; color: #777; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }