/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg-dark: #070c17;
  --bg-panel: #0d1527;
  --bg-card: #132242;
  --border-subtle: #1e2d4d;
  --border-gold: #f5c242;
  --gold-primary: #f5c242;
  --gold-hover: #fef08a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --class-beast: #f59e0b;
  --class-plant: #22c55e;
  --class-aquatic: #38bdf8;
  --class-bird: #f472b6;
  --class-reptile: #a855f7;
  --class-bug: #ef4444;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  color: var(--text-main);
  letter-spacing: 0.5px;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(11, 19, 36, 0.5);
}
::-webkit-scrollbar-thumb {
  background: #283758;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}
button {
  font-family: inherit;
}
a {
  color: inherit;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
