body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #121821; }
::-webkit-scrollbar-thumb { background: #2c3a4d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3b4a60; }

.chip {
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover {
  background-color: #1d2733;
  border-color: #3b82f6;
}

.autocomplete-item {
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.autocomplete-item:hover {
  background-color: #1d2733;
}

.progress-bar-track {
  background: #1a2230;
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.score-ring {
  transition: stroke-dashoffset 0.8s ease;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.news-item {
  border-bottom: 1px solid #1e2733;
  padding-bottom: 10px;
}
.news-item:last-child {
  border-bottom: none;
}
