* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
        header { background-color: #1A1A1A; border-bottom: 1px solid #333333; position: sticky; top: 0; z-index: 1000; padding: 12px 16px; }
        header .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        header .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #FFD700; }
        header .btn-register { background: linear-gradient(180deg, #FFD700 0%, #C5A059 100%); color: #0A0A0A; }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%); margin: 20px 16px; padding: 20px; border-radius: 16px; border: 1px solid #333333; text-align: center; }
        .jackpot-label { color: #FFD700; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Orbitron', sans-serif; font-size: 32px; color: #FFEA00; text-shadow: 0 0 15px rgba(255, 234, 0, 0.5); }
        .intro-card { margin: 20px 16px; padding: 24px; background-color: #1A1A1A; border-radius: 16px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: #B3B3B3; font-size: 16px; }
        .section-title { padding: 0 16px; margin: 24px 0 16px; font-family: 'Montserrat', sans-serif; font-size: 20px; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background-color: #1A1A1A; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #222222; transition: 0.3s; }
        .game-card:hover { border-color: #FFD700; }
        .game-image-wrapper { width: 100%; aspect-ratio: 1/1; position: relative; }
        .game-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license-section { background-color: #1A1A1A; margin: 24px 16px; padding: 20px; border-radius: 16px; }
        .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; color: #B3B3B3; }
        .icon-item i { font-size: 24px; color: #FFD700; }
        .guide-section { padding: 0 16px; margin-top: 30px; }
        .guide-card { background-color: #1A1A1A; padding: 20px; border-radius: 16px; margin-bottom: 16px; }
        .guide-card h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: #B3B3B3; text-align: justify; }
        .winner-section { margin: 24px 16px; background-color: #1A1A1A; border-radius: 16px; padding: 15px; border: 1px solid #333333; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #262626; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: #FFD700; font-weight: 600; }
        .winner-amount { color: #00E676; font-family: 'Orbitron', sans-serif; }
        .provider-section { padding: 0 16px; margin: 24px 0; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-item { background-color: #262626; padding: 15px; text-align: center; border-radius: 8px; color: #FFFFFF; font-weight: 600; font-size: 14px; border: 1px solid #333333; }
        .comment-section { padding: 0 16px; }
        .comment-card { background-color: #1A1A1A; padding: 20px; border-radius: 16px; margin-bottom: 15px; border: 1px solid #222222; }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #808080; }
        .comment-user { font-weight: 600; font-size: 14px; }
        .comment-stars { color: #FFEA00; font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: #B3B3B3; font-style: italic; }
        .comment-date { font-size: 11px; color: #808080; margin-top: 10px; }
        .faq-section { padding: 0 16px; margin: 30px 0; }
        .faq-item { background-color: #1A1A1A; border-radius: 12px; padding: 15px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B3B3B3; }
        .security-section { margin: 24px 16px; padding: 20px; background: #1A1A1A; border-radius: 16px; border: 1px dashed #333333; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #FFD700; font-size: 20px; }
        .security-text { font-size: 12px; color: #808080; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #1A1A1A; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333333; z-index: 1001; }
        .nav-item { text-decoration: none; color: #B3B3B3; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) i { color: #FFD700; font-size: 26px; margin-top: -10px; }
        footer { background-color: #0A0A0A; padding: 40px 16px 100px; color: #B3B3B3; border-top: 1px solid #333333; }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        footer .contact-row a { color: #FFD700; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; }
        footer .link-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        footer .link-columns a { color: #B3B3B3; text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        footer .copyright { text-align: center; font-size: 12px; border-top: 1px solid #222222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .icon-grid { grid-template-columns: repeat(8, 1fr); }
        }