.yt-form-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.yt-form-player iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.custom-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 15;
}

.custom-controls button {
    padding: 8px 15px;
    margin-right: 5px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-controls button:hover {
    background: #f0f0f0;
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 20;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.pause-message {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .yt-form-player iframe {
        height: 300px;
    }
    .form-container {
        width: 95%;
    }
}