.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fadeIn { opacity: 1; }

.popupBox {
    position: relative;
    background-color: #ff00c3;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupClose {
    position: absolute;
    top: 14px;
    right: 10px;
    cursor: pointer;
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.popupGif {
    width: 450px;
    height: 450px;
    border-radius: 12px;
    cursor: pointer;
    display: block;
}

@media (max-width: 768px) {
    .popupGif { width: 350px; height: 350px; }
    .popupBox { padding: 10px; }
}
    /* Mobile */
    #menu-main-menu {
      display: none;
    }
    
    @media (max-width: 768px) {
        .popup {
            bottom: 0%;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    
    /* Desktop */
    @media (min-width: 992px) {
      #menu-main-menu {
        display: block;
      }
    }
    
    @media (min-width: 769px) {
        .popup {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }