.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.spinNote {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  min-height: 1.4em;
}

.spinNote.is-win {
  color: var(--c-green-dark);
}

/* ── Botão principal ── */
.btn--spin {
  width: 100%;
  padding: 20px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-white);
  background: #f08707;
  box-shadow: var(--shadow-btn);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

/* Brilho interno */
.btn--spin::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  border-radius: inherit;
  pointer-events: none;
}

/* Partículas / confete decorativo */
.btn--spin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background-image:
    radial-gradient(circle, #151e2c 1.5px, transparent 1.5px),
    radial-gradient(circle, #151e2c 1.5px, transparent 1.5px),
    radial-gradient(circle, #4CAF50 1.5px, transparent 1.5px);
  background-size: 20px 20px, 30px 30px, 25px 25px;
  background-position: 5px 5px, 15px 10px, 2px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn--spin:not(.is-disabled):not(:disabled):hover::after {
  opacity: 0.5;
}

.btn--spin:not(.is-disabled):not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(240,135,7,0.45);
}

.btn--spin:not(.is-disabled):not(:disabled):active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,135,7,0.3);
}

.btn--spin.is-disabled,
.btn--spin:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #9E9E9E;
  box-shadow: none;
  transform: none;
}

.btn--spin.is-spinning {
  animation: spinBtnPulse 0.7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes spinBtnPulse {
  from { box-shadow: 0 6px 20px rgba(240,135,7,0.35); }
  to   { box-shadow: 0 10px 32px rgba(240,135,7,0.6); transform: translateY(-2px); }
}

/* Nota / disclaimer */
.actions__note {
  font-size: 0.72rem;
  color: #ffffff;
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
  padding: 0 4px;
}

.actions__note strong {
  font-weight: 700;
  color: #f08707;
}
