.video-full-width {
    width: 100%;
    height: auto;
}

.video-title-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.video-title {
    color: white;
    font-weight: bold;
    font-size: 35px;
    line-height: 1.2;
    margin: 0;
}

.video-button {
    margin-top: 10px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    color: white;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.video-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .video-title {
        font-size: 22px;
    }
    .video-button {
        padding: 12px 25px;
    }
}

/* If no title, fade out the text box */
.video-title-box:empty {
    opacity: 0;
    pointer-events: none; /* Prevent any interaction */
}
