/* ========================================
   LEVEL INDICATOR STYLES
   ======================================== */
.level-indicator {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 1vw;
  align-items: center;
  z-index: 1000;
}

.level-indicator .indicator-group {
  display: flex;
  align-items: center;
}

/* Star symbols */
.level-indicator .star-symbol {
  font-size: 2.5vw;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.level-indicator .star-symbol[data-active="true"] {
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.level-indicator .star-symbol[data-active="false"] {
  color: rgba(255, 255, 255, 0.2);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .level-indicator {
    top: 10px;
    left: 10px;
  }

  .level-indicator .star-symbol {
    font-size: 4vw;
  }
}

@media (max-width: 480px) {
  .level-indicator .star-symbol {
    font-size: 5vw;
  }
}

/* ========================================
   LEVEL UP STAR ANIMATION
   ======================================== */
.level-up-star {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  z-index: 2000;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  animation: pulsate 1s ease-in-out infinite;
}

.level-up-star.moving {
  animation: none;
  transition: all 1s ease-in-out;
}

@keyframes pulsate {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
