.z-vb-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    --text-main: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.z-vb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.6s ease;
    filter: brightness(0.95);
}

.z-vb-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.z-vb-iframe.active {
    opacity: 1;
    pointer-events: auto;
}

.z-vb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.z-vb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px 50px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 2;
    text-align: left;
}

.z-vb-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
}

.z-vb-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.z-vb-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.z-vb-container:hover .z-vb-video {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.z-vb-container:hover .z-vb-iframe {
    transform: scale(1.08);
}

.z-vb-container:hover .z-vb-overlay {
    opacity: 0.85;
}

.z-vb-container:hover .z-vb-content {
    transform: translateY(0);
    opacity: 1;
}

/* Always visible minimal info */
.z-vb-minimal-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    transition: opacity 0.4s ease;
    z-index: 2;
    text-align: left;
}

.z-vb-minimal-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.z-vb-minimal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: white;
}

.z-vb-container:hover .z-vb-minimal-info {
    opacity: 0;
}

/* Play Button */
.z-vb-play-button {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z-vb-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.z-vb-play-button svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
    transition: transform 0.3s ease;
}

.z-vb-play-button:hover svg {
    transform: scale(1.1);
}

.z-vb-play-button.paused svg {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .z-vb-container {
        height: 500px;
    }

    .z-vb-title {
        font-size: 2.8rem;
    }

    .z-vb-content {
        padding: 40px 35px 35px;
    }
}

@media (max-width: 768px) {
    .z-vb-container {
        height: 400px;
    }

    .z-vb-title {
        font-size: 2rem;
    }

    .z-vb-subtitle {
        font-size: 0.95rem;
    }

    .z-vb-content {
        padding: 30px 25px 25px;
    }

    .z-vb-minimal-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .z-vb-container {
        height: 350px;
    }

    .z-vb-title {
        font-size: 1.6rem;
    }

    .z-vb-content {
        padding: 25px 20px 20px;
    }

    .z-vb-play-button {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }

    .z-vb-play-button svg {
        width: 20px;
        height: 20px;
    }
}