/* Появление блоков */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.fade-up.t-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Glass эффект */
.glass {
  background: rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Кнопки */
.uc-btn {
  transition: all 0.2s ease !important;
}

.uc-btn:active {
  transform: scale(0.95) !important;
}