:root {
            --bg-dark: #1a1d24;
            --card-bg: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --gray: #a0a0a0;
            --cta-gradient: linear-gradient(90deg, #FF6B35, #FF2E63);
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-dark);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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(--gold);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            border: none;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }
        .btn-register {
            background: var(--cta-gradient);
            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: #000;
            margin: 15px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--gold);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label {
            color: var(--gold);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 5px var(--gold);
        }
        .platform-intro {
            padding: 20px;
            background: var(--card-bg);
            margin: 15px;
            border-radius: 15px;
            border-left: 4px solid var(--gold);
        }
        .platform-intro h1 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--gold);
        }
        .platform-intro p {
            font-size: 14px;
            color: var(--gray);
        }
        .section-title {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .section-title h2 {
            font-size: 18px;
            border-left: 3px solid #FF2E63;
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--white);
            box-shadow: var(--shadow);
        }
        .game-image {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: var(--gray);
        }
        .payment-licensing {
            margin: 20px 15px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            text-align: center;
        }
        .icon-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            font-size: 24px;
            color: var(--gray);
            margin-top: 10px;
        }
        .pautas-section {
            padding: 20px 15px;
        }
        .pauta-card {
            background: var(--card-bg);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
        }
        .pauta-card h3 {
            color: var(--gold);
            margin-bottom: 8px;
            font-size: 16px;
        }
        .pauta-card p {
            font-size: 13px;
            color: var(--gray);
        }
        .winners-marquee {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 15px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1a1d24;
            padding: 5px 15px;
            margin: 0 10px;
            border-radius: 20px;
            border: 1px solid #333;
            font-size: 12px;
        }
        .winner-amount {
            color: #4caf50;
            font-weight: bold;
        }
        .providers-wall {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: #333;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 12px;
            color: var(--gold);
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-user-icon {
            font-size: 24px;
            color: var(--gold);
        }
        .review-rating {
            color: var(--gold);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--gray);
        }
        .faq-section {
            padding: 20px 15px;
        }
        .faq-item {
            margin-bottom: 20px;
        }
        .faq-item h3 {
            color: var(--gold);
            font-size: 15px;
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--gray);
        }
        .security-section {
            margin: 20px 15px;
            text-align: center;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 30px;
            margin-bottom: 15px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        .nav-item:nth-child(3) {
            color: var(--gold);
            transform: translateY(-5px);
        }
        .nav-item:nth-child(3) i {
            background: var(--cta-gradient);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            box-shadow: 0 4px 10px rgba(255, 46, 99, 0.4);
        }
        footer {
            padding: 30px 15px 100px;
            background: #111;
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 20px;
        }
        .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: 10px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 12px;
        }
        .footer-copy {
            font-size: 11px;
            color: #555;
        }