.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFCA06;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.bee-container {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.bee {
  animation: float 2s ease-in-out infinite;
}

.body {
  fill: #FFC107;
}

.stripe1, .stripe2 {
  fill: #333;
}

.wing1, .wing2 {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  animation: flap 0.2s ease-in-out infinite alternate;
}

.progress-container {
  width: 200px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  transition: width 0.3s ease;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes flap {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(-1);
  }
}