/* Base shell styles for the standalone Sauna Sessions app.
   The app ships its own theme tokens in sauna-react.bundle.css, so this only
   covers the document reset and the shell wrapper the app renders into. */

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--sauna-bg, #0b0f14);
  color: var(--sauna-text, #f7f7fb);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.shell-main {
  min-height: 100vh;
}

img,
svg,
video {
  max-width: 100%;
}

button {
  font: inherit;
}

a {
  color: inherit;
}
