@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #050505;
  color: #F5F5F5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
}

:root {
  --background: 220 60% 4%;
  --foreground: 0 0% 98%;
  --card: 220 60% 6%;
  --card-foreground: 0 0% 98%;
  --popover: 220 60% 6%;
  --popover-foreground: 0 0% 98%;
  --primary: 221 83% 53%;
  --primary-foreground: 0 0% 100%;
  --secondary: 215 16% 47%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 40% 12%;
  --muted-foreground: 215 20% 65%;
  --accent: 215 25% 27%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 40% 15%;
  --input: 220 40% 15%;
  --ring: 221 83% 53%;
  --radius: 0.75rem;
}

* {
  border-color: hsl(var(--border));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #050a1a;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Accent text accent (Steel) */
.text-accent {
  color: #64748b;
}

.bg-accent {
  background-color: #64748b;
}

.border-accent {
  border-color: #64748b;
}

/* Primary text accent (Cobalt) */
.text-primary {
  color: #2563eb;
}

.bg-primary {
  background-color: #2563eb;
}

.border-primary {
  border-color: #2563eb;
}

/* Glassmorphism */
.glass {
  background: rgba(5, 10, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glow effect */
.glow-primary {
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.glow-primary:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
*:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
*:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background-color: rgba(16, 185, 129, 0.3);
  color: #F5F5F5;
}

/* Hamburger transition helper */
#mobile-menu {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}