:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #05070d;
}

.desktop-panel {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  width: min(24rem, calc(100vw - 2rem));
  border: 1px solid rgb(255 246 229 / 0.2);
  border-radius: 0.9rem;
  padding: 0.95rem;
  color: #fff6e5;
  background: rgb(5 7 13 / 0.78);
  box-shadow: 0 18px 55px rgb(0 0 0 / 0.35);
  backdrop-filter: blur(14px);
}

.desktop-panel.is-hidden {
  display: none;
}

.desktop-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.desktop-panel h1 {
  margin: 0.15rem 0 0.6rem;
  font-size: 1.55rem;
  line-height: 1;
}

.desktop-panel p {
  margin: 0 0 0.75rem;
  color: #c3caea;
  font-size: 0.92rem;
  line-height: 1.45;
}

.eyebrow {
  margin: 0;
  color: #ffb86b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

button {
  border: 1px solid rgb(255 246 229 / 0.24);
  border-radius: 0.6rem;
  padding: 0.55rem 0.7rem;
  color: #fff6e5;
  background: rgb(255 255 255 / 0.08);
  cursor: pointer;
  font: inherit;
}

button:hover {
  border-color: rgb(255 184 107 / 0.65);
  background: rgb(255 184 107 / 0.14);
}

.jump-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.65rem 0;
}

.jump-grid button:first-child {
  grid-column: 1 / -1;
}

.status {
  margin-bottom: 0;
  color: #95b8ff;
}

.restore-panel {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 19;
}

.restore-panel.is-hidden {
  display: none;
}
