/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --bg: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08), transparent 35%),
         radial-gradient(circle at 80% 0%, rgba(94, 234, 212, 0.08), transparent 30%),
         #050914;
  --card: rgba(7, 12, 22, 0.82);
  --text: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #34d399;
  text-decoration: none;
}

a:hover {
  color: #6ee7b7;
}
