
        html, body {
            background-color: #121212;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            touch-action: manipulation;
            overflow-x: hidden;
            width: 100%;
        }

        /* Estilos para barra topo */
            .bonus-cadastro {
            width: 100%;
            position: relative;
            box-sizing: border-box;
            background-color: #FFD700;
            color: #000000;
            text-align: center;
            padding: 5px;
            font-size: 15px;
            font-weight: bold;
            z-index: 999;
        }

        /* Estilos para o topo */
        .top-bar {
            width: 100%;
            background: #121212;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
            border-bottom: 1px solid rgba(255,255,255,0.04);
            position: relative;
            z-index: 20;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }
        .logo img {
            width: 100px;
            height: auto;
        }
        .buttons {
            display: flex;
            gap: 10px;
        }
        .button{
            padding: 10px 20px;
            background-color: #FFD700;
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
        }
        .button:hover {
            background-color: #E6C200;
        }
        .top-bar__main {
            min-height: 54px;
            gap: 10px;
        }
        .top-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }
        .top-brand__logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .top-brand__logo img {
            width: 104px;
            max-width: 100%;
            height: auto;
            display: block;
        }
        .top-utility {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }
        .top-smart {
            display: none;
            align-items: center;
            gap: 10px;
        }
        .top-smart-btn {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            background: rgba(255,255,255,0.04);
            color: #e8eef8;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
        }
        .top-smart-btn:hover {
            transform: translateY(-1px);
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.14);
        }
        .top-auth {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .top-auth .button {
            min-width: 104px;
            padding: 10px 14px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.01em;
        }
        .top-auth .button--ghost {
            background: rgba(255,255,255,0.05);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.10);
        }
        .top-auth .button--ghost:hover {
            background: rgba(255,255,255,0.10);
        }
        .top-auth .button--primary {
            box-shadow: 0 12px 22px rgba(0,0,0,0.22);
        }
        .top-meta {
            display: none;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.75);
            font-size: 12px;
            font-weight: 700;
        }
        .top-lang,
        .top-clock {
            padding: 8px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            white-space: nowrap;
        }
        .top-nav {
            display: none;
            gap: 10px;
            padding-top: 0;
            padding-bottom: 10px;
            flex-wrap: wrap;
        }
        .top-nav-btn {
            border: none;
            background: rgba(255,255,255,0.045);
            color: rgba(255,255,255,0.84);
            border-radius: 999px;
            padding: 10px 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color .18s ease, color .18s ease;
        }
        .top-nav-btn:hover {
            background: rgba(255,255,255,0.10);
            color: #fff;
        }
        .top-status-dot {
            color: #22c55e;
            font-size: 10px;
        }

        @media (max-width: 900px) {
            .top-bar__main {
                min-height: 50px;
                align-items: center;
                flex-direction: row;
                padding: 0 10px;
                gap: 8px;
            }
            .top-utility {
                width: auto;
                margin-left: auto;
                justify-content: flex-end;
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 640px) {
            .bonus-cadastro {
                padding: 3px 6px;
                font-size: 12px;
                line-height: 1.2;
            }
            .top-brand__logo img {
                width: 84px;
            }
            .top-auth {
                width: auto;
                gap: 6px;
            }
            .top-auth .button {
                flex: 0 0 auto;
                min-width: 0;
                min-height: 32px;
                padding: 7px 9px;
                font-size: 11px;
                border-radius: 10px;
            }
        }

        @media (max-width: 360px) {
            .top-auth .button--ghost {
                display: none;
            }
            .top-brand__logo img {
                width: 90px;
            }
        }

    /* Termos boxs */
        .sidebar {
            position: fixed;
            left: -300px; 
            top: 0;
            width: 300px;
            height: 100%;
            background-color: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            transition: left 0.3s ease-in-out;
            z-index: 9999;
        }
        .sidebar.show {
            left: 0; 
        }
        .sidebar-content {
            position: absolute; 
            top: 40px; 
            bottom: 0; 
            overflow-y: auto; 
            padding: 15px;
            text-align: justify;
            font-size: 12px;
            color: #fff;
            /* Estilos para Firefox */
            scrollbar-width: thin;
            scrollbar-color: #FFD700 #121212;
        }
        .sidebar-content::-webkit-scrollbar {
            width: 8px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb {
            background-color: #121212; 
            border-radius: 10px; 
        }
        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background-color: #121212;
        }
        .sidebar-content::-webkit-scrollbar-track {
            background: #121212;
        }
        .close-sidebar {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #FFD700; 
            transition: color 0.3s;
        }
        .close-sidebar:hover {
            color: #E6C200;
        }

    /* Botão Esporte */
        .botao-esporte {
            width: 200px;
            height: 60px;
            background: #FFD700;
            border-bottom-right-radius: 25px;
            overflow: hidden;
            display: flex;
        }
        .botao-esporte .botao-esporte-card {
            width: 100%;
            height: 100%;
        }
        .botao-esporte .botao-esporte-btn {
            width: 100%;
            height: 100%;
            background: transparent;
            border: none;
            color: #000000;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .botao-esporte-btn i {
            margin-right: 5px;
        }
        .botao-esporte:hover {
            filter: brightness(1.1);
            background-color: #E6C200;
        }

    /* Estilos para o slider */
        .slider-wrapper {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 10px;
        }
        .slider-container {
            width: 100%;
            aspect-ratio: 1000 / 300; min-height: 96px;
            overflow: hidden;
            position: relative;
            border-radius: 15px;
            background: #1a1a1a;
        }
        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .slide {
            flex: 0 0 100%;
            height: 100%; display: flex; align-items: center;
        }
        .slide img {
            width: 100%; height: 100%; object-fit: cover;
            
            
            
            display: block;
        }
        .dots {
            text-align: center;
            margin-top: 15px;
        }
        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 6px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background-color: #FFD700;
            transform: scale(1.3);
            box-shadow: 0 0 10px #FFD700;
        }

    /* Estilos para busca */
        .busca-container {
            margin: 20px auto 0 auto;
            text-align: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 10px;
        }
        .busca-form-row {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .busca-input-icon {
            position: relative;
            width: 100%;
            background-color: #2F3338;
            border-radius: 6px;
            display: flex;
            align-items: center;
            border: 1px solid #1c1e21;
        }
        .busca-input-icon i {
            position: absolute;
            left: 15px;
            color: #b5b5b5;
            font-size: 16px;
        }
        .busca-input {
            width: 100%;
            padding: 12px 15px 12px 42px;
            border: none;
            border-radius: 6px;
            height: 48px;
            background-color: transparent;
            color: #fff;
            font-size: 15px;
            outline: none;
        }
        .busca-input::placeholder {
            color: #b5b5b5;
        }
        .busca-input:focus {
            outline: none;
            background-color: rgba(255,255,255,0.02);
        }
        .busca-container,
        .busca-input-icon,
        .busca-input {
            box-sizing: border-box;
        }
        .busca-resultado {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        .busca-tabela-resultado {
            width: 100%;
            max-width: 1200px;
            margin: 5px auto;
            border-collapse: collapse;
            background-color: #1E1E1E;
            color: #fff;
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            table-layout: fixed;
        }
        .busca-tabela-resultado td {
            padding: 8px 10px;
            vertical-align: middle;
            overflow: hidden;
        }
        .col-img {
            width: 60px;
            text-align: center;
            padding-left: 5px; 
            padding-right: 5px;
        }
        .col-nome {
            width: 45%;
            font-size: 16px;
        }
        .col-jogadores {
            overflow: visible !important;  
            white-space: normal !important; 
            text-overflow: clip !important; 
            font-size: 12px;
            text-align: center;
        }
        .col-jogar {
            width: 120px;
            text-align: right;
        }
        .busca-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        .btn-jogar {
            padding: 6px 12px;
            background-color: #FFD700;
            border: none;
            color: #000000;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        .btn-jogar:hover {
            background-color: #E6C200;
        }
        .online-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin-right: 6px;
            background-color: #00ff00;
            border-radius: 50%;
            animation: piscar 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscar {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }
        .sem-resultado {
            text-align: center;
            color: #fff;
            padding: 20px;
            font-size: 16px;
            background-color: transparent;
        }
    /* 7GAMES LAST WINSHoje REFINED */
    .new-last-wins-container {
        display: flex;
        background-color: #121212;
        margin: 20px auto 10px;
        max-width: 1200px;
        width: 100%;
        height: 80px;
        border-radius: 8px;
        overflow: hidden;
        border-bottom: 2px solid #2a2a2a;
    }
    .new-last-wins-wrapper {
        flex: 0 0 160px;
        background: #181c21;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 15px;
        border-right: 1px solid #1c1e21;
    }
    .new-last-wins-wrapper-img {
        width: 35px !important;
        height: 35px !important;
        object-fit: contain;
        margin: 0 !important;
    }
    .new-last-wins-wrapper-text {
        font-size: 13px !important;
        line-height: 1.1;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        margin: 0 !important;
    }
    .new-last-wins-container-wrapper {
        flex: 1;
        overflow: hidden;
        position: relative;
    }
    .new-last-wins-item-container {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #1c1e21;
        margin: 10px 6px;
        padding: 8px 15px;
        border-radius: 6px;
        min-width: 220px;
        height: 58px;
        border: 1px solid #2a2c31;
    }
    .new-last-wins-item-img {
        width: 42px !important;
        height: 42px !important;
        border-radius: 6px;
        object-fit: cover;
        margin: 0 !important;
        flex-shrink: 0;
    }
    .new-last-wins-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .new-last-wins-item p {
        margin: 0 !important;
        font-size: 12px;
        line-height: 1.3;
    }
    .playerName { color: #888e99 !important; font-weight: 500; }
    .gameName { color: #fff !important; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
    .winAmount { color: #00C774 !important; font-weight: 800; }

    #ganhos-slider {
        display: flex;
        animation: slideScroll 45s linear infinite;
        white-space: nowrap;
        width: max-content;
        align-items: center;
        height: 100%;
    }
    @keyframes slideScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .new-last-wins-container:hover #ganhos-slider {
        animation-play-state: paused;
    }

    /* Listagem dos jogos */  
            .lista-jogos, .aovivo-resultados {
            background-color: #121212;
            padding: 20px;
            margin-top: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .lista-jogos .jogos-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px; /* espaço entre os cards */
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        .titulo-lista-jogos, .aovivo-titulo {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
            margin: 20px 0 10px;
            color: #fff;
        }
        .lista-jogos .jogo-card {
            background-color: #1E1E1E;
            height: auto;
            aspect-ratio: 182 / 230;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            background-size: contain;      
            background-repeat: no-repeat;   
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .lista-jogos .jogo-card:hover {
            transform: scale(1.05);
        }
        .lista-jogos .jogo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            border-radius: 10px;
        }
        .lista-jogos .jogo-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: rgba(0,0,0,0.6);
            opacity: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s;
            cursor: default;
            z-index: 10;
        }
        .lista-jogos .jogo-card:hover .jogo-overlay {
            opacity: 1;
        }
        .jogo-card--wg .jogo-provider-title {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 10px 10px 12px;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.88) 100%);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.25;
            text-align: center;
            pointer-events: none;
        }
        .jogo-card--wg .jogo-overlay {
            z-index: 3;
        }

        .lista-jogos .jogar-btn {
            background-color: #FFD700;
            border: none;
            color: #000000;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            z-index: 20;
            position: relative;
        }
        .lista-jogos .jogo-info {
            display: none; /* Hide game text info completely to make it cleaner like 7games */
        }

.lista-jogos .jogo-info .nome {
            font-size: 14px;
        }
        .lista-jogos .jogo-info .jogadores {
            display: none; /* Hide players count completely */
        }
        .jogadores-text {
            display: none;
        }
        .btn-ver-mais {
            padding: 10px 20px;
            background-color: #FFD700;
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            display: block;
            margin: 20px auto 0 auto;
            transition: background-color 0.3s ease;
        }
        .btn-ver-mais:hover {
            background-color: #E6C200;
        }

    /* Provedores (Providers) */
        .provider-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #121212;
            margin-top: 20px;
        }
        /* 7GAMES REFACTORED CATEGORIES */
        .accordion-items-resize {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 8px;
            margin: 0 0 16px;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 2px 8px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        .accordion-items-resize::-webkit-scrollbar {
            display: none;
        }
        .accordion-items-resize span {
            flex: 0 0 auto;
            max-width: 100%;
        }
        .accordion-button {
            background-color: #2F3338;
            color: #fff;
            border: 1px solid #1c1e21;
            border-radius: 999px;
            padding: 10px 14px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-height: 42px;
            white-space: nowrap;
            line-height: 1;
            flex-shrink: 0;
            max-width: 100%;
        }
        .accordion-button:hover {
            background-color: #383d42;
        }
        .accordion-button.active {
            background-color: #383d42;
            color: #FFD700;
            border-color: #FFD700;
            box-shadow: inset 0 0 0 1px #FFD700;
        }
        .accordion-button i,
        .accordion-button svg {
            flex: 0 0 auto;
            max-width: 18px;
            width: 18px;
            height: 18px;
            fill: #fff;
        }
        .accordion-button span {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .accordion-button.active svg,
        .accordion-button.active i {
            fill: #FFD700;
            color: #FFD700;
        }
        @media (max-width: 768px) {
            .provider-section {
                padding-left: 10px;
                padding-right: 10px;
                overflow: hidden;
                box-sizing: border-box;
            }
            .accordion-items-resize {
                gap: 6px;
                padding: 2px 0 8px;
            }
            .accordion-button {
                min-height: 38px;
                padding: 9px 12px;
                font-size: 11px;
            }
        }
        .provider-logo-btn img {
            height: 100%;
            max-height: 28px;
            max-width: 90%;
            object-fit: contain;
            transition: all 0.2s;
        }
        .provider-logo-btn:hover img {
            transform: scale(1.05);
        }
        .provider-all-label {
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .provider-games {
            display: none;
            animation: fadeIn 0.4s ease-in-out;
        }
        .provider-games.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    /* Estilos para o modal */  
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.48);
            backdrop-filter: blur(3px);
            z-index: 20000;
        }
        .overlay.show {
            display: block;
        }
        .modal {
            display: none; 
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #1E1E1E;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            z-index: 20001;
            width: 90%;
            max-width: 400px;
            border-radius: 5px;
        } 
        .modal-content h2 {
            margin: 0 0 15px 0; 
            font-size: 24px;
            color: #FFD700;
            text-align: center; 
        }
            .modal.show {
            display: block;
        }
        .close-modal {
            position: absolute; 
            top: 10px; 
            right: 10px; 
            font-size: 18px; 
            color: #FFD700; 
            cursor: pointer;
        }
        .close-modal:hover {
            color: #E6C200; 
        }
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .form-row .input-icon {
            flex: 1;
        }
        .input-icon {
            position: relative;
            margin-bottom: 5px;
        }
        .input-icon i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #FFD700; 
            pointer-events: none; 
        }
        .input-icon i:hover {
            color: #E6C200; 
        }
        .input-icon input, .input-icon textarea {
            padding-left: 35px; 
            width: 100%;
            height: 45px; 
            border:none; 
            border-radius: 3px; 
            color: #fff; 
            background-color: #121212;
            outline: none; 
            box-sizing: border-box;
            font-size: 14px;
            font-family: Arial, sans-serif;
        }
        .input-icon input::placeholder, .input-icon textarea::placeholder {
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        .submit-button {
            width: 100%;
            padding: 15px 20px; 
            background-color: #FFD700;
            color: #000000;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            margin-top: 0px; 
            font-size: 16px; 
            font-weight: bold;
        }
        .submit-button:hover {
            background-color: #E6C200;
        } 
        input.submit-button.recuperar, 
        input.submit-button.abrir-conta, 
        input.submit-button.contato {
            margin-top: 10px !important;
        }
        .termos {
            font-size: 12px;
            color: #fff; 
            line-height: 1;
            text-align: justify;
        }
        .termos a {
            color: #FFD700; 
            text-decoration: none; 
            font-weight: bold; 
            cursor: pointer;
        }
        .termos a:hover {
            text-decoration: underline; 
            color: #E6C200;
        }
        .recover-password {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 10px;
            margin-top: 5px;
            cursor: pointer;
        }
        .recover-password a, 
        .log-in a, 
        .create-account a {
            color: #FFD700;
            text-decoration: none;
            font-size: 14px; 
        }
        .recover-password a:hover,
        .log-in a:hover,
        .create-account a:hover {
            color: #E6C200;
        }
        .log-in, .create-account{
            width: 100%;
            display: flex;
            justify-content: center;
            margin-top: 15px;
            cursor: pointer;
        }
        #alerta-cadastro, #alerta-login, #alerta-senha, #alerta-contato {
            width: 100%;
            margin-top: -10px;
            display: none;
            font-size: 14px;
        }
        .alertanao {
            width: 100%;
            color: #FE0000;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }
        .alertasim {
            width: 100%;
            color: #FFD700;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }

    /* Listagem ao vivos */
        .online-dot-red {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 6px;
            background-color: #FF3B30;
            border-radius: 50%;
            animation: piscarred 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscarred {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .aovivo-wrapper {
            width: 400px;
            margin: 0 auto;
        }
        #aovivo-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .aovivo-entry {
            padding: 10px;
            background: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
        }
        .aovivo-entry img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        .aovivo-info {
            margin-left: 8px;
            font-size: 13px;
        }
        .aovivo-amount {
            color: #FFD700;
            font-weight: bold;
        }

        /* Estilos para o footer */  
        .footer {
            color: #fff;
            width: 100%;
            padding: 40px 0 20px;
        }
        .footer .container-footer {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: nowrap;
            gap: 5px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .footer-column:first-child {
            display: flex;
            justify-content: center;   
            align-items: center;       
            min-height: 100%;          
        }
        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #FFD700;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 5px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }
        .footer-column ul li a:hover {
            text-decoration: none;
        }
        .footer img {
            max-width: 150px;
        }
        .footer img.pix-logo {
            max-width: 100px !important;
        }
        .social-icons a {
            margin-right: 10px;
            font-size: 24px;
            color: #fff;
            transition: color 0.3s;
        }
        .footer-line {
            border-top: 1px solid #444;
            margin: 30px auto;
            max-width: 1200px;
        }
        .footer-text {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 12px;
            color: #ccc;
            line-height: 1.6;
            padding: 0 20px;
        }
        .ver-mais-btn {
            padding: 10px 20px;
            background-color: #FFD700;
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            display: block;
            margin: 10px auto 0;
            transition: background-color 0.3s;
        }
        .ver-mais-btn:hover {
            background-color: #E6C200;
        }
        .footer-centered-img {
            max-width: 1200px;
            margin: 20px auto;
            text-align: center;
        }
        .selo-img {
            max-width: 350px !important; 
            height: auto !important;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 20px auto 0;
            text-align: center;
            font-size: 13px;
            color: #aaa;
        }
        .footer-bottom span {
            margin: 0 8px;
        }

    @media (max-width: 768px) {
            /* Estilos para barra topo */
            .bonus-cadastro {
                font-size: 3.5vw;
            }

            /* Estilos para o modal */ 
            .modal {
                width: calc(100% - 80px);
                max-width: none; 
            }
            .input-icon input {
                font-size: 16px;
            }

            /* Estilos para o footer */ 
            .footer .container-footer {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }
            .footer-column:nth-child(1) {
                display: none;
            }
            .footer-column {
                flex: 1 1 100%;
                box-sizing: border-box;
                margin: 5px 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-column:nth-child(2),
            .footer-column:nth-child(3) {
                flex: 1 1 47%;
                order: 1;
            }
            .footer-column:nth-child(4),
            .footer-column:nth-child(5) {
                flex: 1 1 47%;
                order: 2;
            }
            .footer-column ul {
                padding-left: 0;
                list-style: none;
            }
            .footer-column img,
            .footer-column .pix-logo,
            .footer-column .social-icons {
                margin: 0 auto;
                display: block;
            }
            .footer-column h4 {
                text-align: center;
            }
            .social-icons {
                justify-content: center;
                display: flex;
            }

            /* Estilos para a busca */ 
            .busca-container {
                padding: 0 15px; 
            }
            .busca-input-icon {
                max-width: 100%;
            }
            .col-nome {
                width: 70%;
                font-size: 14px;
            }
            .col-jogadores {
                overflow: visible !important; 
                white-space: normal !important;
                text-overflow: clip !important;
                font-size: 12px;
                width: 40%;
                text-align: center;
            }
            .col-jogar {
                width: 80px;
                text-align: right;
            }

            /* Estilos para a lista de jogos */ 
            .lista-jogos{
                padding: 0px 0px 0px 5px;
            }
            .lista-jogos .jogos-container {
                display: flex;
                overflow-x: auto;
                padding-bottom: 10px;
                gap: 12px;
                width: 100%;
                flex-wrap: nowrap;
                -ms-overflow-style: none; 
                scrollbar-width: none; 
            }
            .lista-jogos .jogo-card {
                min-width: 120px; 
                height: 182px;
                flex-shrink: 0; 
            }
            .lista-jogos .jogos-container::-webkit-scrollbar {
                display: none; 
            }

.lista-jogos .jogo-info .nome {
                font-size: 12px;
            }
            .lista-jogos .jogar-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            /* Estilos para a lista de aovivo */    
            .aovivo-resultados{
                margin-top: -30px;
            }

            /* Botão Esporte */   
            .botao-esporte {
                width: 70%;
                height: 45px;
                position: fixed;
                z-index: 998; 
                border-radius: 0px 25px 25px 0px;
            }
            .botao-esporte .botao-esporte-btn {
                font-size: 15px;
            }
            .botao-esporte-btn i {
                margin-right: 8px;
            } 
}



/* Grid Vertical - Todos os Jogos */


@media (max-width: 900px) {
    
}


/* Ajuste de Altura do Slider no Mobile */
@media (max-width: 768px) {
    .slider-container, .slide {
        height: auto !important;
    }
    .slider-wrapper {
        margin: 15px auto;
    }
}




/* Forçar 3 colunas em telas pequenas */
@media (max-width: 900px) {
    
    #jogosCarregaveis .jogo-card {
        min-width: 0 !important;
        width: 100% !important;
    }
}


/* REFORCO FINAL GRID VERTICAL - TODOS OS JOGOS */
@media (min-width: 901px) {
    #jogosCarregaveis, #containerPragmatic, #containerPG, .provider-games .jogos-container, .lista-jogos .jogos-container {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 20px 0 !important;
        overflow-x: visible !important;
        flex-wrap: wrap !important;
    }
    #jogosCarregaveis .jogo-card, #containerPragmatic .jogo-card, #containerPG .jogo-card,
    .provider-games .jogos-container .jogo-card, .lista-jogos .jogos-container .jogo-card {
        min-width: 0 !important;
        width: auto !important;
        height: auto !important;
        aspect-ratio: 182 / 230;
    }
}

@media (max-width: 900px) {
    #jogosCarregaveis, #containerPragmatic, #containerPG, .provider-games .jogos-container, .lista-jogos .jogos-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 10px 5px !important;
        overflow-x: visible !important;
        flex-wrap: wrap !important;
    }
    #jogosCarregaveis .jogo-card, #containerPragmatic .jogo-card, #containerPG .jogo-card,
    .provider-games .jogos-container .jogo-card, .lista-jogos .jogos-container .jogo-card {
        min-width: 0 !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 182 / 230;
    }

    /* Provider section mobile */
    .provider-section {
        padding: 0 5px;
        margin-top: 10px;
    }
    .provider-logos-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        padding: 5px 0 10px;
        width: 100%;
        margin: 0;
    }
    .provider-logo-btn {
        min-width: 0;
        width: 100%;
        padding: 5px;
        height: 50px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .provider-logo-btn img {
        height: 100%;
        max-height: 38px;
        max-width: 95%;
        object-fit: contain;
    }
    .provider-all-label {
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Corre??o de fundo branco em login/cadastro */
.modal--auth {
    width: min(92vw, 372px);
    max-width: 372px;
    padding: 0;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 14px;
    overflow: hidden auto;
    max-height: calc(100dvh - 24px);
    background: #121722;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
}
#modalCadastro.modal--auth {
    width: min(94vw, 390px);
    max-width: 390px;
}
.modal--compact {
    width: min(92vw, 440px);
    max-width: 440px;
}
.auth-modal-shell {
    position: relative;
    padding: 0;
    background: transparent;
}
.auth-modal-shell--compact {
    display: block;
}
.auth-close {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.auth-card-header {
    display: block;
    padding: 16px 16px 0;
}
.auth-brand-mark {
    display: none;
}
.auth-brand-mark img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.auth-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0;
}
.auth-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.64);
    flex: 1;
    padding: 12px 12px 13px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-align: center;
    position: relative;
}
.auth-tab.active,
.auth-tab:hover {
    background: transparent;
    color: #fff;
}
.auth-tab.active::after {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: -1px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: #FFD700;
}
.auth-tab--ghost {
    color: rgba(255, 255, 255, 0.82);
}
.auth-modal-body {
    display: block;
    min-height: auto;
}
.auth-hero {
    display: none;
}
.auth-hero--single {
    min-height: auto;
}
.auth-hero-badge {
    display: none;
}
.auth-hero h2 {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.05;
    color: #fff;
    text-align: center;
}
.auth-hero p {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}
.auth-form-wrap {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
}
.auth-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.auth-field-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 2px;
}
.auth-radio-group {
    display: none;
}
.auth-radio {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.auth-radio--active,
.auth-radio:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.input-icon--password {
    display: flex;
    align-items: center;
}
.input-icon--password input {
    padding-right: 48px;
}
.auth-input-shell {
    margin-bottom: 0;
}
.auth-input-shell input {
    border-radius: 9px !important;
    height: 44px !important;
    padding-left: 38px !important;
    font-size: 14px;
    background-color: #1c2431 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}
.password-toggle:hover {
    color: #fff;
}
.auth-submit {
    margin-top: 5px;
    height: 44px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.turnstile-box {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.auth-divider {
    position: relative;
    text-align: center;
    margin: 13px 0 10px;
}
.auth-divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.auth-divider span {
    position: relative;
    padding: 0 12px;
    background: #121722;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.auth-extra-panel {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.auth-thirdparty-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    font-weight: 800;
}
.auth-thirdparty-title::before,
.auth-thirdparty-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.09);
}
.social-auth-block {
    display: flex;
    justify-content: center;
    width: 100%;
}
.google-button-slot {
    min-height: 44px;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
    border-radius: 0;
}
.google-button-slot > div,
.google-button-slot iframe {
    max-width: 100% !important;
    min-height: 40px !important;
}
.auth-quick-links {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    font-weight: 700;
}
.auth-quick-links li {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
}
.google-signup-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #d1fae5;
}
.google-signup-banner[hidden] {
    display: none !important;
}
.google-signup-banner__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}
.google-signup-banner strong {
    display: block;
    margin-bottom: 4px;
}
.google-signup-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}
.auth-footer-link {
    margin-top: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.auth-footer-link a,
.recover-password a {
    color: #FFD700;
    font-weight: 700;
    cursor: pointer;
}
.auth-terms {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-height: 82px;
    overflow-y: auto;
}
.auth-agree-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 3px 0 2px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    max-height: none;
    overflow: visible;
    color: rgba(255,255,255,0.70);
}
.auth-agree-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
    border-radius: 5px;
    background: #FFD700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.auth-terms,
.auth-terms p {
    font-size: 11px;
    line-height: 1.55;
}

.modal input,
.modal textarea,
.modal select { background-color: #121212 !important; color: #fff !important; -webkit-text-fill-color: #fff !important; caret-color: #fff; }
.modal input:-webkit-autofill,
.modal textarea:-webkit-autofill,
.modal select:-webkit-autofill { box-shadow: 0 0 0 1000px #121212 inset !important; -webkit-text-fill-color: #fff !important; }
.modal input:focus,
.modal textarea:focus,
.modal select:focus { background-color: #151515 !important; color: #fff !important; outline: none; }

@media (max-width: 768px) {
    .modal--auth {
        width: min(92vw, 356px);
        border-radius: 13px;
        max-height: calc(100dvh - 18px);
    }
    .auth-card-header {
        padding: 14px 14px 0;
    }
    .auth-brand-mark {
        width: 124px;
        max-width: none;
    }
    .auth-tabs {
        width: 100%;
    }
    .auth-tab {
        flex: 1;
        text-align: center;
    }
    .auth-hero {
        padding: 6px 16px 4px;
    }
    .auth-hero h2 {
        font-size: 24px;
    }
    .auth-form-wrap {
        padding: 14px 14px 16px;
    }
    .auth-grid-2 {
        grid-template-columns: 1fr;
    }
    .turnstile-box {
        overflow: hidden;
        transform-origin: top center;
    }
    .auth-input-shell input {
        height: 42px !important;
    }
    .auth-tab {
        font-size: 12px;
        padding: 11px 10px 12px;
    }
    .jogo-card--wg .jogo-provider-title {
        font-size: 11px;
        padding: 9px 8px 10px;
    }
}
