* { 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; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffd700; border: 1px solid #ffd700; }
        .btn-reg { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); color: #000; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec { margin: 20px 15px; background: radial-gradient(circle, #2c3e50 0%, #000000 100%); border: 2px solid #ffd700; border-radius: 15px; padding: 20px; text-align: center; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 15px #ffd700; font-family: 'Courier New', monospace; }
        .section-title { margin: 25px 15px 15px; display: flex; align-items: center; gap: 10px; font-size: 18px; color: #ffd700; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: transform 0.3s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: rgba(0,0,0,0.6); position: absolute; bottom: 0; width: 100%; }
        .intro-card { margin: 20px 15px; background: #1a1d24; border-radius: 15px; padding: 20px; border-top: 3px solid #ffd700; }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: #ffd700; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .trust-icons { display: flex; justify-content: space-around; padding: 20px 15px; flex-wrap: wrap; gap: 15px; opacity: 0.8; }
        .trust-item { text-align: center; font-size: 12px; width: 20%; }
        .trust-item i { font-size: 24px; color: #ffd700; margin-bottom: 5px; }
        .guidelines { margin: 20px 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .guide-item { background: #242832; padding: 15px; border-radius: 10px; font-size: 13px; display: flex; flex-direction: column; gap: 5px; border: 1px solid #333; }
        .guide-item i { color: #ffd700; font-size: 18px; }
        .winning-sec { margin: 20px 15px; background: #1a1d24; border-radius: 15px; height: 250px; overflow: hidden; padding: 15px; }
        .winner-list { animation: scrollList 30s linear infinite; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2f3a; font-size: 13px; }
        .winner-name { color: #fff; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .comments-sec { padding: 0 15px; margin-bottom: 20px; }
        .comment-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #ffd700; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 30px; height: 30px; background: #3d4452; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .user-meta { font-size: 12px; }
        .stars { color: #ffd700; font-size: 10px; }
        .comment-text { font-size: 13px; font-style: italic; color: #bbb; }
        .faq-sec { margin: 20px 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid #333; color: #ffd700; }
        .faq-a { padding: 15px; font-size: 13px; color: #ccc; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #222; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; font-size: 13px; }
        .footer-link { color: #888; transition: color 0.3s; }
        .footer-link:hover { color: #ffd700; }
        .copyright { font-size: 12px; color: #555; margin-top: 10px; }
        .provider-strip { display: flex; overflow-x: auto; gap: 20px; padding: 15px; opacity: 0.5; align-items: center; }
        .provider-strip i { font-size: 30px; flex-shrink: 0; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: repeat(4, 1fr); }
        }