﻿/* container principal */
.slot-reel {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 20px;
}

/* cada coluna (reel) */
.reel {
    width: 56px;
    height: 80px; /* mostra 1 item centralmente */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
    background: linear-gradient(180deg,#fff,#f7f7f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* faixa interna que será movida - contém muitos .reel-item */
.reel-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(0);
}

/* cada número */
.reel-item {
    width: 100%;
    height: 80px; /* mesma altura do reel */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #2c3e50;
    user-select: none;
}

/* opcional: destaque no número central */
.reel::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

/* responsividade */
@media (max-width: 576px) {
    .reel {
        width: 44px;
        height: 64px;
    }

    .reel-item {
        font-size: 28px;
        height: 64px;
    }
}
