/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1f2937;
  margin: 0;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2rem;
  color: #2563eb;
}

/* Jogo Card */
.jogo {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-inline: auto;
}

.jogo h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.jogo p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Buttons */
.botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.botoes button {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s, transform 0.2s;
}

.botoes button i {
  font-size: 1rem;
  color: #fff;
}

.botoes button:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

/* Análise IA */
.analise-ia {
  background: #e8f0fe;
  padding: 15px;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.analise-ia strong {
  color: #1e3a8a;
}

/* Paginação */
#paginacao {
  text-align: center;
  margin-top: 30px;
}

#paginacao button {
  background: #e0f2fe;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 0 3px;
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 500;
  transition: 0.2s;
}

#paginacao button.ativo {
  background: #2563eb;
  color: #fff;
  border: none;
}

#paginacao button:hover {
  background: #93c5fd;
}

/* Botão Selecionado */
button.selecionado {
  background-color: #facc15 !important;
  color: #1f2937 !important;
}

button.selecionado i {
  color: #1f2937 !important;
}

/* Animação Spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Top Buttons */
#top-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

#top-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  font-family: Arial, sans-serif;
  color: #fff;
}

#btn-palpites-secretos {
  background: #6f42c1;
}

#btn-gps-dinheiro {
  background: #10b981;
}

#btn-palpites-ao-vivo {
  background: #e81ef3;
}

/* Modal Styles */
#modal-palpites > div,
#modal-gps > div {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modal-palpites button,
#modal-gps button {
  margin-top: 20px;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

#modal-palpites button {
  background: #6f42c1;
}

#modal-gps button {
  background: #10b981;
}

/* Responsive Design */
@media (max-width: 480px) {
  .botoes button,
  #modal-palpites button,
  #modal-gps button,
  #conteudo-palpites button {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }

  #top-buttons {
    flex-direction: column;
    gap: 16px;
  }

  #top-buttons button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}