/* ===== Variables & Base Reset ===== */

:root {
  --bg: #0b0f14;
  --card: #0f1720;
  --muted: #9aa7b2;
  --accent: #6ee7b7;
  --accent-2: #7c6cff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.02);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #e6eef3;
  line-height: 1.45;
  padding: 32px;
  box-sizing: border-box;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.container > footer {
  margin-top: auto;
}

a.link {
  color: var(--accent);
  text-decoration: none;
}
