* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #ffffff; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #f1f1f1; 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; transition: 0.3s; border: none; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: linear-gradient(180deg, #f3d078 0%, #d4af37 100%); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a0a0a 0%, #1a1d24 100%); padding: 20px; border-radius: 15px; margin: 15px; border: 1px solid #442222; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
        .jackpot-title { color: #d4af37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #d4af37; font-family: 'Courier New', monospace; }
        .section-header { padding: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #f3d078; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px 20px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .platform-intro { margin: 15px; padding: 20px; background: #1a1d24; border-radius: 15px; border-left: 4px solid #d4af37; }
        .platform-intro h1 { font-size: 20px; color: #f3d078; margin-bottom: 10px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #999; text-align: justify; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 10px; }
        .guide-item { background: #1e222a; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 20px; color: #d4af37; width: 30px; }
        .guide-text h4 { font-size: 15px; margin-bottom: 4px; }
        .guide-text p { font-size: 13px; color: #888; }
        .winners-list { margin: 15px; background: #1a1d24; border-radius: 15px; height: 250px; overflow: hidden; position: relative; }
        .winners-track { animation: scrollWinners 40s linear infinite; }
        @keyframes scrollWinners { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .winner-item { padding: 12px 15px; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .winner-user { font-size: 14px; color: #ddd; }
        .winner-amount { font-size: 14px; color: #4caf50; font-weight: bold; }
        .casino-badges { display: flex; justify-content: center; gap: 20px; padding: 20px; flex-wrap: wrap; opacity: 0.6; }
        .casino-badges i { font-size: 24px; }
        .comments { padding: 15px; }
        .comment-card { background: #1e222a; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2d323d; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px; }
        .comment-name { font-size: 14px; color: #f3d078; }
        .stars { color: #ffc107; font-size: 12px; }
        .comment-content { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #f3d078; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #999; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; border-top: 1px solid #333; display: flex; justify-content: space-around; padding: 10px 0; 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: 20px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #0a0c10; padding: 30px 15px 20px; text-align: center; border-top: 1px solid #222; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 13px; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .footer-social a { color: #d4af37; font-size: 20px; }
        .copyright { font-size: 12px; color: #555; }