/* Dark Theme Variables - Backup (also defined in tailwind.config.js) */
:root {
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #242938;
  --bg-hover: #2d3448;

  --text-primary: #e8eaed;
  --text-secondary: #9aa0a6;
  --text-muted: #6b7280;

  --accent-buy: #10b981;
  --accent-buy-bg: rgba(16, 185, 129, 0.1);
  --accent-buy-hover: rgba(16, 185, 129, 0.2);

  --accent-sell: #ef4444;
  --accent-sell-bg: rgba(239, 68, 68, 0.1);
  --accent-sell-hover: rgba(239, 68, 68, 0.2);

  --accent-hold: #6366f1;
  --accent-hold-bg: rgba(99, 102, 241, 0.1);
  --accent-hold-hover: rgba(99, 102, 241, 0.2);

  --border-color: #2d3748;
  --border-subtle: rgba(255, 255, 255, 0.05);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Gradient Text Effect - Complex gradient that's cleaner in CSS */
.bg-gradient-to-r.from-accent-buy.to-accent-hold.bg-clip-text.text-transparent {
  background: linear-gradient(135deg, var(--accent-buy), var(--accent-hold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Remove default link underlines for cleaner design */
a.no-underline {
  text-decoration: none;
}

a.no-underline:hover {
  text-decoration: none;
}
