.update-box {
  position: relative; 
  overflow: hidden;
  animation: slideDown 4s ease-out; }

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px); 
  }
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}



.icon-megaphone {
  margin-right: 8px;
}

.text {
  margin-top: 10px;
}

.text a {
  text-decoration: none;
  color: #fbfbfb; 
  display: inline-flex;
  align-items: center;
}

.text a .icon-chevron {
  margin-left: 5px;
  transition: transform 0.3s ease; 
}

.text a:hover .icon-chevron {
  transform: translateX(7px); 
}
