
        body {
            background-color: #121212;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            /* Barra de rolagem moderna global */
            scrollbar-width: thin;
            scrollbar-color: #444 #1a1a1a;
        }
        
        /* Barra de rolagem moderna para todos os elementos */
        * {
            scrollbar-width: thin;
            scrollbar-color: #444 #1a1a1a;
        }
        
        *::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        *::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 4px;
        }
        
        *::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 4px;
            transition: background 0.2s ease;
        }
        
        *::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        *::-webkit-scrollbar-thumb:active {
            background: #666;
        }
        
        *::-webkit-scrollbar-corner {
            background: #1a1a1a;
        }

        /* Estilos para mensagem rolante */
        .mensagem-rolante {
            background: linear-gradient(135deg, #9D00FF 0%, #BF40FF 100%);
            color: #FFFFFF;
            padding: 12px 0;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            white-space: nowrap;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: relative;
            display: flex;
            align-items: center;
            z-index: 1;
        }
        .mensagem-conteudo {
            flex: 1;
            overflow: hidden;
            position: relative;
            margin-left: 40px;
        }
        .mensagem-conteudo::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 100%;
            background: linear-gradient(to right, #9D00FF 0%, transparent 100%);
            z-index: 5;
            pointer-events: none;
        }
        .texto-rolante {
            display: inline-block;
            animation: scroll-left 15s linear infinite;
            font-size: 15px;
            font-weight: bold;
            padding-left: 100%;
        }
        .mensagem-icone {
            font-size: 16px;
            animation: pulse 2s ease-in-out infinite;
            color: #FFFFFF;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
            50% { opacity: 0.7; transform: translateY(-50%) scale(1.1); }
        }


        /* Estilos para barra topo */
            .bonus-cadastro {
            width: 100%;
            position: relative;
            box-sizing: border-box;
            background-color: #9D00FF;
            color: #FFFFFF;
            text-align: center;
            padding: 5px;
            font-size: 15px;
            font-weight: bold;
            z-index: 999;
        }

        /* Estilos para o topo */
        .top-bar {
            background-color: #1E1E1E;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            padding: 10px 0;
        }
        /* Topbar fixa e estilo premium igual ao dashboard */
        .top-bar.topbar.t1 {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            padding: 0; /* alinhado com dashboard */
        }
        .topbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .topbar .left-section,
        .topbar .right-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .topbar .logo img {
            height: 34px;
            display: block;
        }
        /* Botões de autenticação no estilo dashboard */
        .topbar .auth-buttons { display: flex; gap: 10px; }
        .topbar .auth-btn {
            background: linear-gradient(135deg, #9D00FF, #BF40FF);
            color: #1a1a2e;
            border: none;
            border-radius: 10px;
            padding: 10px 16px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }
        .topbar .auth-btn:hover { transform: translateY(-1px); transition: transform 0.2s ease; }
        
        /* Ajuste de offset para não cobrir conteúdo */
        body { padding-top: 64px; }
        @media (max-width: 767px) {
            .topbar .left-section,
            .topbar .right-section { gap: 14px; }
            .topbar .logo img { height: 32px; }
            .top-bar.topbar.t1 { padding: 0; }
            .topbar.t1 { min-height: 56px; }
            .topbar.t1 .container { min-height: 56px; }
            .topbar.t1 .left-section,
            .topbar.t1 .right-section { height: 56px; }
            body { padding-top: 56px; }
        }
        @media (min-width: 768px) {
            .topbar.t1 { min-height: 64px; }
            .topbar.t1 .container { min-height: 64px; }
            .topbar.t1 .left-section,
            .topbar.t1 .right-section { height: 64px; }
            .topbar .left-section,
            .topbar .right-section { gap: 18px; }
        }
        .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 {
            width: 100px;
            height: auto;
        }
        .buttons {
            display: none; /* substituído por .auth-buttons */
            gap: 10px;
        }
        .button{
            padding: 10px 20px;
            background-color: #9D00FF;
            color: #FFFFFF;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
        }
        .button:hover {
            background-color: #BF40FF;
        } 

    /* 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: #9D00FF #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: #9D00FF; 
            transition: color 0.3s;
        }
        .close-sidebar:hover {
            color: #BF40FF;
        }

        /* Termos (idêntico ao dashboard) */
        .sidebartermo {
            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: 10001;
        }
        .sidebartermo.show { left: 0; }
        .sidebartermo-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: #9D00FF #121212;
        }
        .sidebartermo-content::-webkit-scrollbar { width: 8px; }
        .sidebartermo-content::-webkit-scrollbar-thumb { background-color: #121212; border-radius: 10px; }
        .sidebartermo-content::-webkit-scrollbar-thumb:hover { background-color: #121212; }
        .sidebartermo-content::-webkit-scrollbar-track { background: #121212; }
        .close-sidebartermo {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            color: #9D00FF; 
            transition: color 0.3s;
        }
        .close-sidebartermo:hover { color: #BF40FF; }

    /* Estilos para o slider */
    .slider-wrapper {
        max-width: 1200px;
        margin: 50px auto 40px auto;
    }
    .slider-container {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
    }
    .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .slide {
        flex: 0 0 100%;
        height: auto;
    }
    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        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: #9D00FF;
        }

    /* Estilos para busca */ 
        .busca-container {
            margin: 5px auto 0 auto;
            text-align: center;
            width: 100%;
            max-width: 1200px;
        }
        .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: #9D00FF;
        }
        .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 #9D00FF;
            box-shadow: 0 0 5px #9D00FF33; 
        }
        .busca-container,
        .busca-input-icon,
        .busca-input {
            box-sizing: border-box;
        }
        .busca-resultado {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        .busca-tabela-resultado {
            width: 100%;
            max-width: 1200px;
            margin: 5px auto;
            border-collapse: collapse;
            background-color: #1E1E1E;
            color: #fff;
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            table-layout: fixed;
        }
        .busca-tabela-resultado td {
            padding: 8px 10px;
            vertical-align: middle;
            overflow: hidden;
        }
        .col-img {
            width: 60px;
            text-align: center;
            padding-left: 5px; 
            padding-right: 5px;
        }
        .col-nome {
            width: 45%;
            font-size: 16px;
        }
        .col-jogadores {
            overflow: visible !important;  
            white-space: normal !important; 
            text-overflow: clip !important; 
            font-size: 12px;
            text-align: center;
        }
        .col-jogar {
            width: 120px;
            text-align: right;
        }
        .busca-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 5px;
            background-color: transparent;
        }
        .btn-jogar {
            padding: 6px 12px;
            background-color: #9D00FF;
            border: none;
            color: #FFFFFF;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        .btn-jogar:hover {
            background-color: #BF40FF;
        }
        .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: 10px auto 0 auto;
            max-width: 1200px;
        }
        .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: 35px;
            color: #ffc107;
        }
        .ganhos-fixo span {
            line-height: 1.5;
        }
        .ganhos-rolando {
            flex: 1;
            overflow: hidden;
            position: relative;
            height: 100%;
        }
        .ganhos-slider {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .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: #9D00FF;
            font-weight: bold;
        }

    /* Listagem dos jogos (padronizado com o dashboard) */  
        .lista-jogos, .aovivo-resultados {
            background-color: #121212;
            padding: 20px;
            margin-top: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .lista-jogos .jogos-container {
            display: flex;
            overflow-x: auto;
            gap: 12px; /* espaço entre os cards */
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
            padding-bottom: 10px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .lista-jogos .jogos-container::-webkit-scrollbar { display: none; }
        /* Seção "Todos os jogos" mantém comportamento de grid apenas no desktop */
        @media (min-width: 769px) {
            #jogosCarregaveis {
                display: grid !important;
                grid-template-columns: repeat(6, 1fr) !important;
                overflow: visible !important;
                padding-bottom: 0 !important;
            }
            #jogosCarregaveis .jogo-card {
                min-width: auto !important;
                flex-shrink: initial !important;
            }
        }
        /* Grade para a seção filtrada por categoria */
        #jogos-categoria-filtrada .jogos-container {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }
        #jogos-categoria-filtrada .jogos-container .sem-resultado-box {
            grid-column: 1 / -1;
            justify-self: center;
            width: min(800px, 100%);
        }
        .titulo-lista-jogos, .aovivo-titulo {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: bold;
            margin: 20px 0 10px;
            color: #fff;
        }
        /* container de título + setas (compatível caso usado futuramente) */
        .titulo-wrapper { display:flex;justify-content:space-between;align-items:center;margin:10px 0 10px; }
        .titulo-wrapper .titulo-lista-jogos{ margin:0 }
        .nav-arrows{ display:flex; gap:10px }
        .nav-arrow{ background:transparent; border:1px solid rgba(255,255,255,.2); color:#fff; border-radius:6px; padding:0px 10px; cursor:pointer }
        @media (min-width: 1050px) { .nav-arrow:hover{ border-color: #9D00FF; color: #9D00FF } }

        .lista-jogos .jogo-card {
            background-color: #1E1E1E;
            height: auto;
            aspect-ratio: 4 / 5; /* proporção mais alta e consistente */
            border-radius: 12px;
            position: relative;
            overflow: hidden; /* recorta a imagem cover nos cantos arredondados */
            isolation: isolate; /* garante que o clip funcione dentro do card */
            background-size: contain;      
            background-repeat: no-repeat;   
            background-position: center;
            cursor: pointer;
            transition: transform 0.3s;
            min-width: calc((100% - 60px) / 6); /* 6 cards visíveis considerando 5 gaps de 12px */
            flex-shrink: 0;
        }
        .lista-jogos .jogo-card:hover { transform: scale(1.05); }
        .lista-jogos .jogo-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* preenche o card */
            object-position: center;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            border-radius: 12px;
            background-color: transparent;
            transform: scale(0.97);
        }
        .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;
            border-radius: 12px;
            padding: 0; /* acompanha exatamente a imagem */
        }
        .lista-jogos .jogo-card:hover .jogo-overlay { opacity: 1; }
        .lista-jogos .jogar-btn {
            background-color: #9D00FF;
            border: none;
            color: #FFFFFF;
            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;
            pointer-events: none; /* não interfere no hover */
        }
        .lista-jogos .jogo-info .nome { font-size: 14px; display: none; }
        .lista-jogos .jogo-info .jogadores {
            margin-top: 4px;
            font-size: 12px;
            display: none; /* oculta jogadores para ficar idêntico ao dashboard */
            align-items: center;
            justify-content: center;
            gap: 0px;
        }
        .jogadores-text { margin-left: 4px; }
        .btn-ver-mais {
            padding: 10px 20px;
            background-color: #9D00FF;
            color: #FFFFFF;
            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: #BF40FF;
        }

    /* 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;
        }
        .overlay.show {
            display: block;
        }
        .modal {
            display: none; 
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #1E1E1E;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            z-index: 1000;
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            border-radius: 5px;
            overflow: hidden;
        }
        .modal-content {
            max-height: calc(85vh - 40px);
            overflow-y: auto;
        } 
        .modal-content h2 {
            margin: 0 0 15px 0; 
            font-size: 24px;
            color: #9D00FF;
            text-align: center; 
        }
            .modal.show {
            display: block;
        }
        .close-modal {
            position: absolute; 
            top: 10px; 
            right: 10px; 
            font-size: 18px; 
            color: #9D00FF; 
            cursor: pointer;
        }
        .close-modal:hover {
            color: #BF40FF; 
        }
        .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: #9D00FF; 
            pointer-events: none; 
        }
        .input-icon i:hover {
            color: #BF40FF; 
        }
        .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: #9D00FF;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            margin-top: 0px; 
            font-size: 16px; 
            font-weight: bold;
        }
        .submit-button:hover {
            background-color: #BF40FF;
        } 
        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: #9D00FF; 
            text-decoration: none; 
            font-weight: bold; 
            cursor: pointer;
        }
        .termos a:hover {
            text-decoration: underline; 
            color: #BF40FF;
        }
        .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: #9D00FF;
            text-decoration: none;
            font-size: 14px; 
        }
        .recover-password a:hover,
        .log-in a:hover,
        .create-account a:hover {
            color: #BF40FF;
        }
        .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: #9D00FF;
            text-align: center;
            display: block;
            cursor: pointer;
            line-height: 24px;
        }

    /* Listagem ao vivos */
        .online-dot-red {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 6px;
            background-color: #FF3B30;
            border-radius: 50%;
            animation: piscarred 1s infinite;
            vertical-align: middle;
        }
        @keyframes piscarred {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .aovivo-wrapper {
            width: 400px;
            margin: 0 auto;
        }
        #aovivo-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .aovivo-entry {
            padding: 10px;
            background: #1E1E1E;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
        }
        .aovivo-entry img {
            width: 40px;
            height: 40px;
            border-radius: 5px;
        }
        .aovivo-info {
            margin-left: 8px;
            font-size: 13px;
        }
        .aovivo-amount {
            color: #9D00FF;
            font-weight: bold;
        }

        /* Estilos para o footer */
        .footer {
            color: #fff;
            width: 100%;
            padding: 40px 0 20px;
        }
        .footer .container-footer {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: nowrap;
            gap: 5px;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .footer-column:first-child {
            display: flex;
            justify-content: center;   
            align-items: center;       
            min-height: 100%;          
        }
        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #9D00FF;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li {
            margin-bottom: 5px;
        }
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }
        .footer-column ul li a:hover {
            text-decoration: none;
        }
        .footer img {
            max-width: 150px;
        }
        .footer img.pix-logo {
            max-width: 100px !important;
        }
        .social-icons a {
            margin-right: 10px;
            font-size: 24px;
            color: #fff;
            transition: color 0.3s;
        }
        .footer-line {
            border-top: 1px solid #444;
            margin: 30px auto;
            max-width: 1200px;
        }
        .footer-text {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 12px;
            color: #ccc;
            line-height: 1.6;
            padding: 0 20px;
        }
        .ver-mais-btn {
            padding: 10px 20px;
            background-color: #9D00FF;
            color: #FFFFFF;
            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: #BF40FF;
        }
        .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;
        }

        /* ==============================
           Missões - Header (Variação 2)
           ============================== */
        .missoes-container {
          width: 100%;
          max-width: 1000px;
          margin: 20px auto 10px;
          padding: 0 20px;
          box-sizing: border-box;
        }

        .missoes-header {
          background: #1a1a1a;
          border: 1px solid #262626;
          border-radius: 14px;
          padding: 16px 16px 12px;
          box-shadow: 0 6px 18px rgba(0,0,0,0.45);
        }

        .missoes-title {
          margin: 0 0 6px 0;
          padding: 0;
          color: #9D00FF;
          font-size: 24px;
          font-weight: 800;
          display: flex;
          align-items: center;
          gap: 10px;
        }
        .missoes-title i { color: #9D00FF; font-size: 22px; }

        .missoes-controls {
          display: grid;
          grid-template-columns: 1fr auto;
          gap: 14px;
          align-items: end;
        }

        .filtros-container {
          display: flex;
          align-items: center;
          gap: 26px;
          position: relative;
          padding-bottom: 12px;
        }
        .filtros-container::after {
          content: "";
          position: absolute;
          left: 0; right: 0; bottom: 0;
          height: 3px;
          background: #9D00FF;
          opacity: .85;
          border-radius: 2px;
        }

        .filtro-btn {
          background: transparent;
          border: none;
          color: #c8c8c8;
          font-weight: 700;
          font-size: 16px;
          padding: 8px 0;
          cursor: pointer;
          transition: color .2s ease;
        }
        .filtro-btn:hover { color: #fff; }
        .filtro-btn.active {
          color: #9D00FF;
          border-bottom: 3px solid #9D00FF;
          margin-bottom: -3px; /* sobrepõe a linha base */
        }

        .actions-container {
          display: grid;
          grid-template-columns: 1fr auto;
          gap: 12px;
        }

        .sort-toggle {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 12px;
        }
        .sort-btn {
          background: #2a2a2a;
          color: #ffffff;
          border: 1px solid #2f2f2f;
          border-radius: 14px;
          padding: 12px 14px;
          font-weight: 800;
          cursor: pointer;
          transition: background .2s ease, color .2s ease, transform .06s ease;
        }
        .sort-btn:active { transform: translateY(1px); }
        .sort-btn.active {
          background: #9D00FF;
          color: #000;
          border-color: #9D00FF;
        }

        .btn-atualizar {
          background: #9D00FF;
          color: #000;
          border: none;
          border-radius: 14px;
          padding: 12px 16px;
          font-weight: 900;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          transition: filter .2s ease, transform .06s ease;
        }
        .btn-atualizar:hover { filter: brightness(1.05); }
        .btn-atualizar:active { transform: translateY(1px); }
        .btn-atualizar i { font-size: 14px; }

        /* Estado vazio dentro de Minhas Missões */
        .empty-state {
          background: #151515;
          border: 1px dashed #2a2a2a;
          border-radius: 12px;
          padding: 28px 18px;
          color: #cfcfcf;
          text-align: center;
        }
        .empty-state i { color: #9D00FF; font-size: 26px; margin-bottom: 8px; }

        /* Grid de Missões (container já existe na página) */
        .missoes-grid { margin-top: 14px; }

    @media (max-width: 768px) {
            /* Estilos para barra topo */
            .top-bar {
                padding: 5px 0;
            }
            .bonus-cadastro {
                font-size: 3.5vw;
            }

            /* Estilos para o modal */ 
            .modal {
                width: calc(100% - 80px);
                max-width: none; 
            }
            .input-icon input {
                font-size: 16px;
            }

            /* Estilos para o slider em mobile */
             .slider-wrapper {
                 margin: 20px auto;
                 max-width: 1000px;
                 width: 100%;
                 padding: 0 1px;
                 box-sizing: border-box;
             }
             .slider-container {
                 width: 100%;
                 max-width: 1000px;
                 height: auto;
             }
             .slide {
                 height: auto;
             }
             .slide img {
                 width: 100%;
                 height: auto;
                 object-fit: contain;
                 border-radius: 10px;
             }

            /* Estilos para o footer */
            .footer .container-footer {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                justify-content: center;
                gap: 8px;
            }
            .footer-column:nth-child(1) {
                display: none;
            }
            .footer-column {
                min-width: 0; /* sobrescreve min-width:200px do desktop */
                box-sizing: border-box;
                margin: 5px 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .footer-column:nth-child(2),
            .footer-column:nth-child(3) { order: 1; }
            .footer-column:nth-child(4),
            .footer-column:nth-child(5) { 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 em mobile (idêntico ao dashboard) */ 
            .lista-jogos{ padding: 0 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; 
                scroll-snap-type: x mandatory; /* rolagem encaixada */
            }
            /* 3 cards visíveis por viewport mantendo scroll horizontal */
            .lista-jogos .jogo-card {
                min-width: calc((100% - 24px) / 3); /* 3 colunas considerando 2 gaps de 12px */
                scroll-snap-align: start;
                aspect-ratio: 4 / 5; /* garante proporção consistente no mobile */
            }
            /* Em mobile, para a grade filtrada queremos 3 colunas e sem scroll horizontal */
            #jogos-categoria-filtrada .jogos-container {
                display: grid !important;
                overflow: visible !important;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px;
                padding: 0 6px; /* respiro lateral */
                box-sizing: border-box;
            }
            #jogos-categoria-filtrada .jogo-card { 
                min-width: 0 !important; 
                width: 100% !important; 
                height: auto !important;
                aspect-ratio: 4 / 5 !important;
            }
            .lista-jogos .jogo-img, #jogos-categoria-filtrada .jogo-img { border-radius: 12px; }
            #jogos-categoria-filtrada .jogos-container .jogo-card { min-width: 0; }
            #jogos-categoria-filtrada .jogos-container .sem-resultado-box {
                grid-column: 1 / -1;
                justify-self: center;
                width: calc(100% - 30px);
            }
            .lista-jogos .jogos-container::-webkit-scrollbar { display: none; }
            .lista-jogos .jogo-img { transform: scale(0.97); }
            .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;
            }
      
}

/* Categorias (idêntico ao dashboard) */
.categorias-container {
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}
.categorias-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categorias-grid::-webkit-scrollbar { display: none; }

@media (max-width: 480px) {
  .categorias-container { padding: 0 8px; }
  .categorias-grid { gap: 8px; }
  .categoria-item { min-width: calc(20% - 6.4px); max-width: calc(20% - 6.4px); flex-shrink: 0; }
}
@media (min-width: 481px) and (max-width: 767px) {
  .categorias-container { padding: 0 15px; }
  .categorias-grid { gap: 12px; }
  .categoria-item { min-width: calc(20% - 9.6px); max-width: calc(20% - 9.6px); flex-shrink: 0; }
}
@media (min-width: 769px) {
  .categoria-item { min-width: calc(12.5% - 13px); max-width: calc(12.5% - 13px); flex-shrink: 0; }
}
.categoria-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-align: center;
}
.categoria-item:hover { transform: translateY(-2px); }
.categoria-imagem {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border: 2px solid #9D00FF80;
  transition: border-color 0.3s ease;
}
.categoria-item:hover .categoria-imagem { border-color: #9D00FF; }
.categoria-imagem img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  margin: auto;
}
.categoria-placeholder { color: #9D00FF; font-size: 24px; }
.categoria-nome {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  max-width: 80px;
  word-wrap: break-word;
  line-height: 1.2;
}
.categoria-selecionada .categoria-imagem { border-color: #9D00FF; box-shadow: 0 0 10px #9D00FF33; }
.categoria-selecionada .categoria-nome { color: #9D00FF; font-weight: 600; }

/* Estado vazio/erro em categorias ou buscas (idêntico ao dashboard) */
.sem-resultado-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  color: #fff;
  background-color: #1E1E1E;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px auto;
  max-width: 720px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.sem-resultado-box i {
  font-size: 28px;
  color: #9D00FF;
  flex-shrink: 0;
}
.sem-resultado-text { display: flex; flex-direction: column; }
.sem-resultado-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.sem-resultado-sub {
  font-size: 14px;
  color: #BCBDC3;
}

/* Centralização dentro da seção filtrada */
#jogos-categoria-filtrada { display: block; }
#jogos-categoria-filtrada .sem-resultado-box { margin-left: auto; margin-right: auto; }

/* Mobile: ocupa praticamente toda a largura útil */
@media (max-width: 767px) {
  .sem-resultado-box { max-width: calc(100% - 30px); padding: 16px 18px; }
}

/* Bottom Navigation Bar Styles (idêntico ao dashboard) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
   /* border-top: 2px solid #9D00FF; */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    padding: 4px 0 max(4px, env(safe-area-inset-bottom));
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 4px;
    position: relative;
    overflow: hidden;
}

.bottom-nav-item:hover {
    background: rgba(0, 199, 116, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item:active {
    transform: translateY(0);
    background: rgba(0, 199, 116, 0.2);
}

.bottom-nav-item i {
    font-size: 20px;
    color: #9D00FF;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover i {
    color: #9D00FF;
    transform: scale(1.1);
}

.bottom-nav-item span {
    font-size: 11px;
    color: #CCCCCC;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.bottom-nav-item:hover span {
    color: #9D00FF;
}

/* Mostrar bottom nav apenas no mobile */
@media (max-width: 1040px) {
    .bottom-nav { display: flex; }
    /* Espaço para não sobrepor conteúdo */
    body { padding-bottom: 40px; }
    /* Ajustar footer para a barra inferior */
    .footer { margin-bottom: 40px; }
}
