/* Slot machine character cells */

.slot-cell {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

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

.slot-item {
  display: block;
  text-align: center;
  flex-shrink: 0;
}

/* Subtitle-specific */
.subtitle-row .slot-cell {
  font-weight: 700;
}
