body {
            background-color: #1a1d24;
            color: #ffffff;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            line-height: 1.6;
        }
        header {
            background-color: #13151a;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a2e38;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login {
            background: transparent;
            color: #ffffff;
            border: 1px solid #FFD700;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-register {
            background: linear-gradient(45deg, #FF6B35, #FF2E63);
            color: #ffffff;
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(255, 46, 99, 0.3);
        }
        main {
            padding-bottom: 80px;
        }
        .banner-container {
            width: 100%;
            cursor: pointer;
            line-height: 0;
        }
        .banner-container img {
            width: 100%;
            height: auto;
            aspect-ratio: 2/1;
            object-fit: cover;
        }
        .jackpot-section {
            background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%);
            text-align: center;
            padding: 20px;
            margin: 15px;
            border-radius: 15px;
            border: 1px solid #FFD700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title {
            color: #FFD700;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .intro-card {
            background: #252932;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .intro-card h1 {
            font-size: 20px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: #b1b5c0;
        }
        .section-title {
            margin: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #FFD700;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: #252932;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #ffffff;
        }
        .game-info span {
            font-size: 11px;
            color: #888e9b;
        }
        .trust-section {
            background: #13151a;
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        .payment-icons i {
            font-size: 24px;
            color: #b1b5c0;
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 15px;
        }
        .guide-card {
            background: #252932;
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid #FFD700;
        }
        .guide-card h2 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #FFD700;
        }
        .marquee-container {
            background: #13151a;
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            background: #252932;
            margin: 0 10px;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            gap: 10px;
        }
        .winner-amount {
            color: #4caf50;
            font-weight: bold;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            color: #888e9b;
            font-size: 14px;
        }
        .provider-tag {
            background: #252932;
            padding: 5px 12px;
            border-radius: 5px;
        }
        .review-card {
            background: #252932;
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: #FFD700;
        }
        .stars {
            color: #FFD700;
            font-size: 12px;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: #252932;
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h2 {
            font-size: 15px;
            color: #FFD700;
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 13px;
            color: #b1b5c0;
        }
        .security-section {
            text-align: center;
            padding: 20px;
            background: #13151a;
            margin: 15px;
            border-radius: 15px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #13151a;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2a2e38;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: #888e9b;
            text-align: center;
            font-size: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .nav-item i {
            font-size: 20px;
        }
        footer {
            background: #0d0f12;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        .footer-social a {
            color: #ffffff;
            font-size: 18px;
            text-decoration: none;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #888e9b;
            text-decoration: none;
            font-size: 12px;
        }
        .footer-copy {
            font-size: 11px;
            color: #555;
            border-top: 1px solid #222;
            padding-top: 15px;
        }