* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; border-radius: 8px; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .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: #ffc107; letter-spacing: 0.5px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffc107; }
        .btn-register { background: linear-gradient(135deg, #ffc107, #ff9800); color: #000000; }
        .banner { margin: 15px auto; overflow: hidden; border-radius: 12px; cursor: pointer; aspect-ratio: 2/1; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(45deg, #2c1a05, #1a1d24); border: 2px solid #ffc107; border-radius: 15px; padding: 20px; text-align: center; margin: 20px 0; box-shadow: 0 0 20px rgba(255, 193, 7, 0.2); }
        .jackpot-title { font-size: 14px; color: #ffc107; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; margin: 5px 0; font-family: monospace; }
        .section-header { display: flex; align-items: center; gap: 10px; margin: 25px 0 15px; }
        .section-header i { color: #ffc107; font-size: 18px; }
        .section-header h2 { font-size: 18px; font-weight: 600; border-left: 3px solid #ffc107; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1e232b; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2d323d; }
        .game-card:hover { transform: translateY(-5px); border-color: #ffc107; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 25px; margin: 30px 0; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 20px; color: #ffc107; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #b0b8c1; line-height: 1.8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-item { background: #1e232b; padding: 15px; border-radius: 12px; border-left: 4px solid #ffc107; }
        .guide-item h3 { font-size: 16px; margin-bottom: 8px; color: #ffc107; }
        .guide-item p { font-size: 14px; color: #b0b8c1; }
        .winners-scroll { background: #1a1d24; border-radius: 12px; height: 200px; overflow-y: auto; padding: 10px; border: 1px solid #2d323d; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-row span:last-child { color: #4caf50; font-weight: bold; }
        .trust-elements { display: flex; justify-content: space-around; padding: 30px 0; flex-wrap: wrap; gap: 20px; }
        .trust-item { text-align: center; width: 30%; }
        .trust-item i { font-size: 24px; color: #ffc107; margin-bottom: 10px; }
        .trust-item p { font-size: 12px; color: #b0b8c1; }
        .comments-section { margin: 30px 0; }
        .comment-card { background: #252a33; border-radius: 12px; padding: 15px; margin-bottom: 15px; border-top: 2px solid #ffc107; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 30px; color: #b0b8c1; }
        .comment-user span { font-weight: 600; font-size: 14px; }
        .comment-text { font-size: 14px; font-style: italic; color: #d1d5db; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; padding: 15px; margin-bottom: 12px; }
        .faq-item h3 { font-size: 15px; color: #ffc107; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #b0b8c1; }
        .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 { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #b0b8c1; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffc107; }
        footer { background: #0a0c10; padding: 40px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-links a { font-size: 13px; color: #b0b8c1; }
        .copyright { font-size: 12px; color: #6b7280; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }