/* Global tokens, reset and utilities. */

:root {
  color-scheme: dark;
  --bg: #10151d;
  --panel: #18212c;
  --panel-2: #202b37;
  --text: #f4f7fb;
  --muted: #aeb9c7;
  --accent: #42d6b5;
  --neon: #43c8ff;
  --deep: #06111c;
  --gold: #ffd166;
  --amber: #f2a91f;
  --danger: #ff6b6b;
  --line: #314050;
  --rx-hangar-bg: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

html {
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

body {
  align-items: center;
  background: #020914;
  color: var(--text);
  display: flex;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
}

button {
  appearance: none;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: #06120f;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 40px;
  padding: 0 16px;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(1) brightness(0.72);
  opacity: 0.7;
}

.app-root {
  height: 100vh;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hidden {
  display: none !important;
}

@media (max-width: 700px) {
  .app-root {
    grid-template-columns: 1fr;
  }
}
