.noob-guide-root {
  position: relative;
  z-index: 9000;
}

.noob-guide-launcher,
.noob-guide-panel,
.noob-guide-context-button {
  font: inherit;
}

.noob-guide-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9001;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(360px, calc(100vw - 36px));
  min-height: 46px;
  padding: 11px 14px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.055)),
    rgba(18, 22, 22, .74);
  box-shadow:
    0 18px 52px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  cursor: pointer;
}

.noob-guide-launcher:hover,
.noob-guide-launcher.active {
  border-color: rgba(88, 166, 255, .42);
  background:
    linear-gradient(135deg, rgba(88,166,255,.19), rgba(255,255,255,.06)),
    rgba(18, 22, 22, .82);
}

.noob-guide-raven {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: #9dccff;
  filter: drop-shadow(0 0 9px rgba(88,166,255,.24));
}

.noob-guide-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.noob-guide-panel {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 9002;
  display: none;
  width: min(390px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(18, 20, 20, .82);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  overflow: hidden;
}

.noob-guide-panel.open {
  display: grid;
}

.noob-guide-panel-head {
  display: grid;
  gap: 4px;
  padding: 15px 44px 13px 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.noob-guide-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.noob-guide-title {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.noob-guide-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.noob-guide-close:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.24);
}

.noob-guide-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.noob-guide-body p {
  margin: 0;
  color: rgba(247,250,249,.84);
  font-size: 14px;
  line-height: 1.48;
}

.noob-guide-meta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(53,211,131,.24);
  border-radius: 999px;
  color: var(--ok);
  background: rgba(53,211,131,.08);
  font-size: 12px;
  font-weight: 850;
}

.noob-guide-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0 15px 15px;
  flex-wrap: wrap;
}

.noob-guide-action-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.noob-guide-panel button {
  appearance: none;
  min-height: 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(255,255,255,.075);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.noob-guide-panel button:hover {
  border-color: rgba(88,166,255,.38);
  background: rgba(88,166,255,.16);
}

.noob-guide-panel .noob-guide-hide {
  color: var(--warn);
  border-color: rgba(243,179,63,.24);
  background: rgba(243,179,63,.1);
}

.noob-guide-target {
  position: relative;
}

.noob-guide-context-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(88,166,255,.34);
  border-radius: 999px;
  color: #9dccff;
  background:
    linear-gradient(135deg, rgba(88,166,255,.18), rgba(255,255,255,.045)),
    rgba(10, 12, 12, .72);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.noob-guide-context-button:hover {
  color: var(--text);
  border-color: rgba(88,166,255,.58);
  background: rgba(88,166,255,.24);
}

@media (max-width: 620px) {
  .noob-guide-launcher {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .noob-guide-label {
    max-width: 112px;
  }

  .noob-guide-label::before {
    content: attr(data-short-label);
  }

  .noob-guide-label span {
    display: none;
  }

  .noob-guide-panel {
    right: 12px;
    bottom: 70px;
    width: calc(100vw - 24px);
  }
}
