body { font-family: 'Inter', sans-serif; }

.glass-panel {
  background: rgba(31, 199, 98, 0.03);
  border: 1px solid rgba(31, 199, 98, 0.1);
  backdrop-filter: blur(12px);
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Score circle animations */
.score-ring {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Issue card hover */
.issue-card {
  transition: all 0.2s ease;
}
.issue-card:hover {
  border-color: rgba(31, 199, 98, 0.3);
  transform: translateY(-1px);
}

/* Fix panel code blocks */
.code-block {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(31, 199, 98, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(31, 199, 98, 0.4); }
