.slot-machine {
  position: relative;
  background: linear-gradient(160deg, #241a08, #1a1206);
  border: 4px solid #7a5a12;
  border-radius: 18px;
  padding: 14px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.5);
}

.slot-reels {
  display: flex;
  gap: 8px;
  background: #0a0e17;
  border-radius: 10px;
  padding: 6px;
}

.reel-window {
  width: 90px;
  height: 270px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 15%, transparent 85%, rgba(0,0,0,0.5));
}

.reel-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.reel-cell {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  background: var(--panel-light);
  border-bottom: 1px solid var(--border);
}

.reel-cell.winning {
  animation: cell-pulse 0.6s ease infinite alternate;
}

@keyframes cell-pulse {
  from { background: rgba(245,184,0,0.22); box-shadow: inset 0 0 0 2px var(--gold); }
  to { background: rgba(245,184,0,0.45); box-shadow: inset 0 0 14px 3px var(--gold); }
}

.last-win {
  margin-top: 18px;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  min-height: 22px;
}

@media (max-width: 480px) {
  .reel-window { width: 64px; height: 192px; }
  .reel-cell { width: 64px; height: 64px; font-size: 32px; }
}
