* {
  scroll-behavior: smooth;
  /* outline: 1px solid rgba(255, 0, 0, 0.1); */
}

html {
  color: var(--font-color);
  font-family: var(--font-main);
  font-weight: 400;
  scrollbar-width: none;
}

section[id] {
  scroll-margin-top: 112px;
}

/* Mouse gradient effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(150px circle at var(--cursor-x) var(--cursor-y), var(--color-accent), transparent 50%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 10;
  opacity: var(--cursor-opacity, 1);
  transition: opacity 0.3s ease;
}