html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-deepest);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-dark) 100%);
  z-index: -1;
}

#root {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

a {
  color: var(--text-primary);
  transition: opacity 0.2s;
  font-weight: 500;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
  color: var(--accent);
}

small {
  color: var(--text-primary);
  opacity: 0.8;
}
