/* ===== Profile / Result Page ===== */
.result-page { padding: 0 16px 20px; }

.result-section { margin-bottom: 24px; }

.result-section .section-title {
  padding: 0;
  margin-bottom: 12px;
}

/* 答题结果卡片 */
.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.result-card.empty {
  padding: 32px 24px;
}

.result-card.empty p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.result-title-icon { margin-bottom: 12px; }

.result-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.result-score {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.result-bar {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* 收藏列表 */
.favorites-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.fav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.fav-item:active { transform: scale(0.98); }

.fav-thumb { flex-shrink: 0; }

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

.fav-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.fav-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* 操作按钮 */
.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding-bottom: 20px;
}
