.telegram-button {
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 9999;
  animation: fadeIn 0.6s ease-out;
}

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

.telegram-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  
  padding: 16px 28px;
  border-radius: 12px;
  
  background: linear-gradient(135deg, #0088cc 0%, #0077b6 100%);
  color: #ffffff;
  
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
  border: none;
  cursor: pointer;
  
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.telegram-button__link:hover {
  background: linear-gradient(135deg, #0077b6 0%, #005a96 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 136, 204, 0.4);
}

.telegram-button__link:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 136, 204, 0.3);
}

.telegram-button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .telegram-button {
    right: 20px;
    bottom: 30px;
  }
  
  .telegram-button__link {
    padding: 14px 22px;
    font-size: 15px;
  }
  
  .telegram-button__icon {
    width: 20px;
    height: 20px;
  }
}

