.critic-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.critic-header { margin-bottom: 28px; }
.critic-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

/* Stat cards */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}

.stat-card-value {
  font-size: 28px;
  font-weight: 800;
  color: #0d1117;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
}

.stat-green  { color: #1a9a4a; }
.stat-yellow { color: #b08800; }
.stat-red    { color: #c53030; }
.stat-muted  { color: var(--text-muted); }

/* Charts row */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.chart-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 18px 20px;
}

.chart-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* Score distribution bars */
.h-bar-rows { display: flex; flex-direction: column; gap: 5px; }

.h-bar-row { display: flex; align-items: center; gap: 8px; }

.score-dist-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  width: 52px;
  text-align: right;
  flex-shrink: 0;
}

.h-bar-track {
  flex: 1;
  height: 16px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}

.h-bar-fill {
  height: 100%;
  border-radius: 4px;
  min-width: 2px;
  transition: width 0.4s ease;
}

.h-bar-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  width: 28px;
  flex-shrink: 0;
}

/* Timeline chart */
.timeline-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100px;
  padding-top: 8px;
}

.timeline-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.timeline-bar-wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.timeline-bar {
  width: 100%;
  max-width: 28px;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  border-radius: 3px 3px 0 0;
  min-height: 3px;
  transition: height 0.4s ease;
  position: relative;
}

.timeline-bar:hover { opacity: 0.85; }

.timeline-bar-count {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

.timeline-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Section divider with nav link */
.section-divider {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d8dae0;
  padding-bottom: 10px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.3px;
}

.section-count {
  font-size: 14px;
  color: var(--text-muted);
}

.section-nav {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  white-space: nowrap;
}

.section-nav:hover { color: var(--accent-blue-dim); }

/* Review cards */
.review-block {
  background: #fff;
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--brand-color, #e2e4e9);
  border-radius: 8px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.15s;
}

.review-block:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.game-thumb {
  width: 48px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e4e9;
}

.game-thumb-placeholder {
  width: 48px;
  height: 64px;
  border-radius: 6px;
  background: #e2e4e9;
  flex-shrink: 0;
}

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

.review-game-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.25;
}

.review-game-title a { color: inherit; transition: color 0.15s; }
.review-game-title a:hover { color: var(--accent-blue); }

.review-outlet-name {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.outlet-logo {
  height: 24px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.review-block:hover .outlet-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.review-score-area {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.native-score {
  font-size: 22px;
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.native-score-suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.normalized-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: #f0f1f3;
  padding: 3px 8px;
  border-radius: 4px;
}

.game-agg-score {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.agg-green  { background: #1a9a4a; }
.agg-yellow { background: #b08800; }
.agg-red    { background: #c53030; }
.agg-muted  { background: #9ca3af; }

.stars { display: inline-flex; gap: 2px; font-size: 18px; line-height: 1; }
.star-filled { color: #f59e0b; }
.star-half { position: relative; display: inline-block; color: #d1d5db; }
.star-half::before { content: '\2605'; position: absolute; left: 0; top: 0; color: #f59e0b; clip-path: inset(0 50% 0 0); }
.star-empty { color: #d1d5db; }
.thumb-icon { font-size: 24px; line-height: 1; }

.unscored-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-meta { font-size: 11px; color: var(--text-muted); }

.read-review {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  white-space: nowrap;
  transition: color 0.15s;
}

.read-review:hover { color: var(--accent-blue-dim); }

.no-reviews {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .charts-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
  .review-top { flex-wrap: wrap; }
  .review-score-area { margin-left: 0; }
  .critic-header h1 { font-size: 26px; }
}
