
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');

body {
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #e5e5e5;
}

/* Utilities */
::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 80s linear infinite;
}

/* Text Selection Color */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
