* { 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; }
        header { background: #1a1d24; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #d4af37; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-title { font-size: 14px; color: #d4af37; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: 'Courier New', monospace; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 8px; color: #d4af37; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .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; display: block; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #22262f; }
        .intro-card { background: #1a1d24; margin: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid #d4af37; }
        .intro-card h1 { font-size: 18px; margin-bottom: 10px; color: #d4af37; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1a1d24; padding: 12px; border-radius: 10px; display: flex; align-items: center; gap: 12px; border: 1px solid #2d323d; }
        .guide-item i { font-size: 20px; color: #d4af37; width: 30px; text-align: center; }
        .winners-list { background: #1a1d24; margin: 15px; border-radius: 15px; padding: 10px; max-height: 300px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #d4af37; }
        .winner-amount { color: #4caf50; font-weight: bold; }
        .pro-elements { padding: 15px; display: flex; justify-content: space-around; background: #22262f; margin: 15px 0; }
        .pro-item { text-align: center; font-size: 12px; color: #b0b3b8; }
        .pro-item i { font-size: 24px; color: #d4af37; display: block; margin-bottom: 5px; }
        .comments-section { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2d323d; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-avatar { width: 35px; height: 35px; border-radius: 50%; background: #2d323d; display: flex; align-items: center; justify-content: center; color: #d4af37; }
        .comment-rating { color: #ffc107; font-size: 12px; }
        .comment-text { font-size: 13px; color: #e0e0e0; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #1a1d24; border-radius: 10px; padding: 15px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 15px; color: #d4af37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #b0b3b8; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #b0b3b8; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { font-size: 13px; color: #b0b3b8; transition: 0.3s; }
        .footer-row a:hover { color: #d4af37; }
        .footer-copy { font-size: 12px; color: #666; margin-top: 10px; }