* { box-sizing: border-box; }
html, body, #root { height: 100%; margin: 0; }
body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #121212;
  color: #fff;
  overflow: hidden;
}
.boot-screen {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: radial-gradient(circle at 50% 30%, #1db95433, #121212 60%);
}
.boot-logo { font-size: 28px; font-weight: 700; }
.boot-sub { color: #b3b3b3; font-size: 14px; }

/* Scrollbars */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
::-webkit-scrollbar-track { background: transparent; }

.app-scroll { height: 100%; overflow-y: auto; }
