/* Estilos específicos para o jogo da Milionária */
.trevos-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.trevo-number {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.trevo-number::before {
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
}

.trevo-number.selected {
  background: linear-gradient(135deg, #3d8b40, #689f38);
  box-shadow: 0 0 15px #4CAF50;
}

.trevo-number.excluded {
  background: linear-gradient(135deg, #f44336, #e53935);
  box-shadow: 0 0 15px #f44336;
}

/* Estilos para exibição dos resultados */
.combination-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  text-align: center;
  font-size: 1.1rem;
}

.main-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.trevos-title {
  font-weight: bold;
  margin: 0.5rem 0;
  color: var(--accent-color);
  text-align: center;
  font-size: 1rem;
}

.trevos-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .trevos-section {
      padding-top: 1rem;
      margin-top: 1rem;
  }
  
  .trevos-title, .combination-title {
      font-size: 0.9rem;
  }
}

/* Efeito hover para os trevos */
.trevo-number:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}