body {
  background-color: #121212;
  color: #fff;
  font-family: "Segoe UI", "Inter", sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}

.icon {
  border-radius: 8px;
}

.platform-link {
  word-break: break-all;
}

.loader {
  border-top-color: #60a5fa;
  animation: spin 1s linear infinite;
}

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