.sl-machine {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(60, 40, 20, 0.5), rgba(20, 14, 30, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sl-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 380px;
}

.sl-reel {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(160deg, #f8fbff, #cdd9ef);
  color: #16233f;
  font-weight: 800;
  font-size: clamp(1.6rem, 8vw, 2.8rem);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.sl-betrow {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sl-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffe9c9;
  font-weight: 700;
  cursor: pointer;
}
.sl-chip:hover {
  border-color: rgba(255, 179, 71, 0.5);
}

.sl-spin {
  font-size: 1.2rem;
  padding: 0.8rem 2.4rem;
}
