:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --gray: #a0a0a0;
            --cta-grad: linear-gradient(90deg, #FF6B35, #FF2E63);
        }
        body {
            background-color: var(--bg-dark);
            color: var(--white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-card);
            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: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--gold);
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn-login, .btn-register {
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
        }
        .btn-login {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }
        .btn-register {
            background: var(--cta-grad);
            color: var(--white);
        }
        .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, #2c3e50, #000000);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label {
            color: var(--gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px var(--gold);
        }
        .intro-card {
            background-color: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--gold);
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--gold);
            margin-top: 0;
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 0;
        }
        .section-title {
            padding: 0 15px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 18px;
            border-left: 3px solid var(--gold);
            padding-left: 10px;
            margin: 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: var(--white);
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-image-wrap {
            aspect-ratio: 1/1;
            width: 100%;
            background-color: #333;
        }
        .game-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: var(--gray);
        }
        .trust-section {
            background-color: var(--bg-card);
            margin: 20px 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
        }
        .payment-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        .payment-icons i {
            font-size: 24px;
            color: var(--gray);
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .guideline-item {
            background: #1e222a;
            padding: 15px;
            border-radius: 8px;
            border-top: 2px solid var(--gold);
        }
        .guideline-item h2 {
            font-size: 16px;
            color: var(--gold);
            margin-top: 0;
        }
        .marquee-container {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }
        .marquee-content {
            display: flex;
            gap: 30px;
            animation: marquee 40s linear infinite;
            white-space: nowrap;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .winner-tag {
            font-size: 12px;
            color: #4caf50;
        }
        .providers-wall {
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-badge {
            background: var(--bg-card);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid #3d4451;
        }
        .reviews-container {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .review-stars {
            color: var(--gold);
            font-size: 12px;
        }
        .faq-container {
            padding: 0 15px;
        }
        .faq-item {
            background: var(--bg-card);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: var(--gold);
            margin-top: 0;
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--gray);
            margin: 0;
        }
        .security-section {
            margin: 25px 15px;
            padding: 20px;
            background: #101217;
            border-radius: 12px;
            text-align: center;
            font-size: 12px;
            color: var(--gray);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--gray);
            text-align: center;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .nav-item i {
            font-size: 18px;
        }
        .nav-item:nth-child(3) i {
            color: var(--gold);
            font-size: 24px;
            margin-top: -10px;
        }
        footer {
            background: #0d0f13;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 25px;
        }
        .footer-contact a {
            color: var(--gray);
            margin: 0 10px;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 11px;
            color: #555;
        }