@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Futuristic Global Styles */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Use system fonts instead of Google Fonts for faster loading */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0A0E1A;
  color: #E2E8F0;
  overflow-x: hidden;
}
/* Simplified background - remove heavy gradients */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0E1A 0%, #1E293B 100%);
  pointer-events: none;
  z-index: -1;
}
/* Simplified scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1E293B;
}
::-webkit-scrollbar-thumb {
  background: #00D4FF;
  border-radius: 4px;
}
/* Simplified glass effect */
.glass-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
}
/* Remove heavy transitions */
* {
  transition: none;
}
/* Add transitions only where needed */
.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transition: border-color 0.2s ease;
}
/* Neon glow effects */
.neon-glow {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.neon-text {
  background: linear-gradient(135deg, #00D4FF 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Circuit line animations */
.circuit-lines {
  position: relative;
  overflow: hidden;
}
.circuit-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00D4FF, transparent);
  animation: circuit-flow 3s linear infinite;
}
@keyframes circuit-flow {
  0% { left: -100%; }
  100% { left: 100%; }
}
/* Smooth animations for Material-UI components */
.MuiCard-root,
.MuiPaper-root,
.MuiButton-root {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
