.hbc-water-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hbc-water-sky {
  position: absolute;
  inset: 0 0 61.2% 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 72%, #f3fbff 100%);
}

.hbc-water-horizon {
  position: absolute;
  left: 0;
  right: 0;
  top: 38.8%;
  height: 2px;
  background: #e4f8ff;
  box-shadow: 0 1px 0 #b9e8f8;
}

.hbc-water-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.hbc-water-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a96cd 0%, #177fb3 40%, #126792 72%, #0b4a6d 100%);
}

.hbc-water-bubbles {
  position: absolute;
  inset: 0;
}

.hbc-water-bubble {
  position: absolute;
  left: var(--x);
  bottom: -48px;
  height: auto;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  animation: hbcBubbleRise var(--dur) linear infinite;
  animation-delay: var(--delay);
}

@keyframes hbcBubbleRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  65% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--drift), -90vh, 0) scale(1.02);
    opacity: 0;
  }
}
