/* Starter Task List - Onboarding Quest Board */
.starter-tasks {
  display: none;
  position: relative;
  z-index: 20;
  max-width: 480px;
  padding: 0 16px 20px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}
.starter-tasks.visible { display: block; }

.starter-tasks-card {
  background: #111;
  border: 1px solid #252525;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.starter-tasks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
}

.starter-tasks-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.starter-tasks-progress {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

.starter-tasks-bar {
  height: 4px;
  background: #222;
  margin: 0 18px 14px;
  border-radius: 2px;
  overflow: hidden;
}

.starter-tasks-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD600, #ff8c00);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.starter-task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid #1a1a1a;
  transition: background 0.2s;
}

.starter-task-item:last-child {
  border-radius: 0 0 16px 16px;
}

.starter-task-item.completed {
  opacity: 0.5;
}

.starter-task-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: transparent;
  transition: all 0.3s;
}

.starter-task-item.completed .starter-task-check {
  border-color: #00d26a;
  background: rgba(0, 210, 106, 0.15);
  color: #00d26a;
}

.starter-task-info {
  flex: 1;
  min-width: 0;
}

.starter-task-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.starter-task-item.completed .starter-task-label {
  text-decoration: line-through;
  color: #666;
}

.starter-task-desc {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

.starter-task-reward {
  font-size: 12px;
  font-weight: 700;
  color: #FFD600;
  white-space: nowrap;
  padding: 4px 10px;
  background: rgba(255, 214, 0, 0.08);
  border-radius: 20px;
  flex-shrink: 0;
}

.starter-task-item.completed .starter-task-reward {
  color: #00d26a;
  background: rgba(0, 210, 106, 0.08);
}

.starter-tasks-footer {
  padding: 12px 18px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.starter-tasks-total {
  font-size: 12px;
  color: #888;
}

.starter-tasks-total strong {
  color: #FFD600;
}

.starter-tasks-dismiss {
  font-size: 11px;
  color: #444;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.starter-tasks-dismiss:hover {
  color: #888;
}

/* Completed all tasks celebration */
.starter-tasks-complete {
  text-align: center;
  padding: 20px 18px;
}

.starter-tasks-complete-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.starter-tasks-complete-text {
  font-size: 14px;
  color: #00d26a;
  font-weight: 600;
}

.starter-tasks-complete-sub {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* Achievement badge animation */
@keyframes starterTaskPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.starter-task-item.just-completed .starter-task-check {
  animation: starterTaskPop 0.4s ease;
}
