:root {
            --primary-bg: #1a1d24;
            --secondary-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --text-white: #ffffff;
            --text-gray: #b0b3b8;
            --card-radius: 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;
        }
        header {
            background-color: var(--secondary-bg);
            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;
            border-radius: 5px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--text-gray);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
        }
        .btn-register {
            background: var(--cta-gradient);
            color: var(--text-white);
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: radial-gradient(circle, #3a3f4b 0%, #1a1d24 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--card-radius);
            text-align: center;
            border: 1px solid var(--accent-gold);
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
            font-weight: bold;
        }
        #jackpot-amount {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            margin: 15px;
            padding: 20px;
            background-color: var(--secondary-bg);
            border-radius: var(--card-radius);
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .section-title {
            margin: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--accent-gold);
            display: inline-block;
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
            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: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }
        .game-info span {
            font-size: 11px;
            color: var(--text-gray);
        }
        .payment-methods {
            background: var(--secondary-bg);
            margin: 20px 15px;
            padding: 15px;
            border-radius: var(--card-radius);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .payment-methods i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .pautas-section {
            padding: 0 15px;
        }
        .pauta-item {
            background: var(--secondary-bg);
            margin-bottom: 15px;
            padding: 15px;
            border-radius: var(--card-radius);
        }
        .pauta-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .pauta-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .marquee-container {
            background: #000;
            padding: 10px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll-left 40s linear infinite;
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-record {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 20px;
            font-size: 13px;
        }
        .win-record span {
            color: var(--accent-gold);
        }
        .providers-wall {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: var(--secondary-bg);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            border: 1px solid #3a3f4b;
        }
        .reviews-container {
            padding: 0 15px;
        }
        .review-card {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: var(--card-radius);
            margin-bottom: 12px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .review-user-info h3 {
            font-size: 14px;
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-gray);
        }
        .faq-section {
            padding: 0 15px;
        }
        .faq-item {
            background: var(--secondary-bg);
            margin-bottom: 10px;
            border-radius: var(--card-radius);
            padding: 15px;
        }
        .faq-item h2 {
            font-size: 15px;
            color: var(--text-white);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .responsible-gaming {
            background: #111;
            margin: 20px 15px;
            padding: 20px;
            border-radius: var(--card-radius);
            text-align: center;
        }
        .responsible-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            font-size: 20px;
            color: var(--text-gray);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #3a3f4b;
            z-index: 1001;
        }
        .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 {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .footer-contact a {
            color: var(--text-gray);
            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;
        }
        .copyright {
            font-size: 11px;
            color: var(--text-gray);
            border-top: 1px solid #252a34;
            padding-top: 15px;
        }