/* dgwrench Design System Engine — Space Grotesk + Inter & Obsidian + Gradient Blue */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-base: #000000;
  --surface-card: #0D0D0D;
  --surface-elevated: #141A29;
  --border-divider: #162032;
  --text-primary: #FFFFFF;
  --text-muted: #DBEAFE;
  --color-secondary: #2563EB;
  --color-third: #3B82F6;
  --color-light: #DBEAFE;
  --accent-subtle: rgba(37, 99, 235, 0.18);
}

body {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading, .font-display {
  font-family: 'Space Grotesk', sans-serif !important;
  letter-spacing: -0.02em;
}

/* Global Component Classes */
.dgw-card {
  background-color: #0D0D0D !important;
  border: 1px solid #162032 !important;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.dgw-card:hover {
  border-color: #3B82F6 !important;
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.35);
}

.dgw-btn-primary {
  background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%) !important;
  color: #FFFFFF !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  box-shadow: none !important;
}
.dgw-btn-primary:hover {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.dgw-btn-secondary {
  background-color: transparent !important;
  border: 1px solid #2563EB !important;
  color: #DBEAFE !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.dgw-btn-secondary:hover {
  background-color: rgba(37, 99, 235, 0.18) !important;
  border-color: #3B82F6 !important;
  color: #FFFFFF !important;
}

/* Global High-Contrast Color Overrides */
.text-red-500, .text-red-400, .text-pink-500, .text-pink-400 {
  color: #3B82F6 !important;
}

.bg-red-600, .bg-red-500, .bg-pink-600, .bg-pink-500 {
  background-color: #2563EB !important;
}

.hover\:bg-red-500:hover, .hover\:bg-red-600:hover {
  background-color: #3B82F6 !important;
}

.border-red-500, .border-red-400, .border-pink-500 {
  border-color: #2563EB !important;
}

/* Smooth Focus Ring Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #3B82F6 !important;
  outline-offset: 2px !important;
}
