*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sidebar-bg: #111827;
  --main-bg: #0f172a;
  --card-bg: #1e293b;
  --card-border: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #9ba8ba;
  --accent: #22d3ee;
  --emerald: #34d399;
  --amber: #fbbf24;
  --rose: #fb7185;
  --sidebar-w: 220px;
}

body {
  font-family: 'Inter', 'Noto Sans KR', -apple-system, sans-serif;
  background: var(--main-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
  transition: width 0.2s ease;
}
.sidebar.collapsed { width: 60px; }
.sidebar.collapsed .sidebar-logo h1,
.sidebar.collapsed .sidebar-logo span,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .nav-badge,
.sidebar.collapsed .sidebar-footer div:last-child { display: none; }
.sidebar.collapsed .sidebar-logo { padding: 16px 0; text-align: center; }
.sidebar.collapsed .nav-item { justify-content: center; padding: 10px 0; border-left: none; }
.sidebar.collapsed .nav-item .nav-icon { margin: 0; }
.sidebar.collapsed .sidebar-footer { text-align: center; padding: 16px 0; }
.sidebar-toggle {
  position: absolute;
  top: 14px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-toggle svg { width: 18px; height: 18px; stroke-width: 2.5; }
.sidebar-toggle:hover { color: var(--text-primary); }
.sidebar.collapsed .sidebar-toggle { position: static; margin: 8px auto; }
.sidebar.collapsed .sidebar-toggle svg { transform: rotate(180deg); }
.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid var(--card-border);
}
.sidebar-logo h1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}
.sidebar-logo span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sidebar-nav {
  flex: 1;
  padding: 12px 0;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
.nav-item.active {
  background: rgba(34, 211, 238, 0.08);
  color: var(--accent);
  border-left-color: var(--accent);
}
.nav-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.nav-icon { font-size: 16px; width: 22px; text-align: center; }
.nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--card-border);
  color: var(--text-secondary);
}
.nav-badge.new {
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent);
}
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--card-border);
  font-size: 11px;
  color: var(--text-muted);
}
.sidebar-contact {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
}
.sidebar-contact:hover { color: var(--text-primary); }
.sidebar.collapsed .sidebar-contact { display: none; }
.sidebar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--emerald);
  font-size: 11px;
  letter-spacing: 1px;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Main ── */
.main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  transition: margin-left 0.2s ease;
}
.sidebar.collapsed ~ .main { margin-left: 60px; }

/* ── Header Bar ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb strong {
  color: var(--text-primary);
  font-weight: 600;
}
.breadcrumb .sep { margin: 0 8px; }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.header-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.header-stat span:last-child {
  color: var(--text-primary);
}
.hdr-badge-new {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(251, 113, 133, 0.15);
  color: var(--rose);
  letter-spacing: 0.5px;
}
.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Service status pills */
.service-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
  padding-right: 12px;
  border-right: 1px solid var(--card-border);
}
.svc-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  cursor: default;
  position: relative;
}
.svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.svc-ok .svc-dot { background: var(--emerald); }
.svc-ok { color: var(--emerald); }
.svc-issue .svc-dot { background: var(--rose); }
.svc-issue { color: var(--rose); background: rgba(251,113,133,0.08); }
.svc-unknown .svc-dot { background: var(--text-muted); }
.svc-pill[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 100;
  border: 1px solid var(--card-border);
  pointer-events: none;
}
.header-live {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--emerald);
  font-weight: 600;
}
.header-live .status-dot { width: 6px; height: 6px; }

/* ── Content ── */
.content {
  padding: 24px 32px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Stat Cards ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.stat-card:nth-child(1)::after { background: var(--accent); }
.stat-card:nth-child(2)::after { background: var(--emerald); }
.stat-card:nth-child(3)::after { background: var(--amber); }
.stat-card:nth-child(4)::after { background: var(--rose); }
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text-primary);
}
.stat-unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ── Section ── */
.section {
  margin-bottom: 32px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.section-title {
  font-size: 16px;
  font-weight: 700;
}
.section-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-secondary);
}

/* ── Briefing ── */
.briefing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}
.briefing-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}
.briefing-row:last-child { border-bottom: none; }
.briefing-icon { font-size: 16px; flex-shrink: 0; }
.briefing-text { color: var(--text-secondary); }
.briefing-text strong { color: var(--text-primary); font-weight: 600; }

/* ── Updates Table ── */
.update-table {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}
.update-row {
  display: grid;
  grid-template-columns: 100px 150px 60px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 12px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}
.update-row:last-child { border-bottom: none; }
.update-company {
  font-weight: 600;
  color: var(--text-primary);
}
.update-date {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--text-secondary);
  opacity: 0.5;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.update-product {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
}
.update-type-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-content: center;
  justify-self: center;
  text-align: center;
}
.update-type {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
}
.update-desc {
  color: var(--text-secondary);
  font-size: 12px;
}
.tag-new {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(251, 113, 133, 0.2);
  color: var(--rose);
  letter-spacing: 0.5px;
  align-self: center;
}

/* ── Community ── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.community-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 16px 20px;
}
.community-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
}
.community-source {
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
}
.source-reddit { background: rgba(255, 69, 0, 0.15); color: #ff6b35; }
.source-dev { background: rgba(148, 163, 184, 0.15); color: var(--text-secondary); }
.source-hn { background: rgba(251, 191, 36, 0.15); color: var(--amber); }
.community-heat {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  position: relative;
  cursor: default;
}
.community-heat[data-tooltip]:hover::after,
.community-heat[data-tooltip]:active::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}
.heat-hot { background: rgba(251, 113, 133, 0.15); color: var(--rose); }
.heat-warm { background: rgba(251, 191, 36, 0.15); color: var(--amber); }
.heat-cool { background: rgba(148, 163, 184, 0.15); color: var(--text-muted); }
.community-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.community-summary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 6px;
}
.community-footer {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
}

/* ── Hot Repos ── */
.repo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.repo-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 14px 20px;
}
.repo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.repo-rank {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.rank-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 24px;
}
.rank-change {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
}
.change-new { background: rgba(251, 113, 133, 0.15); color: var(--rose); }
.change-up { background: rgba(52, 211, 153, 0.15); color: var(--emerald); }
.change-down { background: rgba(148, 163, 184, 0.15); color: var(--text-muted); }
.repo-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.repo-info {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.repo-stars { color: var(--text-secondary); font-weight: 600; }
.repo-delta { color: var(--emerald); font-weight: 700; }
.repo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.repo-summary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 8px;
}

/* ── Benchmark ── */
.bench-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bench-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 20px;
  overflow: hidden;
  min-width: 0;
}
.bench-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.bench-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
}
.bench-item:last-child { margin-bottom: 0; }
.bench-pos {
  width: 16px;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}
.bench-item:first-child .bench-pos { color: var(--text-primary); }
.bench-model {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bench-bar-wrap {
  width: 40px;
  flex-shrink: 0;
  height: 4px;
  background: rgba(51, 65, 85, 0.5);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.bench-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s;
}
.bench-panel:nth-child(odd) .bench-bar { background: rgba(34, 211, 238, 0.45); }
.bench-panel:nth-child(even) .bench-bar { background: rgba(52, 211, 153, 0.4); }
.bench-score {
  width: auto;
  max-width: 72px;
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 12px;
  flex-shrink: 0;
}
.bench-change {
  width: 28px;
  font-size: 10px;
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
}
.bench-up { color: var(--emerald); }
.bench-down { color: var(--rose); }
.bench-neutral { color: var(--text-muted); }
.bench-item[data-tooltip] {
  position: relative;
  cursor: default;
}
.bench-item[data-tooltip]:hover::after,
.bench-item[data-tooltip]:active::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

/* ── Keywords ── */
.keyword-table {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
}
.keyword-header {
  display: grid;
  grid-template-columns: 36px 1fr 60px 70px 60px 40px;
  gap: 10px;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--card-border);
}
.keyword-row {
  display: grid;
  grid-template-columns: 36px 1fr 60px 70px 60px 40px;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  font-size: 12px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}
.keyword-row:last-child { border-bottom: none; }
.kw-rank {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 13px;
}
.keyword-row:nth-child(-n+3) .kw-rank { color: var(--text-primary); }
.kw-name {
  font-weight: 700;
  color: var(--text-primary);
}
.kw-count {
  color: var(--text-secondary);
  font-weight: 600;
}
.kw-change-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.kw-bar {
  height: 6px;
  border-radius: 2px;
}
.kw-bar.rising { background: var(--emerald); }
.kw-bar.falling { background: var(--rose); }
.kw-bar.stable { background: var(--text-muted); }
.kw-bar.new-kw { background: var(--amber); }
.kw-pct {
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.kw-pct.up { color: var(--emerald); }
.kw-pct.down { color: var(--rose); }
.kw-pct.new-label { color: var(--amber); }
.kw-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-align: center;
}
.status-rising { background: rgba(52, 211, 153, 0.12); color: var(--emerald); }
.status-stable { background: rgba(148, 163, 184, 0.12); color: var(--text-muted); }
.status-falling { background: rgba(251, 113, 133, 0.12); color: var(--rose); }
.status-new { background: rgba(251, 191, 36, 0.12); color: var(--amber); }
.kw-trend {
  font-weight: 700;
  font-size: 11px;
  text-align: center;
}
.trend-up { color: var(--emerald); }
.trend-down { color: var(--rose); }
.trend-neutral { color: var(--text-muted); }
.trend-star { color: var(--amber); }

/* Hover effects */
.update-row:hover, .briefing-row:hover, .keyword-row:hover {
  background: rgba(34, 211, 238, 0.03);
  transition: background 0.15s ease;
}

/* ── Lucide Icons ── */
.nav-icon svg, .briefing-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}
.briefing-icon svg {
  width: 18px;
  height: 18px;
}
.comment-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.comment-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
  margin-right: 3px;
}

/* ── Tabs ── */
.tab-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.tab-btn {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
.tab-btn.active {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Load More Button ── */
.load-more-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.load-more-btn:hover {
  background: rgba(34, 211, 238, 0.06);
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Empty state ── */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 13px;
  grid-column: 1 / -1;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    border-right: none;
    border-top: 1px solid var(--card-border);
    overflow-x: auto;
    overflow-y: hidden;
  }
  .sidebar-logo, .sidebar-footer, .sidebar-toggle { display: none; }
  .sidebar.collapsed { width: 100%; }
  .sidebar-nav {
    display: flex;
    padding: 0;
    width: 100%;
  }
  .nav-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 0;
    min-height: 48px;
    font-size: 10px;
    border-left: none;
    border-top: 3px solid transparent;
    white-space: nowrap;
  }
  .nav-item.active {
    border-left-color: transparent;
    border-top-color: var(--accent);
  }
  .nav-badge { display: none; }
  .nav-icon { font-size: 18px; }
  .main {
    margin-left: 0 !important;
    padding-bottom: 70px;
  }
  .content { padding: 16px; }
  .header {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 6px 0;
  }
  .header { flex-wrap: wrap; }
  .svc-pill { font-size: 10px; padding: 2px 8px; }
  .header-right {
    width: 100%;
    gap: 8px;
    border-top: 1px solid var(--card-border);
    padding-top: 6px;
  }
  .service-status { margin-right: 0; padding-right: 8px; gap: 6px; }
  .header-stat { font-size: 10px; }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .community-grid { grid-template-columns: 1fr; }
  .bench-grid { grid-template-columns: 1fr; }
  .repo-grid { grid-template-columns: 1fr; }
  .repo-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .repo-info { margin-left: 0; }
  .update-row {
    grid-template-columns: 80px 1fr auto;
    gap: 8px;
    font-size: 11px;
  }
  .update-type, .update-desc { display: none; }
  .keyword-header, .keyword-row {
    grid-template-columns: 28px 1fr 50px 60px 50px 32px;
    gap: 6px;
    padding: 8px 12px;
    font-size: 11px;
  }
}
