@charset "UTF-8";
.open-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  font-size: 24px;
  line-height: 1;
  z-index: 100;
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}

.open-sidebar.moused-over {
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

#open-sidebar-div {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
}

html,
body {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0f1a1c;
  color: #ffffff;
  font-family: "Courier New", monospace;
  width: 100%;
  height: 100dvh;
}

#wrapper-div,
#main-wrapper {
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
}

#main-wrapper {
  padding: 0;
}

#hub-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Central orb ── */
#orb {
  position: absolute;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #b9c8ff, #3654c9 60%, #162469);
  box-shadow: 0 0 22px 6px rgba(72, 106, 210, 0.32), 0 0 56px 14px rgba(56, 88, 190, 0.14);
  transform: translate(-50%, -50%);
  cursor: default;
  z-index: 10;
  pointer-events: none;
}

#account-button {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 11;
  pointer-events: auto;
}

/* ── Project nodes ── */
.node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.node button {
  background: #05133a;
  border: 1px solid #8caaff;
  color: #e2ebff;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.node button:hover {
  background: rgba(100, 140, 255, 0.18);
  border-color: rgba(140, 170, 255, 0.9);
  color: #fff;
  box-shadow: 0 0 14px 2px rgba(100, 140, 255, 0.3);
}

#account-button {
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: rgba(235, 235, 235, 0.9);
}

.orb-primary-link,
.orb-auth-link {
  color: inherit;
  text-decoration: none;
}

.orb-primary-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.orb-auth-links {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}

.orb-auth-link {
  padding: 0.05rem 0;
}

.orb-auth-link:hover,
.orb-primary-link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=userHub.css.map */
