/* Fireworks Popup Styles */
#fireworks-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 15px;
    max-width: 80%;
}

.close-popup {
    font-size: 36px;
    color: white;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.fireworks-animation img {
    max-width: 100%;
    margin-bottom: 20px;
}


