/* Основной стиль кнопки */
/* Анимация*/
.t-btn {
   /* display: inline-flex;*/ 
   /* align-items: center; */
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    /*position: relative; */
    overflow: hidden;
   z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* улучшенная плавность */
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); 
    
}

/* Анимация градиентного фона при наведении */
.t-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF8E53 0%, #FF6B6B 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

/* Эффект левитации при наведении */
.t-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.t-btn:hover:before {
    opacity: 1;
}

/* Анимация при нажатии */
.t-btn:active {
    transform: translateY(2px) scale(0.99);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}


  .pixel-clock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  #pixelClock {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    width: 350px;
    height: 350px;
  }
