.yt-popup-container {
text-align: center;
margin-top: 20px;
}
#yt-popup-button {
background-color: #ff0000;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 6px;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 10px;
transition: background 0.3s;
}
#yt-popup-button:hover {
background-color: #cc0000;
}
#yt-popup-overlay {
display: none;
position: fixed;
z-index: 9999;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
}
.yt-popup-content {
background-color: #111;
margin: auto;
padding: 20px;
width: 90%;
max-width: 700px;
position: relative;
}
.yt-popup-content iframe {
width: 100%;
height: 400px;
}
.yt-popup-close {
color: white;
position: absolute;
top: 10px;
right: 20px;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}