.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px; /* evita cortes en pantallas pequeñas */
}

#popup-box {
    background: rgb(21, 4, 22);
    padding: 20px;
    width: 100%;
    max-width: 450px;   /* Tamaño perfecto para PC */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.4);
    font-size: 13px;    /* Texto base */
}

.popup-img {
    width: 120px;
    margin: 12px 0;
    border-radius: 10px;
    max-width: 70%;      /* nunca se sale en móviles */
}

#popup-box h3 {
    margin: 0;
    font-size: 20px;
}

#popup-box p {
    margin-top: 10px;
    line-height: 1.3;
}

#cerrarPopup {
    background: linear-gradient(135deg, #5f0a57, #27023d);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 16px;
    margin-top: 15px;
}

#cerrarPopup:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* 📱 RESPONSIVE: pantalla pequeñas */
@media (max-width: 500px) {
    #popup-box {
        max-width: 90%;      /* ocupa casi toda la pantalla */
        padding: 15px;
        font-size: 15.5px;   /* un poco más pequeño para que no rebalse */
    }

    #popup-box h3 {
        font-size: 18px;
    }

    .popup-img {
        width: 90px;
    }

    #cerrarPopup {
        padding: 8px 18px;
        font-size: 14px;
    }
}
