/* Global base styles */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  transition: background 0.4s ease, color 0.4s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  color: #3b82f6;
}

::selection {
  background: #2563eb;
  color: #eef2f8;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

#zk-root {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
}
