.compare-widget { margin-top: 8px; }
.cw-presets {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
}
.cw-your-hang {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cw-your-time {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
}
.cw-preset-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  background: linear-gradient(135deg, #D4AF37 0%, #cd7f32 100%);
  border: 1px solid rgba(205, 127, 50, 0.5);
  border-radius: 8px;
  color: #000;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cw-preset-btn:hover,
.cw-preset-btn.cw-preset-active {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}
.cw-picker-muted { opacity: 0.55; }
.cw-pickers {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 16px;
  margin-bottom: 20px;
}
.cw-picker { flex: 1 1 200px; display: flex; flex-direction: column; gap: 6px; }
.cw-picker-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b5b5b5;
  font-weight: 600;
}
.cw-search-picker { position: relative; }
.cw-search-input {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
}
.cw-search-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}
.cw-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.cw-suggestion {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #ddd;
}
.cw-suggestion:hover,
.cw-suggestion-active {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
}
.cw-suggestion-name { font-weight: 600; }
.cw-suggestion-pr {
  font-family: 'Roboto Mono', monospace;
  color: #D4AF37;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cw-suggestion-empty {
  padding: 12px 14px;
  color: #b5b5b5;
  font-size: 0.9rem;
}
.cw-vs {
  font-family: 'Oswald', sans-serif;
  color: #D4AF37;
  font-size: 1.1rem;
  padding-bottom: 10px;
}
.cw-results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .cw-results-inner { grid-template-columns: 1fr; }
  .cw-vs { display: none; }
}
.cw-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.cw-name {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.cw-meta { font-size: 0.85rem; color: #888; margin-bottom: 10px; }
.cw-verified { color: #8FBC8F; font-size: 0.8rem; font-weight: 600; }
.cw-unverified { color: #888; font-size: 0.8rem; }
.cw-pr {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0 4px;
}
.cw-tier {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.cw-stat { margin-top: 8px; }
.cw-label { display: block; font-size: 0.7rem; color: #b0b0b0; text-transform: uppercase; letter-spacing: 0.5px; }
.cw-value { font-family: 'Roboto Mono', monospace; font-size: 1.25rem; color: #fff; }
.cw-muted { color: #b0b0b0; }
.cw-delta {
  margin-top: 16px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.95rem;
}
.cw-empty { color: #888; text-align: center; padding: 24px; }