/* ==========================================================================
   AI Claw Market — Custom Styles
   File: main.css
   Description: Complete stylesheet for the UI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: 0 0% 3%;
  --foreground: 0 0% 95%;
  --card: 0 0% 6%;
  --card-foreground: 0 0% 92%;
  --popover: 0 0% 6%;
  --popover-foreground: 0 0% 92%;
  --primary: 24 100% 50%;
  --primary-foreground: 0 0% 3%;
  --secondary: 0 0% 10%;
  --secondary-foreground: 0 0% 85%;
  --muted: 0 0% 8%;
  --muted-foreground: 0 0% 50%;
  --accent: 35 100% 62%;
  --accent-foreground: 0 0% 3%;
  --destructive: 0 80% 55%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 14%;
  --input: 0 0% 10%;
  --ring: 24 100% 50%;
  --radius: 0.375rem;
  --neon-amber: #FF6B00;
  --neon-gold: #FFB347;
  --neon-cyan: #00FFD4;
  --mizu: #22d3ee;
  --purple: #c084fc;
  --grid-color: rgba(255, 107, 0, 0.04);
}




/* Links */
.link-underline {
   text-decoration: underline dashed 1px;
   text-underline-offset: 4px;
}
.link-underline:hover {
   text-underline-offset: 6px;
}
.link-purple {
   text-decoration-color: var(--purple);
   color: var(--purple);;
}
.link-purple:hover {
   color: var(--mizu);
   text-decoration-color: var(--mizu);
}


/* Buttons */
.btn-outllined {
   
}

