/* ============================================================
   Getting Started Checklist — Dashboard onboarding card
   ============================================================ */

.getting-started-card {
  background: white;
  border-radius: 14px;
  border-left: 4px solid var(--primary-green, #006a4e);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.getting-started-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.25rem 0.5rem;
}

.getting-started-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.getting-started-title > i {
  font-size: 1.25rem;
  color: var(--primary-green, #006a4e);
  flex-shrink: 0;
}

.getting-started-title h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.getting-started-title p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.1rem 0 0;
}

.getting-started-dismiss {
  background: none;
  border: none;
  color: #d1d5db;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  line-height: 1;
}

.getting-started-dismiss:hover {
  color: #6b7280;
}

/* Progress Bar */
.getting-started-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
}

.progress-bar-bg {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green, #006a4e), #3498db);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

/* Checklist Items */
.checklist-items {
  padding: 0.25rem 1.25rem 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.checklist-item:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

.checklist-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
}

.checklist-icon.completed {
  background: var(--primary-green, #006a4e);
  color: white;
}

.checklist-icon.optional {
  background: #fef3c7;
  color: #d97706;
}

.checklist-number {
  font-size: 0.75rem;
  font-weight: 700;
}

.checklist-optional-tag {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.checklist-content {
  flex: 1;
  min-width: 0;
}

.checklist-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  display: block;
}

.checklist-item.completed .checklist-label {
  color: #6b7280;
  text-decoration: line-through;
  text-decoration-color: #d1d5db;
}

.checklist-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  display: block;
  margin-top: 0.1rem;
}

.checklist-action {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green, #006a4e);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2rem;
}

.checklist-action:hover {
  text-decoration: underline;
}

/* ============================================================
   Recommended Leagues Section — Dashboard
   ============================================================ */

.recommended-leagues-section {
  margin-bottom: 1.25rem;
}

.recommended-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.recommended-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.recommended-header h3 i {
  color: #f59e0b;
}

.see-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green, #006a4e);
  text-decoration: none;
}

.see-all-link:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .getting-started-card {
    margin-bottom: 1rem;
  }

  .getting-started-header {
    padding: 0.75rem 1rem 0.4rem;
  }

  .getting-started-progress {
    padding: 0.4rem 1rem;
  }

  .checklist-items {
    padding: 0.25rem 1rem 0.75rem;
  }

  .getting-started-title h3 {
    font-size: 0.95rem;
  }

  .getting-started-title p {
    font-size: 0.75rem;
  }
}
