.meter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bottle-wrapper {
  position: relative;
  width: 300px;
  height: 842px;
  z-index: 1; /* baza */
}

#bottle-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 6; /* rurka */
}

#bottle-head {
  width: 171px;
  height: 153px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-12%, 231px);
  z-index: 1;
}

.mouth-group {
  position: absolute;
  bottom: 78%;
  left: 63%;
  width: 83px;
  height: 32px;
  transform: scale(0.9);
  transform-origin: center;
  z-index: 4; /* usta nad wszystkim */
  overflow: visible;
}

#lip-up, #lip-down {
  position: absolute;
  width: auto;
  height: auto;
}

#lip-up { top: 0; left: 0; }
#lip-down { bottom: 0; left: 0; }

/* 🔥 KLUCZOWE - PŁYN I BĄBELKI */
#liquid-wave {
  position: absolute;
  bottom: 15%; /* ← DODAJ ODLEGŁOŚĆ OD DOłu */
  left: 15%;
  width: 70%;
  height: 0;
  background: linear-gradient(180deg, #FFD700 0%, #FF8C00 100%);
  border-radius: 25px 25px 50px 50px;
  z-index: 0; /* najniżej */
}

.bubble-container {
  position: absolute;
  bottom: 8%;
  left: 40%;
  width: 30%;
  height: 0;           /* bez !important */
  overflow: visible;
  pointer-events: none;
  z-index: 7;
}


.bubble {
  background: rgba(255, 79, 79, 0.65);        /* czerwieńsze, mniej przezroczyste wypełnienie */
  border: 1px solid rgba(83, 0, 0, 0.9);    /* grubszy, ciemniejszy czerwony obrąbek */
  border-radius: 50%;
  box-shadow: 
    0 1px 4px rgba(250, 114, 114, 0.7),        /* ciepły, czerwony cień */
    inset 0 1px 2px rgba(255, 255, 255, 0.8); /* jasny „błysk” w środku */
  z-index: 8;
}

/* PRZYCISKI na wierzchu */
.controls {
  margin-top: 20px;
  z-index: 10;
  position: relative;
}

#level-display {
  margin-top: 8px;
  font-size: 2em;
  font-weight: bold;
  z-index: 10;
}

.liquid-wave-top {
  position: absolute;
  bottom: 47%;  /* dopasuj do pozycji płynu w Twojej klatce butelki */
  left: 58.3%;
  width: 15%;
  height: 50px; /* wysokość fali – możesz zmniejszyć */
  background: linear-gradient(180deg, #ad3c2b 0%, #ad3c2b 100%);
  border-radius: 25px 25px 0 0; /* górna część zgodna z butelką */
  z-index: 78; /* między butelką (z-index:6) a ustami (z-index:4) */
  overflow: hidden;
  animation: wave-top 3s infinite ease-in-out;
}

@keyframes wave-top {
  0%, 100% {
    clip-path: polygon(100% 58%, 100% 100%, 0% 100%, 0% 45%, 7% 49%, 13% 55%, 20% 60%, 29% 59%, 35% 56%, 43% 53%, 49% 54%, 53% 58%, 59% 62%, 66% 59%, 73% 54%, 79% 53%, 88% 53%);
    }
  50% {
    clip-path: polygon(100% 46%, 100% 100%, 0% 100%, 0 57%, 7% 52%, 16% 54%, 20% 60%, 29% 59%, 35% 56%, 43% 53%, 48% 51%, 53% 48%, 59% 47%, 65% 46%, 76% 52%, 83% 52%, 92% 51%);
  }
}

