* { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: #0D0D0D;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFFFFF; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        header {
            background: #1A1A1A;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2C2C2C;
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: #D4AF37; }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        header .btn-register { background: #D4AF37; color: #000000; }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: #161616;
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #D4AF37;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: #B3B3B3; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            color: #FFD700;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 24px; color: #D4AF37; margin-bottom: 15px; }
        .platform-intro p { color: #B3B3B3; font-size: 14px; line-height: 1.6; }

        .section-title { padding: 20px 15px 10px; font-size: 20px; border-left: 4px solid #D4AF37; margin-left: 15px; margin-top: 20px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: #161616;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #2C2C2C;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-methods {
            background: #161616;
            padding: 20px 15px;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: #D4AF37; margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: #B3B3B3; }

        .guides-section { padding: 15px; }
        .guide-card { background: #1F1F1F; padding: 15px; border-radius: 8px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: #D4AF37; }
        .guide-card p { font-size: 14px; color: #B3B3B3; }

        .lottery-marquee {
            background: #161616;
            margin: 20px 15px;
            padding: 10px;
            border-radius: 8px;
            height: 150px;
            overflow: hidden;
            position: relative;
        }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        .lottery-item { font-size: 12px; padding: 5px 0; border-bottom: 1px solid #2C2C2C; display: flex; justify-content: space-between; }
        .lottery-item span:last-child { color: #28A745; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-wall { padding: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-box { background: #222222; padding: 15px; text-align: center; border-radius: 6px; font-weight: 600; color: #D4AF37; border-bottom: 2px solid #D4AF37; }

        .comment-section { padding: 15px; }
        .comment-card { background: #161616; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #D4AF37; }
        .user-info h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666666; margin-top: 5px; }

        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #161616; padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 16px; color: #D4AF37; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B3B3B3; text-align: justify; }

        .security-section { padding: 20px 15px; text-align: center; background: #1F1F1F; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #D4AF37; font-size: 24px; }
        .security-text { font-size: 13px; color: #B3B3B3; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: #1A1A1A;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #D4AF37;
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #B3B3B3; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:hover { color: #D4AF37; }

        footer {
            background: #0D0D0D;
            padding: 30px 15px 100px;
            border-top: 1px solid #2C2C2C;
            text-align: center;
        }
        footer .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        footer .social-links a { font-size: 14px; color: #D4AF37; }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        footer .footer-links a { font-size: 13px; color: #B3B3B3; padding: 5px; }
        footer .copyright { font-size: 12px; color: #666666; border-top: 1px solid #2C2C2C; padding-top: 15px; }