/* Beta Claim Modal & Progression UI */

.claim-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.claim-modal-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 3px solid #FFD700;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.claim-modal-content h2 {
  color: #FFD700;
  margin: 0 0 20px 0;
  font-size: 32px;
}

.claim-modal-content p {
  color: #fff;
  margin: 10px 0;
  font-size: 16px;
}

.claim-modal-content strong {
  color: #FF1493;
}

.claim-modal-content .btn {
  margin: 10px;
  padding: 15px 30px;
  font-size: 16px;
}

/* Progression UI in topbar */
.beta-progress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-right: 16px;
}

.progress-label {
  font-size: 12px;
  color: #FFD700;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-bar-mini {
  width: 150px;
  height: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill-mini {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FF1493);
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* Expansion Notification */
.expansion-notification {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  animation: slideDown 0.5s ease, fadeOut 0.5s ease 4.5s;
}

.expansion-content {
  background: linear-gradient(135deg, #FFD700, #FF1493);
  color: #000;
  padding: 30px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
  text-align: center;
}

.expansion-content h2 {
  margin: 0 0 10px 0;
  font-size: 36px;
}

.expansion-content p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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