@import url("../fonts/fonts.css");

:root {
  --bg: #F4F7FB;
  --card: #FFFFFF;
  --ink: #0F1726;
  --muted: #5F6B82;
  --line: #E1E6EE;
  --primary: #1A6DF5;
  --primary-d: #0B4FD6;
  --primary-deep: #0A3A8C;
  --green: #27A34A;
  --green-soft: #E6F6EE;
  --danger: #D84B3A;
  --danger-soft: #FDECEA;
  --coin: #FFC24B;
  --coin-d: #E0A52E;
  --shadow-soft: 0 10px 30px rgba(16, 40, 90, 0.06);
  --shadow-blue: 0 10px 24px rgba(26, 109, 245, 0.30);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.csrf-form {
  display: none;
}

.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
