* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0a0a0a; color: #ffffff; font-family: 'Montserrat', 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { position: sticky; top: 0; z-index: 1000; background-color: #141414; border-bottom: 1px solid #333333; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #ffffff; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        header .btn-login { background-color: transparent; color: #ffd700; border: 1px solid #ffd700; }
        header .btn-register { background-color: #ffd700; color: #000000; }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid rgba(255, 215, 0, 0.2); text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
        .jackpot-title { color: #ffd700; font-family: 'Oswald', sans-serif; font-size: 1.25rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { color: #ff3e3e; font-size: 2.5rem; font-weight: 800; font-family: 'Roboto Mono', monospace; text-shadow: 0 0 10px rgba(255, 62, 62, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: #141414; border-radius: 12px; border-left: 4px solid #ffd700; }
        .intro-card h1 { font-size: 1.5rem; color: #ffd700; margin-bottom: 10px; font-family: 'Oswald', sans-serif; }
        .intro-card p { color: #b3b3b3; font-size: 0.95rem; }
        .section-title { margin: 25px 15px 15px; font-size: 1.25rem; font-family: 'Oswald', sans-serif; display: flex; align-items: center; gap: 10px; color: #ffd700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1f1f1f; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #333333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.85rem; color: #ffffff; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: #262626; padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid #333333; }
        .payment-item i { font-size: 1.5rem; color: #ffd700; margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 0.65rem; color: #b3b3b3; display: block; }
        .guide-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #141414; padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 1.1rem; color: #ffd700; margin-bottom: 10px; }
        .guide-item p { font-size: 0.875rem; color: #b3b3b3; }
        .winners-list { margin: 15px; background: #141414; border-radius: 12px; padding: 10px; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #333333; font-size: 0.85rem; }
        .winner-row:last-child { border-bottom: none; }
        .winner-user { color: #ffd700; font-weight: 600; }
        .winner-amount { color: #00e676; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: linear-gradient(45deg, #1f1f1f, #262626); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; color: #ffd700; border: 1px solid #333333; }
        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #1f1f1f; padding: 15px; border-radius: 12px; border: 1px solid #333333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #262626; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffd700; }
        .review-user { font-weight: 600; font-size: 0.9rem; }
        .review-stars { color: #ffd700; font-size: 0.75rem; }
        .review-text { font-size: 0.85rem; color: #b3b3b3; font-style: italic; }
        .faq-container { padding: 0 15px; }
        .faq-item { background: #141414; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #ffd700; border-bottom: 1px solid #333333; cursor: pointer; font-size: 0.95rem; }
        .faq-answer { padding: 15px; font-size: 0.875rem; color: #b3b3b3; background: #1a1a1a; }
        .security-section { margin: 20px 15px; padding: 20px; background: #141414; border-radius: 12px; text-align: center; border: 1px dashed #ffd700; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: #ffd700; }
        .security-text { font-size: 0.8rem; color: #b3b3b3; margin-bottom: 10px; }
        .security-links a { color: #ffd700; text-decoration: none; margin: 0 5px; font-size: 0.75rem; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #141414; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333333; z-index: 1001; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: #b3b3b3; font-size: 0.7rem; gap: 5px; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item.active, .nav-item:hover { color: #ffd700; }
        footer { background: #0a0a0a; padding: 40px 15px 100px; border-top: 1px solid #333333; }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        footer .contact-link { color: #ffd700; text-decoration: none; font-size: 0.9rem; border: 1px solid #ffd700; padding: 5px 15px; border-radius: 15px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .links-grid a { color: #b3b3b3; text-decoration: none; font-size: 0.8rem; }
        footer .copyright { text-align: center; font-size: 0.75rem; color: #757575; line-height: 1.6; }