body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Menu de cima */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  /* Ajuste a altura desejada */
  background: linear-gradient(180deg, #fff, #d9d9d9);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  z-index: 6666;
  /* Para garantir que o menu fique acima de outros elementos */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff, #d9d9d9);
  z-index: -1;
}

.menu a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}

.menu a:hover {
  background: linear-gradient(180deg, #fff, #d9d9d9);
}

.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;
}

.menu a:nth-child(1) img {
  max-width: 100%;
  /* Ajuste o tamanho da imagem do botão 1 */
}

.buttons-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.valor-box {
  width: 150px;
  height: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  align-items: center;
  line-height: 20px;
  display: block;
  margin: 0 auto;
}

.valor-box-saque {
  width: 90%;
  height: 100px;
  background-color: #ccc;
  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;
  background-image: linear-gradient(125deg, #dedede, #ccc);
}

.valor-box span {
  font-weight: bold;
  font-size: 17px;
}

#valor {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 21px;
}

#valor-saque {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 21px;
}

/* Menu de baixo */

.menuemb {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d9d9d9;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.menuemb a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  height: 50px;
}

.menuemb a:hover {
  background-color: #d9d9d9;
}

.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;
  margin: 0 auto;
  width: 90%;
  justify-content: center;
  align-items: center;
}

.square-button {
  border-radius: 12px;
  border: none;
  aspect-ratio: 1 / 1;
  margin: 5px;
  background-color: #ccc;
  color: #ccc;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.square-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Redimensiona a imagem para preencher o botão */
}

.square-button.active {
  background-color: #007bff;
  transform: scale(1.2);
}

.input-container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  margin: 0 auto;
}

.input-container input[type="text"] {
  width: 100%;
  font-size: 15px;
  color: #303030;
  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: 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-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: #007bff;
  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: #007bff;
  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: #ff0000;
  animation: progress 86400s 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%;
  /* Largura do retângulo */
  height: 270px;
  /* Altura do retângulo */
  background-color: #d9d9d9;
  /* 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: 100%;
  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 #007bff;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  vertical-align: middle;
}

.prosseguir-button {
  background-image: linear-gradient(125deg, #007bff, #007bff);
  width: 90%;
  border-radius: 12px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  font-weight: bold;
  margin: 0 auto;
}


.prosseguir-button1 {
  background-color: #00C45A;
  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: 75%;
  /* 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: 25px;
  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: 50px;
  width: 90%;
  border-radius: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.form-label,
.form-input {
  border-radius: 12px;
  width: 90%;
  justify-content: center;
  display: flex;
  margin: 0 auto;
  box-sizing: border-box;
  /* Adicionado para incluir borda e preenchimento nas dimensões */
  text-align: center;
  font-size: 16px;
}

.form-input {
  border: 1px solid #202020;
  height: 40px;
  line-height: 40px;
}

.form-label {
  height: 35px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  background-color: rgb(99, 99, 99);
  line-height: 35px;
  margin-bottom: 15px;
}