html, body { background: #020617; }

#games-list::-webkit-scrollbar { width: 8px; }
#games-list::-webkit-scrollbar-track { background: transparent; }
#games-list::-webkit-scrollbar-thumb { background: #334155; border-radius: 9999px; }

.status-online { background-color: #34d399; box-shadow: 0 0 8px #34d399; }
.status-connecting { background-color: #fbbf24; box-shadow: 0 0 8px #fbbf24; animation: pulse 1.2s infinite; }
.status-offline { background-color: #f87171; box-shadow: 0 0 8px #f87171; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.game-row-enter {
  animation: row-in 0.4s ease-out;
}

@keyframes row-in {
  from { background-color: rgba(52, 211, 153, 0.18); }
  to { background-color: transparent; }
}

.limit-btn {
  transition: background-color 0.15s ease, color 0.15s ease;
}
