.hvb-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hvb-video-preview {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 12px;
  
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
  z-index: 10;
}

.hvb-wrapper:hover .hvb-video-preview {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hvb-video-container {
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  border: 1px solid #4a5568; 
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hvb-video-element {
  display: block;
  width: auto;
}

.hvb-video-pointer {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #4a5568;
}

/* 
  Button styling is now primarily handled by Elementor's controls.
  This class provides the basic structure and transitions.
*/
.hvb-button {
  padding: 12px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.5;
  /* Default border style, can be overridden by Elementor border control */
  border: 2px solid transparent; 
}