body,
html,
.app-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.loading {
  visibility: hidden;
}

[data-theme="light"] body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/src/assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

[data-theme="light"] body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(240, 30%, 12%, 0.7) 100%);
  z-index: -1;
}

.app-container {
  overflow-y: auto;
}
