﻿
        body {
            background-color: #121212;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /* Estilos para barra topo */
            .bonus-cadastro {
            width: 100%;
            position: relative;
            box-sizing: border-box;
            background-color: #288a00;
            color: #000000;
            text-align: center;
            padding: 5px;
            font-size: 15px;
            font-weight: bold;
            z-index: 999;
        }

        /* Estilos para o topo */
        .top-bar {
            background-color: #010401;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            padding: 10px 0;
        }
        .container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }
        .logo img {
            display: block;
            height: 48px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }
        .buttons {
            display: flex;
            gap: 10px;
        }
        .button{
            padding: 10px 20px;
            background-color: #288a00;
            color: #000000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
        }
        .button:hover {
            background-color: #00B066;
        } 

    /* 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: #288a00 #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: #288a00; 
            transition: color 0.3s;
        }
        .close-sidebar:hover {
            color: #00B066;
        }

    /* BotÃ£o Esporte */
        .botao-esporte {
            width: 200px;
            height: 60px;
            background: #288a00;
            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: #00B066;
        }

    /* Estilos para o slider */
        .slider-wrapper {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .slider-container {
            width: 100%;
            aspect-ratio: 5 / 1;
            height: auto;
            overflow: hidden;
            position: relative;
        }
        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            height: 100%;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            border-radius: 3px;
        }
        .dots {
            text-align: center;
            margin-top: 10px;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
        }
        .dot.active {
            background-color: #288a00;
        }

    /* Estilos para busca */ 
        .busca-container {
            margin: 40px auto 0 auto;
            text-align: center;
            width: 100%;
            max-width: 1000px;
        }
        .busca-form-row {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .busca-input-icon {
            position: relative;
            width: 100%;
        }
        .busca-input-icon i {
            position: absolute;
            top: 50%;
            left: 12px;
            transform: translateY(-50%);
            color: #288a00;
        }
        .busca-input {
            width: 100%;
            padding: 6px 8px 6px 40px;
            border: none;
            border-radius: 3px;
            height: 50px;
            background-color: #1E1E1E;
            color: #fff;
            font-size: 16px;
        }
        .busca-input:focus {
            outline: none;
            border: 1px solid #288a00;
            box-shadow: 0 0 5px #288a0033; 
        }
        .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: 1000px;
            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: #288a00;
            border: none;
            color: #000000;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        .btn-jogar:hover {
            background-color: #00B066;
        }
        .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;
        }

    /* carrossel-ganhadores */
        .ganhos-container {
            display: flex;
            overflow: hidden;
            height: 80px;
            margin-top: 40px;

        }
        .ganhos-fixo {
            flex: 0 0 150px;
            background-color: #121212;
            color: white;
            font-weight: bold;
            text-align: left;
            display: flex;
            flex-direction: row; 
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 10px;
            box-sizing: border-box;
            height: 100%;
        }
        .ganhos-fixo i {
            font-size: 30px;
            color: #ffc107;
        }
        .ganhos-fixo span {
            line-height: 1.2;
        }
        .ganhos-rolando {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
        }
        .ganhos-slider {
            display: flex;
            align-items: center;
            height: 100%;
            width: max-content;
            animation: ganhos-scroll 45s linear infinite;
            will-change: transform;
        }
        @keyframes ganhos-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .card {
            display: flex;
            align-items: center;
            background-color: #1E1E1E;
            color: #fff;
            padding: 10px;
            margin-right: 15px;
            border-radius: 8px;
            min-width: 220px;
            height: 100%;
            box-sizing: border-box;
        }
        .card img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 4px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        .valor {
            color: #288a00;
            font-weight: bold;
        }

    /* Listagem dos jogos */  
            .lista-jogos, .aovivo-resultados {
            background-color: #121212;
            padding: 20px;
            margin-top: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .lista-jogos .jogos-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px; /* espaÃ§o entre os cards */
            max-width: 1000px;
            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: 230px;
            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: contain;
            object-position: top center;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            transform: scale(0.94);
            transform-origin: center;
            border-radius: 10px;
            background-color: #1E1E1E;
        }
        .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;
        }
        .lista-jogos .jogar-btn {
            background-color: #288a00;
            border: none;
            color: #000000;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            z-index: 20;
            position: relative;
        }
        .lista-jogos .jogo-info {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 100%;
            color: white;
        }
        .lista-jogos .jogo-info .nome {
            font-size: 14px;
        }
        .lista-jogos .jogo-info .jogadores {
            margin-top: 4px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
        }
        .jogadores-text {
            margin-left: 4px;
        }
        .btn-ver-mais {
            padding: 10px 20px;
            background-color: #288a00;
            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: #00B066;
        }

    /* Estilos para o modal */  
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 999;
            pointer-events: none;
            visibility: hidden;
        }
        .overlay.show {
            display: block;
            pointer-events: auto;
            visibility: visible;
        }
        .modal:not(.show),
        .sidebar:not(.show) {
            pointer-events: none !important;
            visibility: hidden;
        }
        .modal.show,
        .sidebar.show {
            visibility: visible;
        }
        .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: 1000;
            width: 90%;
            max-width: 400px;
            border-radius: 5px;
        } 
        .modal-content h2 {
            margin: 0 0 15px 0; 
            font-size: 24px;
            color: #288a00;
            text-align: center; 
        }
            .modal.show {
            display: block;
        }

        /* Centro de mensagens / Suporte (tela cheia) */
        :root {
            --suporte-inset-top: 0px;
            --suporte-inset-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        }

        .modal-suporte {
            width: 100%;
            max-width: none;
            top: var(--suporte-inset-top);
            bottom: var(--suporte-inset-bottom);
            left: 0;
            right: 0;
            height: auto;
            max-height: none;
            transform: none;
            padding: 0;
            border-radius: 0;
            background: #121212;
            box-shadow: none;
            overflow: hidden;
            z-index: 10000;
        }

        .modal-suporte.show {
            display: flex;
            flex-direction: column;
        }

        body.body-suporte-open .overlay.show,
        body:has(.modal-suporte.show) .overlay.show {
            display: none !important;
        }

        body.body-suporte-open .layout-footer,
        body:has(.modal-suporte.show) .layout-footer {
            z-index: 10002;
        }

        @media (min-width: 769px) {
            .modal-suporte {
                top: 0;
                bottom: 0;
            }
        }

        .mensagens-screen {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
            height: 100%;
            background: #121212;
            color: #eee;
        }

        .mensagens-header {
            display: grid;
            grid-template-columns: 40px 1fr 40px;
            align-items: center;
            gap: 6px;
            padding: 14px 12px 10px;
            background: #0d0d0d;
            border-bottom: 1px solid #2a2a2a;
            flex-shrink: 0;
        }

        .mensagens-back {
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            color: #288a00;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            position: static;
        }

        .mensagens-title {
            margin: 0;
            text-align: center;
            font-size: 17px;
            font-weight: 700;
            color: #288a00;
        }

        .mensagens-header-spacer {
            width: 32px;
        }

        .mensagens-tabs {
            display: flex;
            gap: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            border-bottom: 1px solid #2a2a2a;
            background: #0d0d0d;
            flex-shrink: 0;
            padding: 0 4px;
        }

        .mensagens-tabs::-webkit-scrollbar {
            display: none;
        }

        .mensagens-tab {
            flex: 0 0 auto;
            border: none;
            background: transparent;
            color: #888;
            font-size: 13px;
            font-weight: 600;
            padding: 12px 14px 10px;
            cursor: pointer;
            white-space: nowrap;
            position: relative;
            font-family: inherit;
        }

        .mensagens-tab.active {
            color: #288a00;
        }

        .mensagens-tab.active::after {
            content: '';
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 0;
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: #288a00;
        }

        .mensagens-scroll {
            flex: 1;
            overflow-y: auto;
            padding: 18px 14px 24px;
            -webkit-overflow-scrolling: touch;
            background: #121212;
        }

        .mensagens-panel {
            display: none;
        }

        .mensagens-panel.active {
            display: block;
        }

        .mensagens-panel-title {
            margin: 0 0 10px;
            font-size: 16px;
            font-weight: 700;
            color: #288a00;
        }

        .mensagens-panel-desc {
            margin: 0 0 18px;
            font-size: 13px;
            line-height: 1.55;
            color: #999;
            max-width: 420px;
        }

        .mensagens-canais {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .mensagens-canal {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            max-width: 100%;
            padding: 10px 14px 10px 10px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #1a1a1a;
            text-decoration: none;
            color: #eee;
            transition: border-color 0.2s, background 0.2s;
        }

        .mensagens-canal:hover {
            border-color: #288a00;
            background: rgba(40, 138, 0, 0.08);
        }

        .mensagens-canal-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #288a00 0%, #00B066 100%);
            color: #000000;
            font-size: 15px;
        }

        .mensagens-canal-avatar-alt {
            background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
            color: #fff;
        }

        .mensagens-canal-nome {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.02em;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mensagens-email-hint {
            margin: 0;
            font-size: 12px;
            color: #777;
            line-height: 1.5;
        }

        .mensagens-email-hint a {
            color: #288a00;
            text-decoration: none;
        }

        .mensagens-empty {
            text-align: center;
            padding: 48px 16px;
            color: #666;
        }

        .mensagens-empty i {
            font-size: 36px;
            color: #444;
            margin-bottom: 12px;
            display: block;
        }

        .mensagens-empty p {
            margin: 0;
            font-size: 14px;
        }

        .close-modal {
            position: absolute; 
            top: 10px; 
            right: 10px; 
            font-size: 18px; 
            color: #288a00; 
            cursor: pointer;
        }
        .close-modal:hover {
            color: #00B066; 
        }
        .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: #288a00; 
            pointer-events: none; 
        }
        .input-icon i:hover {
            color: #00B066; 
        }
        .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: #288a00;
            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: #00B066;
        } 
        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: #288a00; 
            text-decoration: none; 
            font-weight: bold; 
            cursor: pointer;
        }
        .termos a:hover {
            text-decoration: underline; 
            color: #00B066;
        }
        .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: #288a00;
            text-decoration: none;
            font-size: 14px; 
        }
        .recover-password a:hover,
        .log-in a:hover,
        .create-account a:hover {
            color: #00B066;
        }
        .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: #288a00;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }

        /* Modal Auth (Login / Registro estilo referência) */
        .modal-auth {
            background: transparent;
            box-shadow: none;
            padding: 0;
            width: 92%;
            max-width: 420px;
            border-radius: 0;
            transform: translate(-50%, -50%);
        }

        .modal-auth-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .modal-auth-card {
            width: 100%;
            background: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2a2a2a;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
        }

        .modal-auth-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid #2a2a2a;
        }

        .modal-auth-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 14px 8px 12px;
            border: none;
            background: transparent;
            color: #888;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: color 0.2s;
        }

        .modal-auth-tab i {
            font-size: 22px;
        }

        .modal-auth-tab.active {
            color: #288a00;
        }

        .modal-auth-tab.active::after {
            content: '';
            position: absolute;
            left: 20%;
            right: 20%;
            bottom: 0;
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: #288a00;
        }

        .modal-auth-panel {
            padding: 16px 18px 20px;
            display: none;
        }

        .modal-auth-panel.active {
            display: block;
        }

        .modal-auth-hint {
            margin: 0 0 12px;
            font-size: 12px;
            color: #288a00;
            text-align: center;
        }

        .modal-auth-alerta {
            display: none;
            margin-bottom: 10px;
            font-size: 13px;
        }

        .modal-auth-field {
            position: relative;
            margin-bottom: 10px;
        }

        .modal-auth-field > i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 14px;
            pointer-events: none;
            z-index: 1;
        }

        .modal-auth-field input {
            width: 100%;
            height: 46px;
            padding: 0 14px 0 40px;
            border: 1px solid #3a3a3a;
            border-radius: 10px;
            background: #242424;
            color: #fff;
            font-size: 14px;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.2s;
        }

        .modal-auth-field input:focus {
            border-color: #288a00;
        }

        .modal-auth-field input::placeholder {
            color: #777;
        }

        .modal-auth-field-toggle input {
            padding-right: 44px;
        }

        .modal-auth-eye {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 34px;
            height: 34px;
            border: none;
            background: transparent;
            color: #888;
            cursor: pointer;
            border-radius: 8px;
        }

        .modal-auth-eye:hover {
            color: #288a00;
        }

        .modal-auth-strength {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: -4px 0 10px;
            font-size: 12px;
            color: #888;
        }

        .modal-auth-strength-bars {
            display: flex;
            gap: 6px;
            flex: 1;
        }

        .modal-auth-strength-bars span {
            flex: 1;
            height: 4px;
            border-radius: 2px;
            background: #3a3a3a;
            transition: background 0.2s;
        }

        .modal-auth-strength-bars[data-level="1"] span:nth-child(-n+1),
        .modal-auth-strength-bars[data-level="2"] span:nth-child(-n+2),
        .modal-auth-strength-bars[data-level="3"] span:nth-child(-n+3),
        .modal-auth-strength-bars[data-level="4"] span:nth-child(-n+4) {
            background: #288a00;
        }

        .modal-auth-warn {
            margin: -4px 0 10px;
            font-size: 11px;
            color: #e8a800;
            line-height: 1.4;
        }

        .modal-auth-check {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin: 12px 0 14px;
            font-size: 12px;
            color: #bbb;
            line-height: 1.45;
            cursor: pointer;
        }

        .modal-auth-check input[type="checkbox"] {
            width: 16px;
            height: 16px;
            margin-top: 2px;
            accent-color: #288a00;
            flex-shrink: 0;
        }

        .modal-auth-check a {
            color: #288a00;
            text-decoration: none;
        }

        .modal-auth-check-inline {
            margin: 4px 0 14px;
        }

        .modal-auth-submit {
            width: 100%;
            height: 48px;
            border: none;
            border-radius: 24px;
            background: #288a00;
            color: #000000;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }

        .modal-auth-submit:hover {
            background: #00B066;
        }

        .modal-auth-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .modal-auth-links {
            display: flex;
            justify-content: space-between;
            margin-top: 14px;
            gap: 10px;
        }

        .modal-auth-links-center {
            justify-content: center;
        }

        .modal-auth-links a {
            color: #288a00;
            text-decoration: none;
            font-size: 13px;
        }

        .modal-auth-links a:hover {
            color: #00B066;
        }

        .modal-auth-close-bottom {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.35);
            background: rgba(30, 30, 30, 0.95);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.2s, background 0.2s;
        }

        .modal-auth-close-bottom:hover {
            border-color: #288a00;
            color: #288a00;
        }

        .modal-auth-recover-title {
            margin: 0;
            padding: 18px 18px 0;
            text-align: center;
            color: #288a00;
            font-size: 20px;
        }

        .modal-auth-recover .modal-auth-card {
            padding-bottom: 6px;
        }

        .modal-auth-recover form {
            padding: 12px 18px 0;
        }

        .modal-auth-recover .modal-auth-links {
            padding: 0 18px 16px;
        }

        #alerta-cadastro, #alerta-login, #alerta-senha, #alerta-contato {
            width: 100%;
            margin-top: 0;
        }

        .modal-auth-alerta .alertanao,
        .modal-auth-alerta .alertasim {
            font-size: 13px;
        }

        .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: #288a00;
            font-weight: bold;
        }

        /* Estilos para o footer */  
        .footer {
            color: #fff;
            width: 100%;
            padding: 40px 0 20px;
        }
        .footer .container-footer {
            max-width: 1000px;
            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: #288a00;
        }
        .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: 1000px;
        }
        .footer-text {
            max-width: 1000px;
            margin: 0 auto;
            font-size: 12px;
            color: #ccc;
            line-height: 1.6;
            padding: 0 20px;
        }
        .ver-mais-btn {
            padding: 10px 20px;
            background-color: #288a00;
            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: #00B066;
        }
        .footer-centered-img {
            max-width: 1000px;
            margin: 20px auto;
            text-align: center;
        }
        .selo-img {
            max-width: 350px !important; 
            height: auto !important;
        }
        .footer-bottom {
            max-width: 1000px;
            margin: 20px auto 0;
            text-align: center;
            font-size: 13px;
            color: #aaa;
        }
        .footer-bottom span {
            margin: 0 8px;
        }

        /* Rodapé fixo inferior: só no celular */
        .layout-footer {
            display: none;
        }

        @media (max-width: 768px) {
            .body-no-scroll {
                position: static;
                height: auto;
            }
            html.body-no-scroll-root {
                overflow: hidden;
                height: 100%;
            }
        }

    @media (max-width: 768px) {
            .logo img {
                height: 40px;
                max-width: 160px;
            }

            .slider-wrapper {
                margin: 16px auto;
                padding: 0 12px;
            }

            .ganhos-container {
                margin-top: 20px;
            }
            .ganhos-fixo {
                flex: 0 0 110px;
                font-size: 11px;
                padding: 6px;
            }
            .ganhos-fixo i {
                font-size: 22px;
            }
            .card {
                min-width: 180px;
            }

            /* Estilos para barra topo */
            .bonus-cadastro {
                font-size: 3.5vw;
            }

            /* Estilos para o modal */ 
            .modal:not(.modal-suporte) {
                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-img {
                transform: scale(0.9);
            }
            .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;
            }

            body {
                padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
            }

            .button,
            .layout-footer-item,
            .menu-icon,
            .jogar-btn,
            .btn-ver-mais {
                touch-action: manipulation;
                -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
            }

            .layout-footer {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 9999;
                background: #010401;
                border-radius: 22px 22px 0 0;
                box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
                justify-content: space-around;
                align-items: flex-end;
                box-sizing: border-box;
            }

            .layout-footer-item {
                flex: 1;
                max-width: 72px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-end;
                gap: 5px;
                background: none;
                border: none;
                cursor: pointer;
                text-decoration: none;
                color: rgba(255, 255, 255, 0.55);
                font-size: 11px;
                font-weight: 600;
                padding: 0;
                font-family: Arial, sans-serif;
                -webkit-tap-highlight-color: transparent;
            }

            .layout-footer-icon {
                width: 42px;
                height: 42px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 14px;
                font-size: 20px;
                color: rgba(255, 255, 255, 0.7);
                transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
            }

            .layout-footer-label {
                line-height: 1;
                white-space: nowrap;
            }

            .layout-footer-item.active {
                color: #288a00;
            }

            .layout-footer-item.active .layout-footer-icon {
                background: #288a00;
                color: #000000;
                transform: translateY(-2px);
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
            }

            .layout-footer-item:not(.active):active .layout-footer-icon {
                background: rgba(255, 255, 255, 0.1);
            }
} 

                body.pagina-ofertas {
            background: #121212 !important;
        }

        body.pagina-ofertas .top-bar,
        body.pagina-ofertas .bonus-cadastro,
        body.pagina-ofertas .slider-wrapper,
        body.pagina-ofertas .ganhos-container,
        body.pagina-ofertas .busca-container,
        body.pagina-ofertas .content-box,
        body.pagina-ofertas .aovivo-resultados,
        body.pagina-ofertas .footer,
        body.pagina-ofertas .footer-line,
        body.pagina-ofertas .botao-esporte {
            display: none !important;
        }

        .ofertas-topbar {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: #010401;
            border-bottom: 1px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 60;
        }

        .ofertas-topbar-back {
            color: #288a00;
            font-size: 18px;
            text-decoration: none;
            line-height: 1;
        }

        .ofertas-topbar img {
            height: 32px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
        }

        .ofertas-topbar-title {
            margin-left: auto;
            font-size: 14px;
            font-weight: 700;
            color: #288a00;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .ofertas-page {
            width: 100%;
            max-width: 100%;
            margin: 0;
            min-height: calc(100vh - 72px);
            padding: 0 0 12px;
            box-sizing: border-box;
        }

        .ofertas-tabs-scroll {
            overflow-x: auto;
            background: #010401;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: sticky;
            top: 57px;
            z-index: 50;
            border-bottom: 1px solid #2a2a2a;
        }

        .ofertas-tabs-scroll::-webkit-scrollbar {
            display: none;
        }

        .ofertas-tabs {
            display: flex;
            gap: 0;
            padding: 0 8px;
            min-width: max-content;
        }

        .ofertas-tab {
            background: none;
            border: none;
            color: #888;
            font-size: 13px;
            font-weight: 500;
            padding: 12px 12px 10px;
            cursor: pointer;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
        }

        .ofertas-tab.active {
            color: #288a00;
            font-weight: 700;
            border-bottom-color: #288a00;
        }

        .ofertas-panels {
            background: #121212;
            min-height: calc(100vh - 120px);
            padding: 10px 8px 16px;
        }

        .ofertas-panel {
            display: none;
        }

        .ofertas-panel.active {
            display: block;
        }

        .ofertas-eventos-wrap {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .ofertas-eventos-side {
            flex: 0 0 68px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ofertas-eventos-side button {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            min-height: 58px;
            border: 1px solid #333;
            background: #1c1c1c;
            color: #aaa;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            cursor: pointer;
            padding: 6px 4px;
        }

        .ofertas-eventos-side button i {
            font-size: 18px;
            color: #888;
        }

        .ofertas-eventos-side button.active {
            background: #288a00;
            border-color: #288a00;
            color: #000000;
        }

        .ofertas-eventos-side button.active i {
            color: #000000;
        }

        .ofertas-eventos-side .ofertas-side-mini {
            min-height: 36px;
            font-size: 9px;
        }

        .ofertas-eventos-main {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ofertas-evento-banner {
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #f5c518;
            background: #010401;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
            line-height: 0;
        }

        .ofertas-evento-img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .ofertas-app-card {
            background: #1c1c1c;
            border-radius: 10px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #333;
            margin-bottom: 10px;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
        }

        .ofertas-app-card:hover,
        .ofertas-app-card:focus {
            border-color: #288a00;
            background: #222;
            outline: none;
        }

        .ofertas-app-install-btn {
            margin-left: auto;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #288a00;
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ofertas-evento-banner.ofertas-evento-hidden {
            display: none !important;
        }

        .ofertas-missao-panel {
            display: none;
        }

        .ofertas-missao-panel.active {
            display: block;
        }

        .ofertas-promover-guest {
            padding: 20px 16px;
            text-align: center;
        }

        .ofertas-promover-guest p {
            margin: 0 0 14px;
            font-size: 13px;
            color: #bbb;
            line-height: 1.5;
        }

        .ofertas-vip-panel.active[data-vip-content="recompensa"] {
            max-height: min(55vh, 480px);
            overflow-y: auto;
            padding-right: 4px;
        }

        .ofertas-app-card img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: contain;
        }

        .ofertas-app-card strong {
            display: block;
            font-size: 12px;
            color: #eee;
        }

        .ofertas-app-card small {
            font-size: 10px;
            color: #888;
        }

        .ofertas-subtabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
            align-items: center;
        }

        .ofertas-subtab {
            border: 1px solid #333;
            background: #1c1c1c;
            color: #aaa;
            border-radius: 20px;
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
        }

        .ofertas-subtab.active {
            background: #288a00;
            border-color: #288a00;
            color: #000000;
        }

        .ofertas-subtab-refresh {
            margin-left: auto;
            background: none;
            border: none;
            color: #288a00;
            font-size: 12px;
            cursor: pointer;
        }

        .ofertas-missao-card {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 10px;
        }

        .ofertas-missao-badge {
            background: #ef4444;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 6px;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .ofertas-missao-badge.hot { background: #f59e0b; }

        .ofertas-missao-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13px;
            color: #eee;
        }

        .ofertas-missao-reward {
            color: #288a00;
            font-size: 12px;
            font-weight: 600;
        }

        .ofertas-btn-prosseguir,
        .ofertas-btn-jogo,
        .ofertas-btn-girar {
            background: #288a00;
            color: #000000;
            border: none;
            border-radius: 8px;
            padding: 9px 14px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .ofertas-btn-prosseguir:hover,
        .ofertas-btn-jogo:hover,
        .ofertas-btn-girar:hover {
            background: #00B066;
        }

        .ofertas-regras-box {
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 14px;
            margin-top: 12px;
            color: #aaa;
            font-size: 12px;
            line-height: 1.55;
        }

        .ofertas-regras-box h4 {
            margin: 0 0 10px;
            font-size: 14px;
            color: #288a00;
        }

        .ofertas-regras-box ol {
            margin: 0;
            padding-left: 18px;
        }

        .ofertas-regras-box strong {
            color: #bcbdc3;
        }

        .ofertas-vip-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #1c1c1c;
            border-radius: 12px;
            padding: 14px;
            margin-bottom: 12px;
            border: 1px solid #333;
        }

        .ofertas-vip-label {
            font-size: 11px;
            color: #888;
        }

        .ofertas-vip-status h3 {
            margin: 4px 0;
            color: #288a00;
            font-size: 22px;
        }

        .ofertas-vip-status p {
            margin: 0;
            font-size: 12px;
            color: #aaa;
        }

        .ofertas-vip-bar {
            height: 6px;
            background: #333;
            border-radius: 3px;
            margin-top: 8px;
            overflow: hidden;
        }

        .ofertas-vip-bar span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, #00B066, #288a00);
            border-radius: 3px;
        }

        .ofertas-vip-badge {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #288a00, #fbbf24);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 13px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }

        .ofertas-vip-tabs {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            border-bottom: 1px solid #333;
        }

        .ofertas-vip-tabs button {
            background: none;
            border: none;
            padding: 8px 4px;
            font-size: 13px;
            color: #888;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
        }

        .ofertas-vip-tabs button.active {
            color: #288a00;
            font-weight: 700;
            border-bottom-color: #288a00;
        }

        .ofertas-vip-item {
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 10px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .ofertas-vip-item summary {
            padding: 12px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            color: #eee;
            list-style: none;
        }

        .ofertas-vip-item summary::-webkit-details-marker {
            display: none;
        }

        .ofertas-vip-detail {
            padding: 0 12px 12px;
            font-size: 12px;
            color: #aaa;
        }

        .ofertas-vip-row {
            padding: 6px 0;
        }

        .ofertas-vip-row i {
            color: #288a00;
            margin-right: 6px;
            width: 16px;
        }

        .ofertas-vip-row strong {
            color: #288a00;
        }

        .ofertas-rebate-top {
            text-align: center;
            font-size: 13px;
            margin: 0 0 12px;
            color: #aaa;
            background: #1c1c1c;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #333;
        }

        .ofertas-rebate-top strong {
            color: #288a00;
            font-size: 16px;
        }

        .ofertas-rebate-layout {
            display: flex;
            gap: 8px;
        }

        .ofertas-rebate-side {
            flex: 0 0 68px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ofertas-rebate-side button {
            border: 1px solid #333;
            background: #1c1c1c;
            border-radius: 10px;
            padding: 8px 4px;
            font-size: 10px;
            color: #aaa;
            cursor: pointer;
            text-align: center;
            font-weight: 600;
        }

        .ofertas-rebate-side button.active {
            background: #252525;
            border-color: #288a00;
            color: #288a00;
        }

        .ofertas-btn-outline {
            border: 1px solid #333;
            background: #1c1c1c;
            color: #aaa;
            border-radius: 8px;
            padding: 7px 10px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
        }

        .ofertas-btn-outline:hover {
            border-color: #288a00;
            color: #288a00;
        }

        .ofertas-rebate-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ofertas-rebate-card {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 10px;
            font-size: 11px;
            color: #aaa;
        }

        .ofertas-rebate-logo {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #288a00;
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 10px;
            flex-shrink: 0;
        }

        .ofertas-rebate-info {
            flex: 1;
            min-width: 0;
        }

        .ofertas-rebate-progress {
            background: #00B066;
            color: #000000;
            border-radius: 4px;
            padding: 2px 6px;
            margin: 4px 0;
            font-size: 10px;
        }

        .ofertas-rebate-pct {
            color: #288a00;
            font-weight: 800;
            font-size: 13px;
            white-space: nowrap;
        }

        .ofertas-saldo-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            margin-bottom: 12px;
            font-size: 18px;
            font-weight: 800;
            color: #288a00;
            background: #1c1c1c;
            border-radius: 10px;
            border: 1px solid #333;
        }

        .ofertas-saldo-row button {
            background: none;
            border: none;
            color: #288a00;
            font-size: 18px;
            cursor: pointer;
        }

        .ofertas-empty {
            text-align: center;
            padding: 50px 20px;
            color: #888;
            background: #1c1c1c;
            border-radius: 12px;
            border: 1px solid #333;
        }

        .ofertas-empty i {
            font-size: 52px;
            opacity: 0.25;
            margin-bottom: 12px;
            color: #288a00;
        }

        .ofertas-empty p {
            margin: 0;
            font-size: 14px;
            color: #888;
        }

        .ofertas-juros-badge {
            display: inline-block;
            background: #288a00;
            color: #000000;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 14px;
            margin-bottom: 12px;
        }

        .ofertas-juros-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            background: #1c1c1c;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 8px;
            font-size: 12px;
            border: 1px solid #333;
            color: #aaa;
        }

        .ofertas-btn-yellow {
            background: #fbbf24;
            color: #1a1a1a;
            border: none;
            border-radius: 8px;
            padding: 7px 14px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            margin-right: 4px;
        }

        .ofertas-btn-blue {
            background: #288a00;
            color: #000000;
            border: none;
            border-radius: 8px;
            padding: 7px 14px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
        }

        .ofertas-panel[data-oferta-panel="roleta"] {
            margin: -10px -8px 0;
            padding: 0;
            width: calc(100% + 16px);
        }

        .ofertas-roleta-shell {
            background: linear-gradient(180deg, #0a0a0a 0%, #121212 40%, #1a1a1a 100%);
            min-height: calc(100vh - 118px);
            padding-bottom: 24px;
        }

        .ofertas-roleta-topcard {
            background: #1c1c1c;
            margin: 0 10px;
            border-radius: 14px;
            padding: 12px 12px 14px;
            border: 1px solid #333;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
        }

        body.pagina-ofertas.roleta-ativa .ofertas-panels {
            background: #121212;
            padding: 0;
        }

        .ofertas-roleta-stats {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            background: #1c1c1c;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid #333;
            flex-wrap: wrap;
        }

        .ofertas-roleta-pontos {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 800;
            color: #fff;
            font-size: 15px;
        }

        .ofertas-roleta-pontos .fa-star {
            color: #fbbf24;
            font-size: 16px;
        }

        .ofertas-roleta-refresh {
            border: none;
            background: transparent;
            color: #288a00;
            cursor: pointer;
            font-size: 13px;
            padding: 0;
        }

        .ofertas-roleta-info {
            flex: 1;
            font-size: 11px;
            color: #bcbdc3;
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: 130px;
            line-height: 1.3;
        }

        .ofertas-roleta-help {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid #288a00;
            background: transparent;
            color: #288a00;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            flex-shrink: 0;
        }

        .ofertas-btn-go {
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            color: #000000;
            border: none;
            border-radius: 8px;
            padding: 8px 22px;
            font-weight: 800;
            font-size: 14px;
            cursor: pointer;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
        }

        .ofertas-roleta-tipos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .ofertas-roleta-tipos button {
            border: 2px solid #333;
            background: #151515;
            color: #aaa;
            border-radius: 10px;
            padding: 10px 4px 8px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            line-height: 1.2;
        }

        .ofertas-roleta-tipos button small {
            font-size: 10px;
            font-weight: 600;
            color: #888;
        }

        .ofertas-roleta-tipos button small .fa-star {
            color: #fbbf24;
            margin-right: 2px;
        }

        .ofertas-roleta-tipos button.active {
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            border-color: #288a00;
            color: #000000;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
        }

        .ofertas-roleta-tipos button.active small {
            color: rgba(255, 255, 255, 0.9);
        }

        .ofertas-roleta-tipos button[data-roda="ouro"]:not(.active) {
            border-color: #b8860b;
            color: #d4af37;
        }

        .ofertas-roleta-tipos button[data-roda="diamante"]:not(.active) {
            border-color: #7c6a9a;
            color: #b39ddb;
        }

        .ofertas-roleta-spins {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .ofertas-spin-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 999px;
            border: 2px solid #288a00;
            background: #151515;
            color: #288a00;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        .ofertas-spin-pill input {
            display: none;
        }

        .ofertas-spin-pill.active {
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            color: #000000;
            border-color: #288a00;
        }

        .ofertas-spin-pill.active::before {
            content: '✓';
            font-size: 11px;
            font-weight: 900;
        }

        .ofertas-roleta-hero {
            position: relative;
            padding: 8px 0 0;
            text-align: center;
        }

        .ofertas-roleta-hero::before {
            content: '';
            position: absolute;
            inset: 0 8% 60px;
            background: radial-gradient(circle, rgba(40, 138, 0, 0.22) 0%, transparent 70%);
            pointer-events: none;
        }

        .ofertas-roleta-wheel-wrap {
            position: relative;
            width: min(340px, 92vw);
            height: min(340px, 92vw);
            margin: 0 auto;
            z-index: 2;
        }

        .ofertas-wheel-spin {
            width: 100%;
            height: 100%;
            transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
            transform-origin: center center;
        }

        .ofertas-wheel-svg {
            width: 100%;
            height: 100%;
            display: block;
            overflow: visible;
        }

        .ofertas-wheel-disc-svg {
            transform-origin: 200px 200px;
        }

        .ofertas-wheel-center-overlay {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 22%;
            height: 22%;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            z-index: 4;
            pointer-events: none;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
        }

        .ofertas-wheel-center-overlay strong {
            font-size: clamp(14px, 4.5vw, 18px);
            line-height: 1;
        }

        .ofertas-wheel-center-overlay span {
            font-size: clamp(8px, 2.5vw, 10px);
            font-weight: 600;
            margin-top: 2px;
        }

        .ofertas-wheel-pointer {
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 6;
            width: 34px;
            height: 42px;
        }

        .ofertas-wheel-pointer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, #e8eef3 0%, #b8c5d0 45%, #8fa3b3 100%);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
        }

        .ofertas-wheel-pointer::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 24px;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
        }

        .ofertas-roleta-platform {
            position: relative;
            margin: -28px auto 0;
            max-width: min(340px, 92vw);
            height: 72px;
            z-index: 1;
        }

        .ofertas-roleta-platform-disc {
            position: absolute;
            left: 50%;
            bottom: 18px;
            transform: translateX(-50%);
            width: 78%;
            height: 28px;
            background: radial-gradient(ellipse at center, #3a3a3a 0%, #252525 55%, #1a1a1a 100%);
            border-radius: 50%;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
        }

        .ofertas-roleta-deco {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 22px;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 8px;
            padding: 0 6px;
        }

        .ofertas-roleta-gift {
            width: 44px;
            height: 38px;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
            position: relative;
        }

        .ofertas-roleta-gift::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
        }

        .ofertas-roleta-gift::after {
            content: '';
            position: absolute;
            top: 35%;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.85);
        }

        .ofertas-roleta-gift.center {
            width: 52px;
            height: 44px;
            font-size: 20px;
            margin-bottom: 4px;
        }

        .ofertas-roleta-coin-stack {
            color: #fbbf24;
            font-size: 22px;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
            margin-bottom: 2px;
        }

        .ofertas-roleta-historico {
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            margin: -6px 10px 0;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
            position: relative;
            z-index: 3;
        }

        .ofertas-roleta-hist-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid #333;
        }

        .ofertas-roleta-hist-tabs button {
            border: none;
            background: #151515;
            color: #888;
            padding: 14px 8px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
        }

        .ofertas-roleta-hist-tabs button.active {
            color: #288a00;
            background: #1c1c1c;
            border-bottom-color: #288a00;
        }

        .ofertas-roleta-hist-panel {
            display: none;
            padding: 12px 12px 20px;
        }

        .ofertas-roleta-hist-panel.active {
            display: block;
        }

        .ofertas-roleta-hist-filters {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            font-size: 11px;
            color: #888;
            background: #121212;
            border-radius: 8px;
            padding: 10px 12px;
            border: 1px solid #2a2a2a;
        }

        .ofertas-roleta-hist-select {
            border: 1px solid #333;
            background: #0f0f0f;
            color: #bcbdc3;
            border-radius: 6px;
            padding: 6px 10px;
            font-size: 11px;
        }

        .ofertas-roleta-hist-unid {
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }

        .ofertas-roleta-hist-acum {
            margin-left: auto;
        }

        .ofertas-roleta-hist-acum strong {
            color: #f59e0b;
        }

        .ofertas-roleta-hist-empty {
            text-align: center;
            padding: 12px 10px 24px;
            color: #288a00;
        }

        .ofertas-roleta-empty-icon {
            width: 72px;
            height: 86px;
            margin: 0 auto 14px;
            display: block;
        }

        .ofertas-roleta-hist-empty p {
            margin: 0;
            font-size: 12px;
            color: #bcbdc3;
        }

        .ofertas-roleta-hist-empty button {
            border: none;
            background: none;
            color: #288a00;
            font-weight: 700;
            cursor: pointer;
            padding: 0;
            text-decoration: underline;
        }

        .ofertas-btn-girar {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 12px auto 0;
            padding: 14px;
            font-size: 15px;
            border-radius: 10px;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            color: #000000;
            border: none;
            font-weight: 700;
            cursor: pointer;
        }

        .ofertas-vip-panel {
            display: none;
        }

        .ofertas-vip-panel.active {
            display: block;
        }

        .ofertas-hist-main-panel {
            display: none;
            padding: 8px 0;
        }

        .ofertas-hist-main-panel.active {
            display: block;
        }

        .ofertas-log-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .ofertas-log-list li {
            display: grid;
            grid-template-columns: 70px 1fr auto;
            gap: 8px;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 11px;
            color: #bcbdc3;
            align-items: center;
        }

        .ofertas-log-list .ofertas-log-valor {
            color: #fbbf24;
        }

        .ofertas-list-empty {
            text-align: center;
            padding: 24px 10px;
            color: #888;
        }

        .ofertas-roleta-hist-body:not(:empty) + .ofertas-roleta-hist-empty {
            display: none !important;
        }

        .ofertas-recompensas-msg {
            text-align: center;
            margin: 16px 0;
            color: #bcbdc3;
            font-size: 13px;
        }

        .ofertas-evento-img {
            width: 100%;
            display: block;
            border-radius: 10px;
        }

        .ofertas-evento-banner {
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            background: linear-gradient(135deg, #1a3d0a 0%, #288a00 50%, #1a2e14 100%);
            min-height: 100px;
        }

        .ofertas-evento-clickable {
            cursor: pointer;
        }

        .ofertas-evento-clickable:hover {
            opacity: 0.92;
        }

        body.ofertas-detalhe-aberto {
            overflow: hidden;
            background: #121212 !important;
        }

        body.ofertas-detalhe-aberto .ofertas-topbar,
        body.ofertas-detalhe-aberto .ofertas-page,
        body.ofertas-detalhe-aberto .layout-footer {
            display: none !important;
        }

        .ofertas-detalhe {
            position: fixed;
            inset: 0;
            z-index: 1200;
            background: #121212;
            display: flex;
            flex-direction: column;
            max-width: 520px;
            margin: 0 auto;
            left: 0;
            right: 0;
        }

        .ofertas-detalhe[hidden] {
            display: none !important;
        }

        .ofertas-detalhe-header {
            display: grid;
            grid-template-columns: 40px 1fr auto;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            background: #010401;
            border-bottom: 1px solid #2a2a2a;
            flex-shrink: 0;
        }

        .ofertas-detalhe-header h1 {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            line-height: 1.3;
        }

        .ofertas-detalhe-voltar,
        .ofertas-detalhe-historico {
            border: none;
            background: transparent;
            color: #288a00;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            padding: 4px;
        }

        .ofertas-detalhe-voltar {
            font-size: 18px;
        }

        .ofertas-detalhe-scroll {
            flex: 1;
            overflow-y: auto;
            padding: 12px 12px 8px;
        }

        .ofertas-detalhe-subhead {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .ofertas-detalhe-subhead button {
            border: none;
            background: transparent;
            color: #288a00;
            font-size: 12px;
            cursor: pointer;
        }

        .ofertas-detalhe-intro {
            margin: 0 0 12px;
            font-size: 12px;
            color: #aaa;
            line-height: 1.4;
        }

        .ofertas-detalhe-tier {
            display: grid;
            grid-template-columns: 42px 1fr auto;
            gap: 10px;
            align-items: center;
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 10px 12px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .ofertas-detalhe-tier-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 16px;
        }

        .ofertas-detalhe-tier-info strong {
            display: block;
            font-size: 12px;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .ofertas-detalhe-progress {
            height: 6px;
            background: #2a2a2a;
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 4px;
        }

        .ofertas-detalhe-progress span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, #288a00 0%, #00B066 100%);
            border-radius: 999px;
        }

        .ofertas-detalhe-tier-info small {
            font-size: 11px;
            color: #888;
        }

        .ofertas-detalhe-btn-dep {
            border: none;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            color: #000000;
            font-size: 11px;
            font-weight: 700;
            padding: 8px 12px;
            border-radius: 999px;
            cursor: pointer;
            white-space: nowrap;
        }

        .ofertas-detalhe-btn-dep:hover {
            filter: brightness(1.08);
        }

        .ofertas-detalhe-secao {
            background: #1c1c1c;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        }

        .ofertas-detalhe-secao-titulo {
            display: inline-block;
            background: linear-gradient(90deg, #00B066 0%, #288a00 100%);
            color: #000000;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 0 20px 20px 0;
            margin: 0 0 10px -12px;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
        }

        .ofertas-detalhe-secao p,
        .ofertas-detalhe-secao ol {
            margin: 0;
            font-size: 12px;
            line-height: 1.55;
            color: #bcbdc3;
            padding-left: 0;
        }

        .ofertas-detalhe-secao strong {
            color: #288a00;
        }

        .ofertas-detalhe-secao ol {
            padding-left: 18px;
        }

        .ofertas-detalhe-secao li + li {
            margin-top: 8px;
        }

        .ofertas-detalhe-thumbs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding: 10px 12px;
            background: #010401;
            border-top: 1px solid #2a2a2a;
            flex-shrink: 0;
        }

        .ofertas-detalhe-thumbs::-webkit-scrollbar {
            display: none;
        }

        .ofertas-detalhe-thumb {
            flex: 0 0 72px;
            border: 2px solid #333;
            border-radius: 8px;
            background: #1c1c1c;
            padding: 4px;
            cursor: pointer;
            text-align: center;
        }

        .ofertas-detalhe-thumb.active {
            border-color: #288a00;
            box-shadow: 0 0 0 1px #288a00;
        }

        .ofertas-detalhe-thumb img {
            width: 100%;
            height: 36px;
            object-fit: cover;
            border-radius: 4px;
            display: block;
        }

        .ofertas-detalhe-thumb span {
            display: block;
            font-size: 8px;
            color: #888;
            margin-top: 4px;
            line-height: 1.2;
        }

        .ofertas-detalhe-footer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 12px;
            background: #010401;
            border-top: 1px solid #2a2a2a;
            flex-shrink: 0;
        }

        .ofertas-detalhe-btn-retornar,
        .ofertas-detalhe-btn-receber {
            padding: 12px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
        }

        .ofertas-detalhe-btn-retornar {
            border: 2px solid #288a00;
            background: transparent;
            color: #288a00;
        }

        .ofertas-detalhe-btn-retornar:hover {
            background: rgba(40, 138, 0, 0.1);
        }

        .ofertas-detalhe-btn-receber {
            border: none;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            color: #000000;
        }

        .ofertas-detalhe-btn-receber:hover {
            filter: brightness(1.08);
        }

        .ofertas-detalhe-header-spacer {
            width: 40px;
        }

        .ofertas-detalhe-telegram {
            margin: 0 0 12px;
            font-size: 11px;
            color: #aaa;
            line-height: 1.5;
            word-break: break-all;
        }

        .ofertas-detalhe-telegram a {
            color: #288a00;
            text-decoration: none;
        }

        .ofertas-detalhe-destaque {
            color: #fff !important;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .ofertas-detalhe-lista {
            margin: 10px 0 0;
            padding-left: 18px;
            color: #bcbdc3;
            font-size: 12px;
            line-height: 1.55;
        }

        .ofertas-detalhe-lista li + li {
            margin-top: 8px;
        }

        .ofertas-hot {
            display: inline-block;
            background: #e53935;
            color: #fff;
            font-size: 8px;
            font-weight: 800;
            padding: 1px 4px;
            border-radius: 3px;
            vertical-align: middle;
            margin-left: 2px;
        }

        .ofertas-detalhe-tabela-wrap {
            overflow-x: auto;
            margin-top: 4px;
        }

        .ofertas-detalhe-tabela {
            width: 100%;
            border-collapse: collapse;
            font-size: 11px;
        }

        .ofertas-detalhe-tabela th,
        .ofertas-detalhe-tabela td {
            border: 1px solid #333;
            padding: 8px 6px;
            text-align: center;
            color: #bcbdc3;
        }

        .ofertas-detalhe-tabela th {
            background: #252525;
            color: #fff;
            font-weight: 700;
            font-size: 10px;
        }

        .ofertas-detalhe-tabela tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }

        .ofertas-detalhe-tabela tbody tr:hover {
            background: rgba(40, 138, 0, 0.08);
        }

        .ofertas-promover-convite {
            background: #1c1c1c;
            border: 1px solid #3a3a3a;
            border-radius: 12px;
            padding: 14px 12px 10px;
            margin-bottom: 14px;
        }

        .ofertas-promover-convite-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .ofertas-promover-convite-top > strong {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
        }

        .ofertas-promover-codigo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #888;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .ofertas-promover-codigo strong {
            color: #288a00;
            font-size: 13px;
            font-weight: 800;
        }

        .ofertas-promover-codigo .ofertas-promover-copy {
            border: none;
            background: transparent;
            color: #288a00;
            cursor: pointer;
            padding: 2px;
            font-size: 12px;
        }

        .ofertas-promover-convite-body {
            display: grid;
            grid-template-columns: 108px 1fr;
            gap: 10px;
            align-items: start;
        }

        .ofertas-promover-qr {
            text-align: center;
        }

        .ofertas-promover-qr img {
            width: 100%;
            max-width: 108px;
            border-radius: 6px;
            background: #fff;
            padding: 3px;
            display: block;
            margin: 0 auto;
        }

        .ofertas-promover-qr-save {
            display: block;
            width: 100%;
            margin-top: 8px;
            padding: 7px 4px;
            font-size: 9px;
            font-weight: 700;
            color: #000000;
            background: linear-gradient(180deg, #288a00 0%, #00B066 100%);
            border-radius: 6px;
            text-decoration: none;
            text-align: center;
            line-height: 1.2;
        }

        .ofertas-promover-link-area {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }

        .ofertas-promover-link-box {
            display: flex;
            align-items: center;
            gap: 4px;
            background: #121212;
            border: 1px solid #3a3a3a;
            border-radius: 8px;
            padding: 8px 8px;
        }

        .ofertas-promover-link-box input {
            flex: 1;
            border: none;
            background: transparent;
            color: #bcbdc3;
            font-size: 10px;
            min-width: 0;
        }

        .ofertas-promover-link-chevron {
            color: #666;
            font-size: 10px;
            flex-shrink: 0;
        }

        .ofertas-promover-link-box .ofertas-promover-copy {
            border: none;
            background: transparent;
            color: #288a00;
            cursor: pointer;
            padding: 2px;
            font-size: 13px;
            flex-shrink: 0;
        }

        .ofertas-promover-share {
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }

        .ofertas-promover-share-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid #3a3a3a;
            background: #252525;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            flex-shrink: 0;
        }

        .ofertas-promover-share-btn.share-main {
            width: 46px;
            height: 46px;
        }

        .ofertas-promover-share-btn span {
            font-size: 8px;
            color: #888;
            margin-top: 2px;
            line-height: 1;
        }

        .ofertas-promover-share-btn.whatsapp { color: #25d366; }
        .ofertas-promover-share-btn.telegram { color: #29b6f6; }
        .ofertas-promover-share-btn.facebook { color: #1877f2; }

        .ofertas-promover-convite-foot {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            padding-top: 10px;
            border-top: 1px solid #333;
            font-size: 11px;
            color: #888;
        }

        .ofertas-promover-convite-foot strong {
            color: #288a00;
        }

        .ofertas-promover-refresh,
        .ofertas-promover-detalhes {
            border: none;
            background: transparent;
            color: #288a00;
            cursor: pointer;
            font-size: 11px;
            padding: 0;
        }

        .ofertas-promover-refresh {
            font-size: 13px;
        }

        .ofertas-promover-detalhes {
            margin-left: auto;
            font-weight: 600;
        }

        .ofertas-promover-info {
            text-align: center;
            font-size: 12px;
            color: #288a00;
            line-height: 1.55;
            margin: 0 0 18px;
            font-weight: 500;
        }

        .ofertas-promover-grid {
            margin-bottom: 16px;
            padding: 0 2px;
        }

        .ofertas-promover-band {
            margin-bottom: 2px;
        }

        .ofertas-promover-band-final .ofertas-promover-down {
            display: none;
        }

        .ofertas-promover-row {
            display: grid;
            grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
            align-items: start;
            column-gap: 0;
        }

        .ofertas-promover-row-single {
            grid-template-columns: 1fr;
            max-width: 25%;
        }

        .ofertas-promover-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 0;
        }

        .ofertas-promover-card {
            width: 100%;
            min-height: 44px;
            background: linear-gradient(180deg, #5a5a5a 0%, #3d3d3d 50%, #2e2e2e 100%);
            border: 1px solid #555;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            padding: 6px 3px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .ofertas-promover-card-final {
            border-color: #288a00;
        }

        .ofertas-promover-card-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #1a1a1a;
            border: 1px solid #444;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: #fff;
            line-height: 1;
        }

        .ofertas-promover-card-label {
            font-size: 9px;
            color: #fff;
            text-align: center;
            line-height: 1.15;
            font-weight: 600;
            white-space: nowrap;
        }

        .ofertas-promover-reward {
            font-size: 11px;
            font-weight: 700;
            color: #288a00;
            margin-top: 5px;
            text-align: center;
        }

        .ofertas-promover-arrow {
            color: #288a00;
            font-size: 13px;
            font-weight: 800;
            text-align: center;
            align-self: center;
            padding-top: 14px;
            line-height: 1;
            letter-spacing: -2px;
        }

        .ofertas-promover-down {
            height: 18px;
            margin: 2px 0 4px;
        }

        .ofertas-promover-down-ltr {
            text-align: right;
            padding-right: 10%;
        }

        .ofertas-promover-down-rtl {
            text-align: left;
            padding-left: 10%;
        }

        .ofertas-promover-arrow-v {
            display: inline-block;
            transform: rotate(90deg);
            padding-top: 0;
            font-size: 14px;
            letter-spacing: -3px;
        }

        .ofertas-promover-band-final {
            margin-top: 4px;
        }

        @media (max-width: 380px) {
            .ofertas-promover-convite-body {
                grid-template-columns: 96px 1fr;
            }

            .ofertas-promover-card-label {
                font-size: 8px;
            }

            .ofertas-promover-arrow {
                font-size: 11px;
                padding-top: 12px;
            }
        }

        .ofertas-vip-tabela-secao {
            padding: 0;
            overflow: hidden;
        }

        .ofertas-vip-tabela-secao .ofertas-detalhe-tabela-wrap {
            margin: 0;
        }

        .ofertas-vip-tabela {
            font-size: 10px;
        }

        .ofertas-vip-tabela th,
        .ofertas-vip-tabela td {
            padding: 7px 4px;
            white-space: nowrap;
        }

        .ofertas-vip-tabela thead th {
            position: sticky;
            top: 0;
            z-index: 2;
            background: #252525;
        }

        .ofertas-vip-nota {
            margin-top: 12px;
            margin-bottom: 0;
            font-size: 11px;
            color: #aaa;
            line-height: 1.5;
        }

        .ofertas-vip-nota strong {
            color: #288a00;
        }
