.telegram-button {
    position: fixed;     /* Фиксирует кнопку на экране */
    bottom: 90px;        /* Отступ снизу */
    right: 20px;         /* Отступ справа */
    width: 50px;         /* Размер круга */
    height: 50px;
    background-color: #0088CC; 
    border-radius: 50%;  /* Делает кнопку круглой */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Тень для объема */
    z-index: 9999;       /* Поверх всех элементов сайта */
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .telegram-button img {
    width: 45px;         /* Размер логотипа внутри круга */
    height: 45px;
  }
  
  /* Эффект при наведении */
  .telegram-button:hover {
    transform: scale(1.1); /* Слегка увеличивается */
    background-color: #006091; /* Чуть темнее при наведении */
  }
  
  /* Анимация пульсации (опционально, для привлечения внимания) */
  .telegram-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0088CC;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
  }