.guide-bot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  font-family: Inter, system-ui, sans-serif;
  color: #f4f1ea;
}

.guide-bot * {
  box-sizing: border-box;
}

.guide-bot__button,
.guide-bot__close {
  font: inherit;
  cursor: pointer;
}

.guide-bot__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(201, 244, 106, 0.38);
  border-radius: 999px;
  background: rgba(15, 17, 16, 0.92);
  color: #f4f1ea;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.guide-bot.is-open .guide-bot__button,
.guide-bot__button[hidden] {
  display: none;
}

.guide-bot__button-mark {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201, 244, 106, 0.18);
  color: #c9f46a;
  font-weight: 800;
}

.guide-bot__panel {
  width: min(360px, calc(100vw - 28px));
  max-height: 70vh;
  display: none;
  gap: 14px;
  padding: 16px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 17, 16, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.guide-bot.is-open .guide-bot__panel {
  display: grid;
}

.guide-bot__panel[hidden] {
  display: none;
}

.guide-bot__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.guide-bot__eyebrow,
.guide-bot__title,
.guide-bot__copy,
.guide-bot__topic-title,
.guide-bot__topic-copy,
.guide-bot__contact {
  margin: 0;
}

.guide-bot__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9f46a;
}

.guide-bot__title {
  margin-top: 3px;
  font-size: 17px;
  line-height: 1.25;
}

.guide-bot__close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f1ea;
}

.guide-bot__copy,
.guide-bot__topic-copy,
.guide-bot__contact {
  color: rgba(244, 241, 234, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.guide-bot__topics {
  display: grid;
  gap: 8px;
}

.guide-bot__topic {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.guide-bot__topic-title {
  font-size: 13px;
  font-weight: 800;
}

.guide-bot__contact a {
  color: #c9f46a;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 640px) {
  .guide-bot {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    justify-items: end;
  }

  .guide-bot__panel {
    width: 100%;
    max-height: 72vh;
  }
}
