* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .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%; height: 100%; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffd700; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #ffd700; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-register { background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%); color: #000; border: none; padding: 7px 18px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; transition: 0.3s; }
        .banner-section { width: 100%; cursor: pointer; display: block; overflow: hidden; }
        .banner-section img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle, #2d323d 0%, #1a1d24 100%); margin: 20px 0; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #ffd70044; position: relative; }
        .jackpot-title { font-size: 14px; color: #ffd700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #ffffff; text-shadow: 0 0 10px #ffd700; font-family: 'Courier New', monospace; }
        .section-title { font-size: 20px; margin: 25px 0 15px; padding-left: 10px; border-left: 4px solid #ffd700; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #242932; }
        .intro-card { background: #1a1d24; border-radius: 15px; padding: 20px; margin: 25px 0; border: 1px solid #2d323d; }
        .intro-card h1 { font-size: 18px; color: #ffd700; margin-bottom: 12px; line-height: 1.4; }
        .intro-card p { font-size: 14px; color: #a0a0a0; text-align: justify; }
        .trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .badge-item { background: #1a1d24; padding: 15px 5px; border-radius: 10px; text-align: center; font-size: 10px; border: 1px solid #2d323d; }
        .badge-item i { font-size: 20px; color: #ffd700; margin-bottom: 8px; display: block; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; border: 1px solid #2d323d; }
        .guide-icon { width: 40px; height: 40px; background: #2d323d; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffd700; flex-shrink: 0; }
        .guide-text h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 12px; color: #a0a0a0; }
        .winning-ticker { background: #1a1d24; border-radius: 15px; padding: 15px; margin: 25px 0; border: 1px solid #2d323d; max-height: 300px; overflow: hidden; position: relative; }
        .winning-scroll { animation: ticker-scroll 40s linear infinite; }
        @keyframes ticker-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2d323d; font-size: 13px; }
        .win-user { color: #ffd700; }
        .win-amount { color: #4caf50; font-weight: bold; }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .comment-card { background: #242932; padding: 15px; border-radius: 12px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #4a4e5a; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .comment-name { font-size: 14px; font-weight: bold; }
        .comment-rating { color: #ffd700; font-size: 12px; }
        .comment-body { font-size: 13px; color: #cfcfcf; font-style: italic; }
        .faq-section { margin: 25px 0; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; border: 1px solid #2d323d; padding: 15px; }
        .faq-question { font-weight: bold; color: #ffd700; margin-bottom: 10px; font-size: 15px; display: block; }
        .faq-answer { font-size: 14px; color: #a0a0a0; text-align: justify; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8e94a0; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c0f; padding: 40px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #a0a0a0; font-size: 14px; transition: 0.3s; }
        .footer-links a:hover { color: #ffd700; }
        .copyright { color: #666; font-size: 12px; border-top: 1px solid #2d323d; padding-top: 20px; margin-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            .comments-section { grid-template-columns: 1fr 1fr; }
        }