/*
 * 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.
 */


body {
  --bg-color: #0f0f10;
  --primary-color: #ffd84d;
  --secondary-color: #fff3bf;
  --accent-color: #ff9f1c;

  /* 🟢 */
  --common-badge: green;
  /* 🔵 */
  --uncommon-badge: blue;
  /* 🟣 */
  --rare-badge: purple;
  /* 🔴 */
  --epic-badge: red;  
  /* 🟠 */
  --legendary-badge: orange;

  background: linear-gradient(135deg, #0f0f10 0%, #1a1a1d 100%);
  background-attachment: fixed;
  color: var(--primary-color);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}