#logo-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 9999;
    display: none;
}
#logo-popup-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background:rgba(255,255,255,0.7);
    z-index: 1;
}
#logo-popup-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #f3f5f4;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    animation: popup-fade-in 0.4s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    z-index: 2;
}

@media (max-width: 991px) {
    #logo-popup-content {
        width:75%;
    }
}

.logo-popup-flex {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .logo-popup-flex {
        padding:50px 20px 50px 20px;
    }
}

#logo-popup-content img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom:20px;
}

#logo-popup-content p{
    margin:0;
    text-align:center;
}

#logo-popup-close {
    position: absolute;
    right: 5px;top:5px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    margin: 0;
}

@keyframes popup-fade-in {
    from { opacity: 0; transform: translate(-50%, -60%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}