.ChallengeOverlay_overlay__MY_af {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: ChallengeOverlay_fadeIn__Fy4XZ 0.2s ease-out;
}

.ChallengeOverlay_content__G_4ab {
  background: #2a2a3e;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  padding: 0;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: ChallengeOverlay_slideUp__ZJrOL 0.3s ease-out;
  border: 2px solid #4f46e5;
}

.ChallengeOverlay_header__Y_xgK {
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(79, 70, 229, 0.08));
}

.ChallengeOverlay_header__Y_xgK h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.ChallengeOverlay_closeButton__q91bB {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #a0a0a0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ChallengeOverlay_closeButton__q91bB:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.ChallengeOverlay_body__NmiqV {
  padding: 32px;
  text-align: center;
}

.ChallengeOverlay_icon__N4nD3 {
  font-size: 48px;
  margin-bottom: 16px;
}

.ChallengeOverlay_body__NmiqV h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: white;
}

.ChallengeOverlay_body__NmiqV p {
  margin: 0 0 24px;
  color: #a0a0a0;
}

.ChallengeOverlay_stats__t8duF {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.ChallengeOverlay_stat__e4O4s {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ChallengeOverlay_stat__e4O4s span {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ChallengeOverlay_stat__e4O4s strong {
  font-size: 1rem;
  color: white;
}

.ChallengeOverlay_startButton__5xLN_ {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border: none;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.ChallengeOverlay_startButton__5xLN_:hover {
  transform: translateY(-2px);
}

@keyframes ChallengeOverlay_fadeIn__Fy4XZ {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ChallengeOverlay_slideUp__ZJrOL {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.DailyChallengeButton_button__lSNLd {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: #4f46e5;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.DailyChallengeButton_button__lSNLd:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(79, 70, 229, 0.1));
  border-color: rgba(79, 70, 229, 0.3);
  transform: translateY(-1px);
}

.DailyChallengeButton_icon__CwvrE {
  font-size: 1rem;
  color: #4f46e5;
}

