/* THEME BASIS */

:root {
  color-scheme: dark;
  --bg-main: #000000;
  --bg-elevated: #111111;
  --bg-card: #181818;
  --border-subtle: #222222;
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
  --accent: #0a84ff;
  --danger: #ff3b30;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* APP CONTENT OFFSET (Header + Tabbar) */

#app {
  padding-top: calc(56px + env(safe-area-inset-top));
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

/* LINKS */

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
