
.yve-video-container {
    position: fixed;
    top: 100px;
    width: 300px;
    z-index: 1000;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.yve-video-container.left {
    left: 20px;
}
.yve-video-container.right {
    right: 20px;
}
.yve-video-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.yve-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.yve-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.yve-video-links {
    margin-top: 10px;
    text-align: center;
}
.yve-video-links a {
    display: inline-block;
    margin: 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
}
.yve-video-links .youtube-link {
    background: #ff0000;
}
.yve-video-links .subscribe-btn {
    background: #1a73e8;
}
@media (max-width: 768px) {
    .yve-video-container {
        width: 90%;
        left: 5% !important;
        right: 5% !important;
    }
}
