/* 1) Чтобы shape не обрезался родителем */
#liquidShape {
  overflow: visible !important;
}

/* 2) Базовый фростed-glass эффект */
#liquidShape {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* 3) Анимация «жидкого стекла» */
@keyframes glassWave {
  0%,100% { transform: translate(0,0) skew(0,0); }
  25%     { transform: translate(2px,-1px) skew(1deg,-1deg); }
  50%     { transform: translate(-1px,2px) skew(-1deg,1deg); }
  75%     { transform: translate(1px,1px) skew(1deg,0deg); }
}
#liquidShape {
  animation: glassWave 8s ease-in-out infinite;
}

/* 4) Внутренние отступы shape (опционально) */
#liquidShape .t-shape__content {
  padding: 20px;
}