:root {
  color-scheme: dark; /* prefer dark aesthetic */
}

body {
  background-color: #0b0b0b;
  color: #ffffff;
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  scroll-behavior: smooth;
}

::selection {
  background: #f9b300;
  color: #1a1a1a;
}

.text-gradient {
  background: linear-gradient(90deg, #f9b300 0%, #ffd666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(249, 179, 0, 0.2);
}

.grid-overlay {
  background-image: linear-gradient(rgba(249, 179, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 179, 0, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.animate-spin-slow {
  animation: spin 20s linear infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.modal-open {
  overflow: hidden;
}

