.container_bingo_inicio {
  max-width: 1200px;
  padding: 20px;
  margin-left: -7px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  margin: 0;
  font-size: 36px;
}

.left_bingo,
.right_bingo {
  flex: 1;
  min-width: 500px;
  box-sizing: border-box;
  line-height: 1.2;
  color: #6dff2e;
}

.countdown_bingo {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.prizes {
  text-align: center;
  margin-bottom: 30px;
}

.prizes div {
  margin: 5px 0;
  font-size: 18px;
}

.purchase {
  background-color: #2a2a4e;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.purchase h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.purchase button {
  display: block;
  background-color: #001945;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  width: 100%;
}

.purchase button:hover {
  background-color: #0088cc;
}

.purchase .info {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

.bought-bingos {
  background-color: #2a2a4e;
  padding: 10px;
  border-radius: 8px;
}

.bought-bingos h3 {
  font-size: 20px;
}

.bought-bingos ul {
  list-style: none;
  padding: 0;
}

.bought-bingos li {
  margin: 5px 0;
  font-size: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  .countdown_bingo {
    font-size: 32px;
  }

  .prizes div {
    font-size: 16px;
  }

  .purchase h2 {
    font-size: 20px;
  }

  .purchase button {
    padding: 8px;
    font-size: 14px;
  }

  .bought-bingos h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .left_bingo,
  .right_bingo {
    min-width: 100%;
    line-height: 1.2;
    color: #6dff2e;
  }

  .countdown_bingo {
    font-size: 28px;
  }
}

.div-100 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
  justify-content: center;
}

.acao-compra {
  padding: 10px;
  background-color: #333;
  border-radius: 50%;
  color: #ffff00;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-100r {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.quadro-qtd {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bt-menos-mais {
  padding: 5px 10px;
  background-color: #333;
  color: #ffff00;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
}

#quantidade-compra {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  background-color: #222;
  color: #ffff00;
}

.input-valor input {
  width: 100px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  background-color: #222;
  color: #ffffff;
}

.bought-bingos {
  text-align: center;
}

#bingo-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

.cartela-comprada {
  margin: 10px 0;
  text-align: center;
  box-sizing: border-box;
}

.cartela-comprada h4 {
  color: #00ff22;
  font-size: 18px;
}

.cartela-comprada table {
  width: 100%;
}

.numeros {
  border-collapse: collapse;
  margin: 0 auto;
}

.numeros td {
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #000000;
  background-color: #054914;
  color: #ffee00;
  font-weight: bold;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.numeros td:not(:last-child) {
  margin-right: 5px;
}

.promo-bolao {
  background: linear-gradient(45deg, #ffcc00, #ff6600);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: pulse-border 1.5s infinite alternate;
  position: relative;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 102, 0, 1);
  }
}

.promo-bolao h4 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(85, 4, 4, 0.8);
  color: white;
  margin-bottom: 15px;
}

.banner-image {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.banner-image:hover {
  transform: scale(1.05);
}

.bingo-cartelas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bingo-cartela {
  width: 100%;
  max-width: 200px;
  background: #732222;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.bingo-cartela-numeros {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.bingo-cartela-numeros div {
  padding: 5px;
  background: #0e4683;
  border: 1px solid #1f85ff;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}

@media (max-width: 576px) {
  .bingo-cartela {
    max-width: 160px;
  }

  .bingo-cartela-numeros {
    grid-template-columns: repeat(5, 1fr);
  }
}
