.top-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px;
}

.top-header {
  margin-bottom: 28px;
}

.top-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.top-header p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

.top-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color var(--transition), transform 0.15s;
  align-items: center;
}

.top-card:hover {
  border-color: var(--accent-early);
  transform: translateX(3px);
}

.top-card.rank-1 { border-color: #f5c518; }
.top-card.rank-2 { border-color: #b0b0b0; }
.top-card.rank-3 { border-color: #cd7f32; }

.top-rank {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1;
}

.top-card.rank-1 .top-rank { color: #f5c518; }
.top-card.rank-2 .top-rank { color: #b0b0b0; }
.top-card.rank-3 .top-rank { color: #cd7f32; }

.top-body {
  padding: 0 16px;
  min-width: 0;
}

.top-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.top-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-signal {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.top-signal.early      { background: rgba(99,179,237,.15); color: var(--accent-early); }
.top-signal.developing { background: rgba(246,173,85,.15); color: var(--accent-developing); }
.top-signal.strong     { background: rgba(72,187,120,.15); color: var(--accent-strong); }

.top-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.top-meta span { font-size: 11px; color: var(--text-tertiary); }
.top-meta b    { color: var(--text-secondary); }

.top-scores {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 80px;
}

.top-total {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.top-total.c-strong     { color: var(--accent-strong); }
.top-total.c-developing { color: var(--accent-developing); }
.top-total.c-early      { color: var(--accent-early); }

.top-score-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-mini-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
}

.top-bar {
  width: 5px;
  border-radius: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.top-bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 2px;
}

.content-area { display: flex; gap: 0; flex: 1; overflow: hidden; }
.top-side { flex: 1; overflow-y: auto; padding: 28px 32px; }

@media (max-width: 768px) {
  .top-wrap,
  .top-side      { padding: 16px; }
  .top-card      { grid-template-columns: 36px 1fr auto; padding: 14px 12px; }
  .top-rank      { font-size: 17px; }
  .top-scores    { min-width: 60px; }
  .top-total     { font-size: 22px; }
  .top-tagline   { display: none; }
  .top-mini-bars { display: none; }
}
