@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Standalone Styling Fallbacks & Custom Utility System */
:root {
  --bg-slate-950: #020617;
  --bg-slate-900: #0f172a;
  --border-slate-800: #1e293b;
  --text-cyan-400: #22d3ee;
  --text-purple-400: #c084fc;
}

body {
  margin: 0;
  padding: 0;
  background-color: #020617 !important;
  color: #f8fafc !important;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
}

.glass-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px -15px rgba(6, 182, 212, 0.25);
}

/* Custom Gradients */
.text-cyan-gradient {
  background: linear-gradient(135deg, #22d3ee 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
