body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #1a1d24;
            color: #ffffff;
            line-height: 1.6;
        }
        header {
            background-color: #121418;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .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;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #FFD700;
        }
        .btn-register {
            background: linear-gradient(90deg, #FF6B35, #FF2E63);
            color: #ffffff;
        }
        main {
            padding-bottom: 80px;
            max-width: 800px;
            margin: 0 auto;
        }
        .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: radial-gradient(circle, #2a2e38 0%, #121418 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #FFD700;
        }
        .jackpot-label {
            color: #FFD700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        #jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .platform-intro {
            padding: 20px;
            margin: 15px;
            background: #242830;
            border-radius: 15px;
            text-align: center;
        }
        .platform-intro h1 {
            font-size: 22px;
            color: #FFD700;
            margin-bottom: 15px;
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 20px;
            border-left: 4px solid #FFD700;
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 15px;
        }
        .game-card {
            background: #242830;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            margin: 0;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: #888;
            margin-top: 4px;
        }
        .payment-licensing {
            padding: 20px;
            background: #121418;
            margin: 15px;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .payment-licensing i {
            font-size: 30px;
            color: #FFD700;
        }
        .guidelines {
            padding: 15px;
        }
        .guideline-item {
            background: #242830;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .guideline-item h3 {
            color: #FFD700;
            margin-top: 0;
        }
        .marquee-container {
            background: #121418;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-record {
            display: inline-block;
            padding: 10px 20px;
            background: #242830;
            border-radius: 30px;
            margin-right: 15px;
            font-size: 13px;
        }
        .win-amount {
            color: #4CAF50;
            font-weight: bold;
        }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 15px;
            justify-content: center;
        }
        .provider-tag {
            background: #323742;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            color: #FFD700;
        }
        .reviews {
            padding: 15px;
        }
        .review-card {
            background: #242830;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: #888;
        }
        .stars {
            color: #FFD700;
            font-size: 12px;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #242830;
            padding: 15px;
            border-radius: 12px;
        }
        .faq-item h3 {
            color: #FFD700;
            font-size: 16px;
            margin-top: 0;
        }
        .security-section {
            padding: 20px;
            margin: 15px;
            background: #121418;
            border-radius: 15px;
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .security-icons i {
            font-size: 24px;
            color: #4CAF50;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #121418;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #323742;
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: #888;
            font-size: 11px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
        }
        .nav-item:active {
            color: #FFD700;
        }
        footer {
            background: #0d0f12;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-contacts a {
            color: #FFD700;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            border-top: 1px solid #242830;
            padding-top: 20px;
        }