* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background: #121418; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2e35; }
        .logo-container { display: flex; align-items: center; gap: 8px; }
        .logo-container img { width: 25px; height: 25px; object-fit: contain; }
        .logo-container strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { padding: 20px; margin: 15px; background: #242830; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 1.4rem; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 0.95rem; color: #cccccc; }
        .section-title { padding: 15px 15px 5px; font-size: 1.2rem; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #242830; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.9rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 0.75rem; color: #888; }
        .trust-section { background: #121418; padding: 25px 15px; margin: 20px 0; text-align: center; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .trust-icons i { font-size: 24px; color: #ffffff; }
        .guidelines { padding: 15px; display: grid; gap: 15px; }
        .guide-item { background: #242830; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 1.1rem; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 0.9rem; color: #bbbbbb; }
        .winners-marquee { background: #121418; padding: 15px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 20px; animation: scroll 40s linear infinite; width: max-content; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: #2a2e35; padding: 8px 15px; border-radius: 20px; font-size: 0.85rem; border: 1px solid #3d424d; white-space: nowrap; }
        .winner-tag span { color: #FFD700; font-weight: bold; }
        .providers-wall { padding: 20px; background: #1a1d24; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-name { background: #242830; padding: 5px 15px; border-radius: 4px; font-size: 0.8rem; color: #888; border: 1px solid #2a2e35; }
        .reviews { padding: 15px; display: grid; gap: 15px; }
        .review-card { background: #242830; padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-user { font-weight: bold; font-size: 0.95rem; }
        .stars { color: #FFD700; font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: #666; position: absolute; top: 20px; right: 20px; }
        .review-content { font-size: 0.9rem; color: #cccccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #242830; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; border-bottom: 1px solid #1a1d24; font-size: 0.95rem; }
        .faq-answer { padding: 15px; font-size: 0.9rem; color: #bbbbbb; }
        .security-footer { text-align: center; padding: 30px 15px; background: #121418; margin-top: 20px; }
        .security-badges { font-size: 2rem; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #FFD700; }
        .security-text { font-size: 0.85rem; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #FFD700; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 24px; }
        footer { background: #0c0e11; padding: 40px 20px; border-top: 1px solid #2a2e35; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; font-size: 0.85rem; color: #888; }
        .copyright { text-align: center; font-size: 0.8rem; color: #666; border-top: 1px solid #2a2e35; padding-top: 20px; }