.pb-video-hero {
    position: relative;
    width: 100%;
    background: #0f172a;
}
.pb-video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pb-video-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.pb-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pb-video-poster,
.pb-video-gradient {
    background-size: cover;
    background-position: center;
}
.pb-video-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}
.pb-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.85));
    z-index: 2;
    pointer-events: none;
}
.pb-video-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}
.pb-video-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.pb-video-dot.active,
.pb-video-dot:hover {
    background: #fff;
    transform: scale(1.15);
}
