/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', sans-serif;
}

/* Global Selection Style */
::selection {
  background: #f0abfc;
  color: #000;
}

/* Scrollbar Utilities */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #0a0a0a;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 2px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Brutalist Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInFromBottom {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromTop {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-in {
  animation-duration: 500ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in { animation-name: fadeIn; }
.zoom-in { animation-name: zoomIn; }
.slide-in-from-bottom-6 { animation-name: slideInFromBottom; }
.slide-in-from-top-4 { animation-name: slideInFromTop; }
.slide-in-from-left-6 { animation-name: slideInFromLeft; }

/* Duration Overrides */
.duration-300 { animation-duration: 300ms; }
.duration-500 { animation-duration: 500ms; }
.duration-700 { animation-duration: 700ms; }
.duration-1000 { animation-duration: 1000ms; }

/* Helper for Brutalist Shadows */
.shadow-brutalist-fuchsia { shadow: 8px 8px 0px 0px #d946ef; }
.shadow-brutalist-orange { shadow: 8px 8px 0px 0px #f97316; }
.shadow-brutalist-yellow { shadow: 8px 8px 0px 0px #eab308; }
.shadow-brutalist-green { shadow: 8px 8px 0px 0px #10b981; }
