/**
 * CSS File: interview-effect.css
 * 2026-05-14 | Final checked
 */

.p-bubble__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.p-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  animation: bubble-howahowa infinite ease-in-out;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  pointer-events: auto;
  cursor: pointer;
}

.p-bubble.is-popped {
  pointer-events: none;
  z-index: 999;
}

@keyframes bubble-howahowa {
  0% {
    transform: translateY(0) translateX(0) scale(0.6);
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-500px) translateX(40px) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-1000px) translateX(-20px) scale(1.5);
    opacity: 0;
  }
}

.p-bubble:nth-child(5n + 1) {
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(0, 200, 255, 0.4),
    0 0 60px rgba(0, 200, 255, 0.1);
}
.p-bubble:nth-child(5n + 2) {
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 100, 150, 0.4),
    0 0 60px rgba(255, 100, 150, 0.1);
}
.p-bubble:nth-child(5n + 3) {
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(150, 255, 100, 0.4),
    0 0 60px rgba(150, 255, 100, 0.1);
}
.p-bubble:nth-child(5n + 4) {
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 200, 0, 0.4),
    0 0 60px rgba(255, 200, 0, 0.1);
}
.p-bubble:nth-child(5n) {
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(180, 100, 255, 0.4),
    0 0 60px rgba(180, 100, 255, 0.1);
}

.p-bubble:nth-child(3n + 1) {
  width: 25px;
  height: 25px;
  animation-duration: 15s;
}
.p-bubble:nth-child(3n + 2) {
  width: 40px;
  height: 40px;
  animation-duration: 20s;
}
.p-bubble:nth-child(3n) {
  width: 50px;
  height: 50px;
  animation-duration: 12s;
}

.p-bubble:nth-child(1) {
  left: 8%;
  top: 5%;
  animation-delay: -2s;
}
.p-bubble:nth-child(2) {
  left: 82%;
  top: 15%;
  animation-delay: -15s;
}
.p-bubble:nth-child(3) {
  left: 45%;
  top: 25%;
  animation-delay: -7s;
}
.p-bubble:nth-child(4) {
  left: 18%;
  top: 35%;
  animation-delay: -22s;
}
.p-bubble:nth-child(5) {
  left: 75%;
  top: 48%;
  animation-delay: -4s;
}
.p-bubble:nth-child(6) {
  left: 5%;
  top: 58%;
  animation-delay: -18s;
}
.p-bubble:nth-child(7) {
  left: 65%;
  top: 68%;
  animation-delay: -9s;
}
.p-bubble:nth-child(8) {
  left: 92%;
  top: 78%;
  animation-delay: -25s;
}
.p-bubble:nth-child(9) {
  left: 38%;
  top: 88%;
  animation-delay: -12s;
}
.p-bubble:nth-child(10) {
  left: 12%;
  top: 95%;
  animation-delay: -3s;
}
.p-bubble:nth-child(11) {
  left: 88%;
  top: 8%;
  animation-delay: -10s;
}
.p-bubble:nth-child(12) {
  left: 55%;
  top: 22%;
  animation-delay: -20s;
}
.p-bubble:nth-child(13) {
  left: 25%;
  top: 42%;
  animation-delay: -6s;
}
.p-bubble:nth-child(14) {
  left: 68%;
  top: 62%;
  animation-delay: -14s;
}
.p-bubble:nth-child(15) {
  left: 40%;
  top: 72%;
  animation-delay: -28s;
}
.p-bubble:nth-child(16) {
  left: 95%;
  top: 82%;
  animation-delay: -1s;
}
.p-bubble:nth-child(17) {
  left: 52%;
  top: 32%;
  animation-delay: -11s;
}
.p-bubble:nth-child(18) {
  left: 10%;
  top: 80%;
  animation-delay: -5s;
}

.l-int-base-container {
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .p-bubble:nth-child(3n + 1) {
    width: 35px;
    height: 35px;
    animation-duration: 20s;
  }
  .p-bubble:nth-child(3n + 2) {
    width: 55px;
    height: 55px;
    animation-duration: 25s;
  }
  .p-bubble:nth-child(3n) {
    width: 75px;
    height: 75px;
    animation-duration: 18s;
  }
}
