.blob {
  margin-bottom: 20px;
  border-radius: 62% 38% 46% 54% / 60% 63% 37% 40%;
  background-color: #012c64;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 70px;
  color: #fff;
}
.blob svg { font-size: 23px; }

.avatar-stack { display: inline-flex; list-style: none; padding: 0; margin: 0; }
.avatar-stack li { width: 50px; height: 50px; }
.avatar-stack img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
}

.pulse-play {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: linear-gradient(30deg, #012c64 20%, #0070f3 80%);
  box-shadow: 0 0 0 0 rgba(193, 244, 246, 0.698);
  animation: pulse 1.2s cubic-bezier(0.8, 0, 0, 1) infinite;
  border: 0;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(193, 244, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 244, 246, 0); }
}

.bounce-card {
  width: min(159px, 92%);
  height: 88px;
  padding: 0 5px;
}
.bounce-card .ball {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: bounce-1 2.1s ease-in-out infinite;
}
.bounce-card svg { font-size: 32px; color: #012c64; }
@keyframes bounce-1 {
  50% { transform: translateY(-18px); }
}

.toggle {
  width: 40px;
  height: 20px;
  background: #012c64;
  border-radius: 999px;
  position: relative;
  display: inline-block;
}
.toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
}

.overlay-nav {
  position: fixed;
  inset: 0;
  background: #012c64;
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.overlay-nav.open { display: flex; }
.overlay-nav a { color: #fff; font-weight: 700; letter-spacing: 1px; }

input[type="checkbox"].peer:checked + .faq-panel { display: block; }
