/* theme-premium.css — cleared to restore original design */

/* ──────────────────────────────────────────────
   任务全部完成 弹窗覆盖层
────────────────────────────────────────────── */
.completion-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.completion-card {
  background: #1e1e2e;
  border-radius: 20px;
  padding: 40px 32px 32px;
  width: 80%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.completion-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.completion-circle-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623, #f76b1c);
  position: absolute;
  top: 0;
  left: 0;
}

.completion-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}

.completion-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.completion-desc {
  font-size: 14px;
  color: #aaaacc;
  line-height: 1.6;
  margin-bottom: 28px;
}

.completion-button {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: linear-gradient(135deg, #f5a623, #f76b1c) !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  margin: 0;
}
