/* YouTube Subscribe Pop-up Styles */
.youtube-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none; /* Hidden by default */
}

.youtube-subscribe-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    width: 90%;
    max-width: 500px;
    display: none; /* Hidden by default */
}

.youtube-subscribe-popup .popup-content h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8em;
}

.youtube-subscribe-popup .popup-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.youtube-subscribe-popup .subscribe-button {
    display: inline-block;
    background-color: #ff0000; /* YouTube Red */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.youtube-subscribe-popup .subscribe-button:hover {
    background-color: #cc0000;
}

.youtube-subscribe-popup .no-thanks-button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.9em;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

.youtube-subscribe-popup .no-thanks-button:hover {
    color: #333;
}

.youtube-subscribe-popup .close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.youtube-subscribe-popup .close-button:hover {
    color: #555;
}