/* ===== Global base (колись було в global_globals.css) ===== */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  overflow-y: scroll;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
  height: 100%;
}

/* ===== Global Theme (visuals only, no layout) ===== */

/* Базовий фон/тема для всіх сторінок */
body {
  /* глобальний фон */
  background-color: #121a1c; /* можна замінити на transparent або #0f1116 */
  background-image: url('/static/images/background.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;

  /* базова поведінка документа */
  min-height: 100vh;
  overflow-x: hidden;

  /* тіло як колона; #app всередині розтягнеться */
  display: flex;
  flex-direction: column;
}

/* Каркасний контейнер з global_index.html */
#app {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 100%;
}

/* Базова типографіка/посилання — мінімум */
a {
  text-decoration: none;
  outline: none;
}
a:focus-visible {
  outline: 2px dashed rgba(255,255,255,0.4);
  outline-offset: 2px;
}
