/* ===== PÁGINA DE PALPITES ===== */
.palpites-page .page-header {
  text-align: center;
  margin: 30px 0 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--secondary);
}

.palpites-page .page-header h1 {
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.palpites-page .round-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.palpites-page .round-badge {
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.palpites-page .bets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.palpites-page .bet-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--secondary);
}

.palpites-page .match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.palpites-page .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.palpites-page .team-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  object-fit: contain;
}

.palpites-page .bet-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.palpites-page .bet-inputs input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-weight: bold;
}

.palpites-page .bet-inputs input:focus {
  border-color: var(--secondary);
  outline: none;
}

.form-actions-palpites {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: #ffc107;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #e0e0e0;
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #d0d0d0;
}

.locked-rounds {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
  border-left: 4px solid var(--accent);
}

.locked-rounds h3 {
  color: var(--accent);
  margin-top: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-button {
  animation: pulse 2s infinite;
}
