/* Adicionais de Estilo */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Transições suaves para a barra circular */
#scoreCircle {
  transition: stroke-dashoffset 1s ease-out;
}
