/* ============================================
   ГОСТЕВОЙ ПРОМПТ — мягкий инвайт на авторизацию, используется вместо
   блокирующих alert()/модалок на trades.html/inventory.html/profile.html/
   settings.html. Разметка — window.guestPromptHtml() из frontend/utils.js.
   ============================================ */
.guest-prompt {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 40px auto;
    text-align: center;
    padding: 56px 24px;
}
.guest-prompt__icon {
    width: 60px; height: 60px; margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.08);
    border: 1px solid rgba(0, 229, 153, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: #00E599;
}
.guest-prompt__icon svg { width: 26px; height: 26px; }
.guest-prompt__title { font-size: 1.2rem; font-weight: 700; color: #E8E8E8; margin-bottom: 8px; }
.guest-prompt__text { font-size: 0.88rem; color: #999; line-height: 1.55; margin-bottom: 26px; }
.guest-prompt__cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: #00E599; color: #0A0A0A; border: none; border-radius: 40px;
    font-weight: 700; font-size: 0.9rem; padding: 12px 32px; cursor: pointer;
    font-family: inherit; transition: all 0.2s ease;
}
.guest-prompt__cta:hover { background: #00cc82; transform: translateY(-1px); }
