* { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: #0F0F0F;
            color: #FFFFFF;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background: #1A1A1A;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #FFD700;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; font-family: 'Oswald', sans-serif; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: #C0C0C0; color: #000; }
        .btn-register { background: #FFD700; color: #000; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(180deg, #1A1A1A 0%, #000000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #FFD700;
            text-align: center;
        }
        .jackpot-title { color: #FFD700; font-family: 'Oswald', sans-serif; font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: #FDB813;
            text-shadow: 0 0 10px rgba(253, 184, 19, 0.5);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .intro-card { background: #1A1A1A; margin: 15px; padding: 20px; border-radius: 15px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #B0B0B0; }
        .section-title { margin: 20px 15px 10px; font-size: 18px; color: #FFFFFF; border-left: 4px solid #FFD700; padding-left: 10px; font-family: 'Oswald', sans-serif; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #262626; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background: #1A1A1A; padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: #B0B0B0; }
        .payment-item i { font-size: 24px; color: #FFD700; margin-bottom: 5px; display: block; }
        .guide-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: #1A1A1A; padding: 15px; border-radius: 12px; border-left: 3px solid #B8860B; }
        .guide-card h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: #B0B0B0; text-align: justify; }
        .lottery-section { background: #1A1A1A; margin: 15px; border-radius: 15px; padding: 10px; max-height: 300px; overflow-y: auto; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #333; font-size: 12px; }
        .lottery-user { color: #FFD700; font-weight: 600; }
        .lottery-win { color: #00C853; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: linear-gradient(90deg, #B8860B, #FFD700); color: #000; padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; }
        .review-grid { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: #262626; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #C0C0C0; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 5px; }
        .review-content { font-size: 13px; color: #B0B0B0; font-style: italic; }
        .review-date { font-size: 11px; color: #666; margin-top: 8px; display: block; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1A1A1A; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 13px; color: #B0B0B0; text-align: justify; }
        .security-section { margin: 15px; padding: 20px; background: #1A1A1A; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #FFD700; }
        .security-text { font-size: 12px; color: #666; margin-bottom: 10px; }
        .security-links a { color: #FF4500; text-decoration: none; font-size: 12px; margin: 0 5px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #1A1A1A;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: #B0B0B0; font-size: 12px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; color: #FFD700; }
        footer { background: #000000; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #333; }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: #FFFFFF; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #B0B0B0; text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { font-size: 12px; color: #666; border-top: 1px solid #222; padding-top: 20px; }