body {
  font-family: "Inter", sans-serif;
  background-color: #050505; /* Deep Black/Grey */
  color: #ffffff;
}

/* Custom Scrollbar for a cleaner look */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}

/* Subtle glow animation for the red accent */
.hover-glow:hover {
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

/* Blue/Blurple glow for BlissDNS */
.hover-glow-blue:hover {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3); /* Indigo-500 color */
}
