body {
  background-color: #030303;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #030303;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b026ff;
}

.glow-text {
  text-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}
.ghost-border {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.ghost-border:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
}
.gradient-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
