body {
    background-color: #ffffff; /* Corrigido o background */
    margin: 0;
    padding: 10px; /* Aplicando o padding de 10px */
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Para garantir que o body ocupe toda a altura da tela */
    box-sizing: border-box;
}
/* Menu de cima */

.menu {
    position: fixed;
    top: 1%;
    width: 95%;
    height: 80px;
    /* Ajuste a altura desejada */
    background: linear-gradient(180deg, #232323, black);
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9998;
    /* Para garantir que o menu fique acima de outros elementos */
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007FFF;
    z-index: -1;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.menu a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.menu a img {
    max-width: 100%;
    /* Ajuste o tamanho máximo da imagem */
    max-height: 100%;
    /* Ajuste o tamanho máximo da imagem */
    display: block;
}

.buttons-container {
    display: flex;
    align-items: center;
    padding: 10px;
}

.valor-box {
    border: 2px solid white;
    height: auto;
    background-color: #007FFF;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    align-items: center;
    line-height: 20px;
    display: block;
    margin: 0 auto;
}

.valor-box-saque {
    color: white;
    border: 4px solid #007FFF;
    width: 90%;
    height: 130px;
    background-color: #007FFF;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    align-items: center;
    line-height: 20px;
    display: block;
    margin: 0 auto;
}

.valor-box span {
    font-weight: bold;
    font-size: 20px;
}

#valor {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
}

#valor-saque {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 21px;
}
/* Menu de baixo */

.menuemb {
    position: fixed;
    bottom: 1%;
    width: 95%;
    background-color: #007FFF;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.menuemb a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    height: 50px;
}

.menuemb a img {
    width: 100%;
    height: auto;
    display: block;
}
/* BOTÕES LIKE E DISLIKE*/

.like-dislike-buttons {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.like-button,
.dislike-button {
    border: 2px solid;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
    /* Centraliza o texto */
    margin: 0 auto;
    right: 5%;
    left: 5%;
}

.like-button {
    border-color: green;
    color: green;
    width: 49%;
    right: 5%;
    left: 5%;
    border-radius: 8px;
}

.dislike-button {
    border-color: red;
    color: red;
    width: 49%;
    right: 5%;
    left: 5%;
    border-radius: 8px;
}

.liked {
    background: linear-gradient(180deg, green, green);
    color: #fff;
}

.disliked {
    background: linear-gradient(180deg, red, red);
    color: #fff;
}

.button-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.square-button {
    border-radius: 12px;
    width: 80px;
    height: 80px;
    border: none;
    margin: 5px;
    background-color: #ccc;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.square-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Redimensiona a imagem para preencher o botão */
}

.square-button.active {
    background-color:  #007FFF;
    transform: scale(1.2);
}

.input-container {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

.input-container input[type="text"] {
    width: 100%;
    font-size: 15px;
    color: #303030;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}
/* POPUP SAQUE */

.popup-container {
    position: fixed;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    width: 85%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 10);
    display: none;
    z-index: 10000;
}

.popup-containerN {
    position: fixed;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 10);
    display: none;
    z-index: 10000;
    
}

.popup-close-button {
    background-color: transparent;
    color: #FF0000;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.popup-button {
    background-color: #FF0000;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.desbloquear-button {
    background-color: #007FFF;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}
/* POPUP LIMITE DE SAQUE */

.popup-containerL {
    position: fixed;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 10);
    display: none;
    z-index: 9999;
}

.popup-textL {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.popup-buttonL {
    background-color: #FF0000;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.desbloquear-buttonL {
    background-color: #FF6200;
    width: 95%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}
/* Style dos ícones do Google */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 30;
}
/* Barra de carregamento */

#progress-bar {
    width: 95%;
    height: 20px;
    background-color: #ddd;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

#progress-bar div {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007FFF;
    animation: progress 3s linear;
    /* ajustar segundos */
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
/* Caixa de login */

.loginbox {
    width: 90%;
    border: 4px solid #007FFF;
    /* Largura do retângulo */
    height: 270px;
    /* Altura do retângulo */
    background-color: white;
    /* Cor de fundo do retângulo */
    border-radius: 20px;
    /* Raio dos cantos do retângulo */
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.input-container {
    width: 85%;
    max-width: 400px;
    padding: 10px;
    box-sizing: border-box;
}

.input-container label {
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
    /* Espaçamento entre o título e a caixa */
}

.input-container input[type="text"] {
    width: 96%;
    font-size: 15px;
    color: #007bff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Estilo para a bolinha girando */

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    vertical-align: middle;
}

.prosseguir-button {
    font-family: "Arial";
    background-color: #007FFF;
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    font-weight: bold;
    margin: 0 auto;
}

.prosseguir-button1 {
    background: linear-gradient(135deg, #28a745, #06641c);
    width: 90%;
    border-radius: 8px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}
/* Sinal do mines */

table {
    height: 50%;
    width: 50%;
    border-spacing: 0;
    display: block;
    margin: 0 auto;
}

table td {
    width: 40px;
    height: 40px;
    padding: 0;
    border-spacing: 0;
    /* Remova o espaçamento entre células */
    background-color: #fff;
    text-align: center;
    /* Centraliza horizontalmente */
    vertical-align: middle;
    /* Centraliza verticalmente */
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}
/* iframe casa de aposta */

.preview-container {
    position: relative;
    padding-bottom: 150%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.preview-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* sinal do mines */

.card-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    width: 97%;
    margin: 0 auto;
}

.card {
    width: 100%;
    background-color: #202020;
    color: #ffffff;
    padding: 5px;
    margin: 4px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    text-align: center;
}

.card-title {
    font-size: 21px;
    font-weight: bold;
    color: #ffffff;
}

.card .card-title {
    font-size: 12px;
    margin-top: 10px;
}

.card-content {}

.output-value {
    font-size: 35px;
    font-weight: bold;
    margin-top: 10px;
    color: #ffffff;
}

#timer {
    font-size: 35px;
    font-weight: bold;
    margin-top: 10px;
    color: #ffffff;
}

.menu-image {
    width: 90%;
    /* Para ajustar a largura da imagem ao link */
    padding-top: 75%;
    /* Proporção de largura para altura (exemplo: 3:4) */
    background-size: cover;
    /* Redimensiona a imagem para cobrir todo o elemento */
    background-position: center;
    /* Centraliza a imagem */
}

.criar-conta {
    background-color: #d9d9d9;
    width: 90%;
    border-radius: 8px;
    color: #4a4a4a;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}
/* Notificação de dinheiro */

.notificacaoDinheiro {
    display: none;
    margin: 0 auto;
    position: fixed;
    top: -100px;
    /* Posiciona a notificação acima da tela */
    left: 0;
    right: 0;
    color: #333;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(125deg, #5575FD, #2B50F0);
    z-index: 9999;
    height: 50px;
    width: 60%;
    border-radius: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.notificacaoDinheiro.activeDinheiro {
    display: block;
    animation: slideInDinheiro 0.5s forwards;
}

.notificacaoDinheiro.activeDinheiro.slideOutDinheiro {
    animation: slideOutDinheiro 0.5s forwards;
}

@keyframes slideInDinheiro {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

@keyframes slideOutDinheiro {
    from {
        top: 0;
    }
    to {
        top: -100px;
    }
}
/* Slogan inicio */

.slogan-inicio {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-color: #7a7a7a;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    height: 70px;
    width: 95%;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.white-box {
    display: block;
    margin: 0 auto;
    background-color: white;
    height: 100%;
    width: 90%;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.wbc {
    text-align: center;
}

.gerarCodigo {
    font-size: 20px;
    width: 288px;
    justify-content: center;
    align-items: center;
    height: 40px;
    display: flex;
    margin: 0 auto;
    background-color: #007FFF;
    border: 0;
    color: white;
    font-weight: bold;
    border-radius: 12px;
}

.enviarCodigo {
    height: 40px;
    display: block;
    margin: 0 auto;
    background: #007FFF;
    border: 0;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    width: 100%;
    margin-top: 10px;
}

.centro {
    border: 4px solid #007FFF;
    display: block;
    margin: 0 auto;
    background-color: white;
    height: 100%;
    width: 85%;
    border-radius: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-item {
    width: 100%;
    flex: 1 0 100%;
}

.carousel img {
    width: 95%;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}