/* XP BAR */
.xp-bar {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin-bottom: 6px;
}

.xp-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7df9ff, #9b7dff);
  box-shadow: 0 0 12px #7df9ff;
  transition: width 0.6s ease;
}

/* MISSION CARDS */
.mission-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  transition: 0.25s ease;
}

.mission-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.mission-text {
  font-size: 14px;
  margin-bottom: 6px;
}

.mission-diff {
  font-size: 11px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.mission-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #7df9ff, #9b7dff);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease;
}

.mission-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px #7df9ff;
}

.mission-card.done {
  opacity: 0;
  transform: scale(0.95);
}