/* Rich Aesthetics for Cyborg Theme */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0f0f15 0%, #1a1a2e 100%);
  color: #c9d1d9;
}

/* Glassmorphism Navbar */
.navbar {
  background: rgba(10, 10, 15, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* Glassmorphism Cards/Containers */
.card,
.callout {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Links */
a {
  color: #6366f1;
  transition: color 0.2s;
  text-decoration: none;
}

a:hover {
  color: #818cf8;
  text-decoration: none;
}

.nav-link {
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  border: none;
}

.btn-primary:hover {
  filter: brightness(110%);
  transform: translateY(-1px);
}