
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: sans-serif;
  color: white;
  background-image: url("/static/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
  position: relative;
}

.content {
  position: relative;
  z-index: 10000;
  text-align: center;
  padding-top: 20vh;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.counter {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.2em;
  color: white;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 12px;
}

.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -200px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  animation: floatUp 30s linear;
  opacity: 0.6;
  backdrop-filter: blur(1px);
  pointer-events: auto;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bubble.pop {
  transform: scale(1.5);
  opacity: 0 !important;
}

@keyframes floatUp {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30vh);
  }
  50% {
    transform: translate(-30px, -60vh);
    opacity: 0.4;
  }
  75% {
    transform: translate(30px, -90vh);
  }
  100% {
    transform: translate(-30px, -120vh);
    opacity: 0;
  }
.bubbles-svg-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.bubbles-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bubble-svg {
  fill: rgba(255, 255, 255, 0.3);
  animation: rise-svg 30s ease-in infinite, float-svg 6s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes rise-svg {
  0%   { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes float-svg {
  0%   { transform: translateX(0); }
  100% { transform: translateX(5vw); }
}


}
