body {
            background-color: #0F111A;
            color: #FFFFFF;
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            margin: 0;
        }
        h1 { font-size: 32px; color: #D4AF37; margin-bottom: 15px; text-align: center; }
        h2 { font-size: 24px; color: #D4AF37; margin: 25px 0 15px; text-align: center; }
        h3 { font-size: 16px; color: #FFFFFF; text-align: center; padding: 10px 5px; }
        p { color: #B0B0B0; font-size: 14px; margin-bottom: 20px; text-align: justify; }
        header {
            background: #161B26;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #D4AF37;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
        }
        .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        .btn-register { background: #D4AF37; color: #0F111A; }
        .btn-register:hover { background: #F2D06B; }
        main { padding: 0 15px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            display: block;
            margin: 15px 0;
            border-radius: 12px;
            object-fit: cover;
            cursor: pointer;
        }
        .jackpot-container {
            background: #1F2633;
            border: 2px solid #D4AF37;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 14px; color: #FFD700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #FFFFFF; font-family: 'Roboto Mono', monospace; }
        .platform-intro { text-align: center; margin: 30px 0; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: #161B26;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2D3748;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .article-list { margin: 30px 0; }
        .article-card {
            background: #161B26;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #2D3748;
        }
        .article-card img { width: 100%; height: 180px; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { text-align: left; padding: 0; margin-bottom: 10px; color: #D4AF37; }
        .article-content p { margin-bottom: 0; font-size: 13px; }
        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
            text-align: center;
        }
        .payment-item {
            background: #1F2633;
            padding: 15px 5px;
            border-radius: 8px;
            font-size: 10px;
            color: #B0B0B0;
        }
        .payment-item i { font-size: 20px; color: #D4AF37; margin-bottom: 5px; display: block; }
        .winning-records {
            background: #161B26;
            border-radius: 12px;
            padding: 15px;
            margin: 30px 0;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .winning-scroll {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #2D3748;
            font-size: 13px;
        }
        .win-name { color: #FFFFFF; font-weight: 600; }
        .win-amount { color: #00E676; font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .provider-block {
            background: #1F2633;
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: #D4AF37;
            border: 1px solid #2D3748;
        }
        .reviews-section { margin: 30px 0; }
        .review-card {
            background: #161B26;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid #D4AF37;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #B0B0B0; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { margin: 30px 0; }
        .faq-item {
            background: #1F2633;
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h3 { text-align: left; color: #D4AF37; padding: 0 0 10px 0; border-bottom: 1px solid #2D3748; margin-bottom: 10px; }
        .security-section {
            background: #161B26;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
        }
        .security-icons { font-size: 30px; margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; color: #D4AF37; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 2px solid #FF5252; color: #FF5252; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }
        footer {
            background: #0F111A;
            padding: 20px 15px 100px;
            text-align: center;
            border-top: 1px solid #2D3748;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-links a { color: #B0B0B0; text-decoration: none; font-size: 13px; }
        .copyright { color: #6B7280; font-size: 12px; margin-top: 20px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #161B26;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #D4AF37;
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: #B0B0B0; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active i, .nav-item:active span { color: #D4AF37; }