/* Meriwa UI entrypoint */
@import url("./variables.css");
@import url("./layout.css");
@import url("./components.css");

/* ====== App-level helpers ====== */
html{box-sizing:border-box}
*, *::before, *::after{box-sizing:inherit}

html, body{
  height:100%;
}

body{
  margin:0;
  font-family:var(--font-body);
  background:var(--bgGradient);
  color:var(--text);
  overflow-x:hidden;
}


a{color:inherit;text-decoration:none}

button{font:inherit}

img{max-width:100%;display:block}

/* Keep scrollbars subtle (optional) */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:rgba(255,255,255,0.02)}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.10);border-radius:999px}
