* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1116; color: #e0e0e0; line-height: 1.6; padding-bottom: 70px; }
        header { background: #1a1d24; 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 #2d323d; }
        .logo-area { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffca28; border: 1px solid #ffca28; }
        .btn-register { background: linear-gradient(135deg, #ffca28, #ff8f00); color: #000; }
        main { padding: 10px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(45deg, #2d0b0b, #6b1414); border: 2px solid #ffca28; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #ffca28; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,202,40,0.6); margin: 5px 0; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; display: block; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 25px; margin-bottom: 25px; border-left: 4px solid #ffca28; }
        .intro-card h1 { font-size: 20px; color: #ffca28; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b0b0; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: #ffca28; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; display: flex; gap: 15px; align-items: flex-start; }
        .guide-icon { width: 40px; height: 40px; background: rgba(255,202,40,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffca28; flex-shrink: 0; }
        .guide-text h3 { font-size: 15px; margin-bottom: 5px; color: #fff; }
        .guide-text p { font-size: 13px; color: #a0a0a0; }
        .winner-list { background: #1a1d24; border-radius: 12px; height: 300px; overflow-y: auto; padding: 10px; margin-bottom: 25px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-user { color: #ffca28; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { background: #0a0c10; border-radius: 12px; padding: 20px; margin-bottom: 25px; text-align: center; }
        .trust-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 15px; opacity: 0.7; }
        .trust-icons i { font-size: 30px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #ffca28; }
        .stars { color: #ffca28; font-size: 12px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1a1d24; border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2d323d; }
        .faq-a { padding: 15px; font-size: 13px; color: #b0b0b0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { text-decoration: none; color: #a0a0a0; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffca28; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #808080; text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #606060; }
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-thumb { background: #2d323d; border-radius: 10px; }