.telegram-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0088cc;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 1000;
  animation: slideIn 1s ease forwards;
}

.telegram-widget img {
  width: 28px;
  height: 28px;
}

.telegram-widget:hover {
  background-color: #069dd7;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
