/*Fullscreen-Overlay*/
#fullscreenPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /*Dark Background*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-align: center;
    z-index: 1000;
    opacity: 0; /*Starts Invisible*/
    animation: fadeIn 0.5s ease-in-out forwards; /*Smooth Fade-In*/
}

/*Popup-Content with rounded Corners and Animation*/
.popup-content {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1);
    color: #6b1e41;
    font-family: 'Segoe UI', sans-serif;
    padding: 30px;
    border-radius:  25px;
    max-width: 90%;
    width: 1000px;
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.6);
    transform: scale(0.8); /*Starts Small*/
    opacity: 0; /*Starts Invisible*/
    animation: popAppear 0.5s ease-in-out forwards; /*Smooth Pop-Up*/
    position: relative;
}

.popup-content::before {
    content: "💐";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 48px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 182, 193, 0.7);
}

/*Close-Button*/
.popup-close {
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(to right, #ff5f6d, #ffc371); /* Sunset Gradient */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: linear-gradient(to right, #d6336c, #ffb347);
}

/*Fade-In Animation for the Overlay*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*Zoom-In + Fade-In Animation for the Popup*/
@keyframes popAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}