.slots-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.slots-machine {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  box-shadow: var(--shadow-md);
}

.slots-reel {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  user-select: none;
}

.slots-reel--blur {
  filter: blur(2px);
  opacity: 0.85;
}

.slots-status {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  min-height: 1.5em;
}

.slots-status--win {
  color: var(--accent);
}

.slots-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
