.bet-amount {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.symbol-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    user-select: none;
}

.slot-container {
    margin-top: 20px;
    padding: 15px;
    /* background: #0b1e33;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); */
}

.reels {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.reel {
    width: 80px;
    height: 180px;
    overflow: hidden;
    border: 3px solid #333;
    border-radius: 10px;
    background: radial-gradient(circle at center, #222 0%, #000 90%);
    box-shadow: inset 0 0 10px #000, 0 4px 10px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel-inner {
    display: flex;
    flex-direction: column;
}

.symbol {
    font-size: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
