#slot-clock-container .digit {
  position: relative;
  width: 1em;
  height: 1em;
  overflow: hidden;
}

#slot-clock-container .empty-digit {
  position: relative;
  width: 1em;
  height: 1em;
  overflow: hidden;
  opacity: 0.3;
}

#slot-clock-container .reel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#slot-clock-container .digit-char {
  height: 1em;
  line-height: 1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slot-clock-container .colon {
  width: 0.5em;
  text-align: center;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slot-clock-container .rolling {
  transition: transform 2.5s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Responsive sizing for mobile */
@media (max-width: 768px) {
  #slot-time {
    font-size: 8rem !important;
  }
}

@media (max-width: 480px) {
  #slot-time {
    font-size: 5rem !important;
  }
}