/* Base Styles */

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: var(--page-bg);
  background-image: var(--page-bg-accent);
  background-attachment: fixed;
  color: var(--tg-text);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
  opacity: 0.75;
}

body.theme-light::before {
  opacity: 0.35;
}

/* simple fade-in */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
