* { 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; }
        
        header { background: #1a1d24; padding: 10px 15px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #f3ba2f; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; border: 1px solid #f3ba2f; color: #f3ba2f; }
        .btn-register { background: linear-gradient(180deg, #f3ba2f 0%, #d49a00 100%); color: #000; }
        .btn:active { transform: scale(0.95); }

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

        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; color: #f3ba2f; }
        .section-title i { color: #f3ba2f; }

        .jackpot-card { background: linear-gradient(135deg, #2c1a4d 0%, #1a1d24 100%); border: 1px solid #4a3475; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; }
        .jackpot-label { font-size: 14px; color: #b9abb9; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #f3ba2f; text-shadow: 0 0 10px rgba(243, 186, 47, 0.5); margin: 5px 0; font-family: monospace; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .intro-card { background: #1e222a; border-radius: 15px; padding: 20px; margin: 25px 0; border-left: 4px solid #f3ba2f; }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: #f3ba2f; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #adb5bd; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #2d323d; }
        .guide-item i { color: #f3ba2f; font-size: 20px; margin-top: 3px; }
        .guide-text h4 { font-size: 15px; margin-bottom: 4px; color: #eee; }
        .guide-text p { font-size: 13px; color: #888; }

        .winners-list { background: #1a1d24; border-radius: 15px; padding: 10px; max-height: 300px; overflow-y: auto; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #f3ba2f; }
        .winner-amount { color: #4caf50; font-weight: bold; }

        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; margin: 20px 0; background: rgba(243, 186, 47, 0.05); border-radius: 15px; }
        .pro-item { text-align: center; }
        .pro-item i { font-size: 24px; color: #f3ba2f; margin-bottom: 8px; }
        .pro-item span { display: block; font-size: 11px; color: #adb5bd; }

        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: #1e222a; padding: 15px; border-radius: 12px; position: relative; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-avatar { width: 35px; height: 35px; background: #343a40; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f3ba2f; }
        .user-name { font-size: 14px; font-weight: 600; }
        .rating { color: #ffc107; font-size: 12px; margin-bottom: 8px; }
        .comment-text { font-size: 13px; color: #adb5bd; font-style: italic; }

        .faq-section { margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #f3ba2f; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #adb5bd; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2d323d; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #f3ba2f; }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines, .comments-grid { grid-template-columns: repeat(2, 1fr); }
        }