@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #111827; /* Dark Gray Base */
  color: #f9fafb;
  margin: 0;
  overflow-x: hidden;
}

/* --- Glassmorphism Logic --- */
/* This makes sure the React components don't block the particles */
#root, section {
  background-color: transparent !important;
}

header {
  backdrop-filter: blur(10px);
  background-color: rgba(17, 24, 39, 0.8); /* Semi-transparent header */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar (Arch Linux Blue) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #38bdf8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0ea5e9;
}
