:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%);
            --text-white: #ffffff;
            --text-gray: #b0b3b8;
            --rounded: 12px;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: #11141a;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--text-white);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-white);
            border: 1px solid var(--text-gray);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: white;
        }
        main {
            padding-bottom: 80px;
        }
        .banner {
            width: 100%;
            cursor: pointer;
            display: block;
        }
        .banner img {
            width: 100%;
            height: auto;
            aspect-ratio: 2 / 1;
            object-fit: cover;
        }
        .jackpot-container {
            background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
            border: 2px solid var(--accent-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--accent-gold);
        }
        .intro-card {
            background-color: var(--bg-card);
            margin: 15px;
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .section-title {
            padding: 0 15px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 18px;
            border-left: 4px solid var(--accent-gold);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--bg-card);
            border-radius: var(--rounded);
            overflow: hidden;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.98);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 14px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-info p {
            font-size: 12px;
            color: var(--text-gray);
            margin: 4px 0 0;
        }
        .payment-licensing {
            margin: 20px 15px;
            padding: 20px;
            background-color: #111;
            border-radius: var(--rounded);
            text-align: center;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            align-items: center;
            margin-top: 15px;
        }
        .payment-grid i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .content-blocks {
            padding: 0 15px;
        }
        .block-card {
            background-color: var(--bg-card);
            padding: 15px;
            border-radius: var(--rounded);
            margin-bottom: 15px;
        }
        .block-card h2 {
            font-size: 18px;
            color: var(--accent-gold);
            margin-top: 0;
        }
        .winner-marquee {
            background-color: #000;
            padding: 10px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-track {
            display: inline-block;
            animation: scroll-left 30s linear infinite;
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #222;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 10px;
            font-size: 13px;
        }
        .winner-item span {
            color: var(--accent-gold);
        }
        @keyframes scroll-left {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .providers-wall {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background-color: #333;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 13px;
            color: var(--text-gray);
        }
        .reviews-section {
            padding: 0 15px;
        }
        .review-card {
            background: #1e222a;
            padding: 15px;
            border-radius: var(--rounded);
            margin-bottom: 15px;
            border: 1px solid #333;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--text-gray);
        }
        .review-user-info h3 {
            font-size: 14px;
            margin: 0;
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-gray);
        }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: #252a34;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            color: var(--accent-gold);
            border-bottom: 1px solid #333;
        }
        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-gray);
        }
        .security-section {
            padding: 20px 15px;
            text-align: center;
            background-color: #0f1115;
            margin-top: 20px;
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--accent-gold);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #11141a;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 2px;
        }
        footer {
            background-color: #000;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-contacts a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-copyright {
            font-size: 12px;
            color: #555;
            border-top: 1px solid #222;
            padding-top: 20px;
        }