/* User dashboard home — learning summary, quick Play Lab entry (matches Play Lab mint / indigo tone) */

.cc-dash-home {
  --cc-dash-accent: #00c2ff;
  --cc-dash-accent2: #8b5cf6;
  --cc-dash-surface: #f8fafc;
  --cc-dash-border: rgba(15, 23, 42, 0.08);
}

.cc-dash-stat {
  border: 1px solid var(--cc-dash-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cc-dash-stat:hover {
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.08);
}

.cc-dash-stat .cc-dash-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.cc-dash-stat .cc-dash-stat__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.cc-dash-stat .cc-dash-stat__hint {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.cc-dash-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cc-dash-quick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.cc-dash-quick__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(56, 189, 248, 0.1));
  color: #1e1b4b;
  text-decoration: none !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.cc-dash-quick__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.18);
  border-color: rgba(0, 194, 255, 0.55);
  color: #0f172a;
}

.cc-dash-tips {
  border-radius: 14px;
  border: 1px solid var(--cc-dash-border);
  background: var(--cc-dash-surface);
  padding: 1rem 1.15rem;
}

.cc-dash-tips ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cc-dash-anchor {
  scroll-margin-top: 5.5rem;
}

@media (max-width: 575px) {
  .cc-dash-stat .cc-dash-stat__value {
    font-size: 1.15rem;
  }
  .cc-dash-quick {
    grid-template-columns: 1fr;
  }
}
