:root {
            --primary-bg: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-white: #ffffff;
            --text-gray: #a0a7b5;
            --rounded: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #11141a;
            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: var(--accent-gold);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: opacity 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--text-gray);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: var(--text-white);
        }
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 10px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: var(--rounded);
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: #000;
            border: 2px solid var(--accent-gold);
            border-radius: var(--rounded);
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px var(--accent-gold);
            font-family: monospace;
        }
        .intro-card {
            background: var(--card-bg);
            padding: 20px;
            border-radius: var(--rounded);
            margin-bottom: 20px;
            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 {
            font-size: 18px;
            margin: 20px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #FF2E63;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: var(--rounded);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            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;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }
        .game-info span {
            font-size: 11px;
            color: var(--text-gray);
        }
        .payments-licenses {
            background: var(--card-bg);
            padding: 20px;
            border-radius: var(--rounded);
            margin-bottom: 25px;
            text-align: center;
        }
        .icons-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        .icons-flex i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .guidelines {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .guide-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--rounded);
        }
        .guide-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .guide-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .winners-marquee {
            background: #11141a;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
            margin-bottom: 25px;
            border-radius: var(--rounded);
        }
        .marquee-content {
            display: flex;
            gap: 20px;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winner-tag {
            background: var(--card-bg);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 12px;
            border: 1px solid #3a3f4b;
        }
        .winner-tag span {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .providers-wall {
            background: var(--card-bg);
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
            margin-bottom: 25px;
            color: var(--text-gray);
            font-weight: bold;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            font-size: 14px;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--rounded);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--accent-gold);
        }
        .review-meta h3 {
            font-size: 14px;
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-gray);
        }
        .faq-section {
            margin-bottom: 25px;
        }
        .faq-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--rounded);
            margin-bottom: 10px;
        }
        .faq-item h2 {
            font-size: 15px;
            margin-bottom: 8px;
            color: var(--accent-gold);
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .security-section {
            background: #11141a;
            padding: 20px;
            border-radius: var(--rounded);
            text-align: center;
            margin-bottom: 25px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            font-size: 20px;
            color: var(--accent-gold);
        }
        .age-limit {
            display: inline-block;
            border: 2px solid #ff0000;
            color: #ff0000;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #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: 11px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        footer {
            background: #0d0f13;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 20px;
        }
        .footer-contact a {
            color: var(--text-gray);
            text-decoration: none;
            margin: 0 10px;
            font-size: 13px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 12px;
        }
        .copyright {
            font-size: 11px;
            color: #555;
            border-top: 1px solid #222;
            padding-top: 20px;
        }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: 1fr 1fr 1fr; }
            .guidelines, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }