@charset "utf-8";
/* CSS Document */

  
/* Base Layout Configurations */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a; /* Tailwind slate-900 */
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Structural Panels */
.glass-panel {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Global Custom Webkit Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Structural Layout Micro-Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #475569;
  border-radius: 2px;
}

/* Staggered Interface Micro-Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-1 { animation-delay: 50ms; }
.stagger-2 { animation-delay: 100ms; }
.stagger-3 { animation-delay: 150ms; }
.stagger-4 { animation-delay: 200ms; }
.stagger-5 { animation-delay: 250ms; }

/* Modal Background Blur Transits */
.modal-overlay {
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
}

/* Dynamic Flex Grid Interactive Palette Swatches */
.builder-swatch {
  transition: flex 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

@media (min-width: 768px) {
  .builder-swatch:hover {
    flex: 1.15;
  }
}