/* スロットアニメーション用スタイル */
.slot-counter {
  display: inline-flex;
  align-items: center;
  position: relative;
  perspective: 200px;
}

/* 区切り文字（カンマ、コロン、ピリオド） */
.slot-separator {
  text-align: center;
}

.slot-separator--comma {
  width: 0.2em;
}

.slot-separator--dot,
.slot-separator--colon {
  width: 0.3em;
}

/* スロットリールコンテナ */
.slot-reel-container {
  display: inline-block;
  width: 0.6em;
  height: 1.1em;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 100px;
}

/* スロットリール */
.slot-reel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: none;
  text-align: center;
}

/* 各数字 */
.slot-digit {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.1em;
  line-height: 1.2em;
  text-align: center;
}
