.yt-lazy-control {
    position: relative;
    overflow: hidden;
}

.yt-lazy-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-lazy-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 0.3s;
}

.yt-lazy-play-button:hover {
    opacity: 0.8;
}

.yt-lazy-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.yt-lazy-progress-bar {
    width: 80%;
    height: 20px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.yt-lazy-progress {
    height: 100%;
    background: #4caf50;
    width: 0%;
    transition: width 0.1s;
}

.yt-lazy-percentage {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}