.guidance-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.guidance-choice button {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-align: left;
}

.guidance-choice button:hover,
.guidance-choice button:focus-visible {
  border-color: #e8a33d;
  transform: translateY(-1px);
}

.guidance-choice button b,
.guidance-choice button span {
  display: block;
}

.guidance-choice button b {
  margin-bottom: 8px;
  font-size: 16px;
}

.guidance-choice button span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.manual-guide {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: 430px;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 163, 61, 0.35);
  border-radius: 16px;
  background: rgba(10, 12, 15, 0.94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

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

.manual-guide div,
.manual-guide b,
.manual-guide span {
  display: block;
}

.manual-guide span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.manual-guide button {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

@media (max-width: 620px) {
  .guidance-choice {
    grid-template-columns: 1fr;
  }

  .guidance-choice button {
    min-height: 104px;
  }

  .manual-guide {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
}
