.bm-video-bg-wrapper {
    position: relative;
    width: 100%;
}

.bm-video-bg-pin-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bm-vbg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bm-vbg-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity 0.8s ease;
    opacity: 1;
}

.bm-vbg-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.bm-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(0,0,0,0.4);
}

.bm-video-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 50px 10%;
    box-sizing: border-box;
}

.bm-video-content-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bm-vbg-top-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bm-vbg-top-text.has-line::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    margin-right: 15px;
}

.bm-vbg-title-1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 5px 0;
    padding: 0;
}

.bm-vbg-title-2 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 30px 0;
    padding: 0;
}

.bm-vbg-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 40px;
    position: relative;
}

.bm-vbg-desc p {
    margin: 0;
}

.bm-vbg-desc.has-line {
    padding-left: 20px;
}

.bm-vbg-desc.has-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #fff;
}

.bm-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bm-scroll-mouse {
    width: 30px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
    opacity: 0.8;
}

.bm-scroll-wheel {
    width: 4px;
    height: 10px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: bmScrollWheel 2s infinite;
}

@keyframes bmScrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .bm-video-content-container {
        padding: 30px 5%;
    }
    
    .bm-vbg-title-1, .bm-vbg-title-2 {
        font-size: 40px;
    }
    
    .bm-vbg-desc {
        font-size: 16px;
    }
}
