/* === Виджет авторизации в хедере === */
.auth-widget {
    margin-left: 18px;
    position: relative;
    z-index: 110;
}

.auth-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 3px 14px rgba(110, 18, 30, 0.35);
    transition: filter 0.2s, transform 0.2s;
}
.auth-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

.auth-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 5px;
    background: rgba(69, 15, 23, 0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s;
    position: relative;
}
.auth-user:hover { border-color: var(--accent); }
.auth-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid rgba(200, 155, 60, 0.3);
}
.auth-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.auth-role {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 2px 7px; border-radius: 100px;
    background: rgba(110, 18, 30, 0.2);
    color: var(--accent-light);
}
.auth-role-admin     { background: rgba(255, 70, 70, 0.22);  color: #ff8a8a; }
.auth-role-moderator { background: rgba(255, 165, 0, 0.22);  color: #ffd28a; }
.auth-role-helper    { background: rgba(70, 200, 140, 0.22); color: #8af0c4; }

.auth-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: rgba(26, 11, 15, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(110, 18, 30, 0.3);
    border-radius: 12px;
    padding: 6px;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.auth-user.open .auth-menu { display: block; }
.auth-menu a, .auth-menu button {
    display: block; width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    background: none; border: none;
    color: var(--text); text-decoration: none;
    font-family: inherit; font-size: 0.88rem; text-align: left;
    cursor: pointer; transition: background 0.15s;
}
.auth-menu a:hover, .auth-menu button:hover {
    background: rgba(110, 18, 30, 0.18);
    color: var(--accent-light);
}
.auth-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 1px 7px; border-radius: 100px;
    margin-left: 6px;
    box-shadow: 0 2px 6px rgba(110, 18, 30, 0.4);
}

/* === Модалка вход/регистрация === */
.auth-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: auth-fade 0.18s ease;
}
@keyframes auth-fade { from { opacity: 0 } to { opacity: 1 } }

.auth-modal {
    background: linear-gradient(180deg, rgba(69, 15, 23, 0.98), rgba(21, 19, 26, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(110, 18, 30, 0.4);
    border-radius: 18px;
    padding: 28px 24px 20px;
    width: 100%; max-width: 380px;
    /* Если контент больше — скроллим внутри модалки, не за экран */
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(110, 18, 30, 0.2);
    animation: auth-pop 0.22s cubic-bezier(.2,.8,.2,1);
    /* Аккуратный скроллбар (Chrome/Edge/Safari) */
    scrollbar-width: thin;
    scrollbar-color: rgba(110,18,30,0.5) transparent;
}
.auth-modal::-webkit-scrollbar { width: 6px; }
.auth-modal::-webkit-scrollbar-track { background: transparent; }
.auth-modal::-webkit-scrollbar-thumb { background: rgba(110,18,30,0.5); border-radius: 3px; }
@keyframes auth-pop {
    from { opacity: 0; transform: translateY(20px) scale(0.96) }
    to   { opacity: 1; transform: translateY(0) scale(1) }
}

.auth-close {
    position: absolute; top: 12px; right: 14px;
    background: transparent; border: none;
    color: var(--text-muted);
    font-size: 1.2rem; cursor: pointer;
    padding: 4px 8px; border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.auth-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

.auth-tabs {
    display: flex;
    background: rgba(0,0,0,0.25);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 22px;
    gap: 4px;
}
.auth-tabs button {
    flex: 1; padding: 9px 14px;
    background: transparent; border: none;
    color: var(--text-muted);
    font-family: inherit; font-size: 0.88rem; font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.auth-tabs button.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(110, 18, 30, 0.4);
}

.auth-field {
    display: block;
    margin-bottom: 12px;
}
.auth-field span {
    display: block;
    font-size: 0.72rem; font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase; letter-spacing: 0.7px;
    margin-bottom: 4px;
}
.auth-field input,
.auth-field textarea {
    width: 100%;
    padding: 9px 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text);
    font-family: inherit; font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.auth-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(110, 18, 30, 0.25);
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: inherit; font-size: 0.95rem; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(110, 18, 30, 0.35);
    transition: filter 0.2s, transform 0.15s;
    margin-top: 6px;
}
.auth-submit:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.auth-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.auth-hint {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.auth-error {
    background: rgba(255, 70, 70, 0.15);
    border: 1px solid rgba(255, 70, 70, 0.4);
    color: #ff9a9a;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

/* === Комментарии === */
.comments-section {
    margin-top: 48px;
}
.comments-section .section-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    padding-left: 14px;
    position: relative;
}
.comments-section .section-header h2::before {
    content: ''; position: absolute; left: 0; top: 6px; bottom: 6px;
    width: 4px; border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-light), var(--accent));
}

.comment-form {
    background: rgba(69, 15, 23, 0.4);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    margin: 18px 0 24px;
}
.comment-form textarea {
    width: 100%;
    min-height: 80px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--text);
    font-family: inherit; font-size: 0.92rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}
.comment-form textarea:focus { border-color: var(--accent); }

.comment-form-bottom {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10px; gap: 12px;
}
.comment-form-hint {
    color: var(--text-muted);
    font-size: 0.78rem;
}
.comment-form-hint code {
    background: rgba(110, 18, 30, 0.18);
    color: var(--accent-light);
    padding: 1px 6px; border-radius: 4px;
}
.comment-form button {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: inherit; font-weight: 600; font-size: 0.88rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(110, 18, 30, 0.3);
    transition: filter 0.2s, transform 0.2s;
}
.comment-form button:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.comment-form button:disabled { opacity: 0.5; cursor: not-allowed; }

.comments-list {
    display: flex; flex-direction: column; gap: 14px;
    list-style: none; padding: 0; margin: 0;
}
.comment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}
.comment-item.is-deleted .comment-body {
    color: var(--text-muted);
    font-style: italic;
}
.comment-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.comment-author {
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.15s;
}
.comment-author:hover { color: var(--accent-light); }
.comment-avatar-link { display: inline-flex; }
.comment-avatar-link:hover .comment-avatar { border-color: var(--accent); }
.comment-date {
    color: var(--text-muted); font-size: 0.78rem;
}
.comment-body {
    color: var(--text);
    line-height: 1.55;
    font-size: 0.93rem;
    word-wrap: break-word;
}

/* Спойлеры */
.comment-body spoiler {
    display: inline-block;
    background: var(--accent-dark);
    color: var(--accent-dark);
    border-radius: 4px;
    padding: 0 4px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s, background 0.2s;
}
.comment-body spoiler::before { content: 'спойлер: '; opacity: 0.7; font-size: 0.8em; }
.comment-body spoiler.revealed {
    background: rgba(110, 18, 30, 0.15);
    color: var(--text);
    user-select: text;
    cursor: text;
}
.comment-body spoiler.revealed::before { content: ''; }

.comment-actions {
    display: flex; gap: 10px;
    margin-top: 10px;
    align-items: center;
}
.like-btn, .dislike-btn {
    background: rgba(110, 18, 30, 0.1);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: inherit; font-size: 0.82rem;
    padding: 5px 12px;
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.like-btn:hover    { border-color: var(--accent); color: var(--accent-light); }
.dislike-btn:hover { border-color: #5a6b80;        color: #b8c7d6; }

.dislike-btn.disliked {
    background: linear-gradient(135deg, #3a4555, #1f262f);
    color: #fff;
    border-color: #4a5666;
}
.like-btn.liked {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-color: var(--accent);
}
.del-btn, .reply-btn {
    background: none; border: none;
    color: var(--text-muted); font-family: inherit; font-size: 0.82rem;
    cursor: pointer; padding: 5px 10px;
    border-radius: 100px;
    transition: color 0.15s, background 0.15s;
}
.del-btn:hover { color: #ff8a8a; background: rgba(255, 70, 70, 0.1); }
.reply-btn:hover { color: var(--accent-light); background: rgba(110, 18, 30, 0.15); }

/* Закреплённый коммент — золотая обводка + бейдж */
.comment-item.is-pinned {
    border-color: rgba(200, 155, 60, 0.5);
    background: linear-gradient(180deg, rgba(200, 155, 60, 0.06), var(--bg-card) 30%);
}
.comment-item.is-pinned::before {
    content: '📌 Закреплено';
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Игнор: показываем плашку «скрыто», содержание прячем */
.comment-item.is-ignored .comment-body,
.comment-item.is-ignored .comment-actions { display: none; }
.comment-item.is-ignored {
    opacity: 0.5;
    border-style: dashed;
}
.comment-item.is-ignored .comment-head::after {
    content: ' — скрыто (игнор)';
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 400;
}

/* Кнопки «Жалоба» / «Игнор» / «Открепить» */
.report-btn, .ignore-btn, .pin-btn {
    background: none; border: none;
    color: var(--text-muted); font-family: inherit; font-size: 0.82rem;
    cursor: pointer; padding: 5px 10px;
    border-radius: 100px;
    transition: color 0.15s, background 0.15s;
}
.report-btn:hover { color: #ffae5a; background: rgba(255, 165, 0, 0.1); }
.ignore-btn:hover { color: #b8c7d6; background: rgba(90, 107, 128, 0.15); }
.pin-btn:hover    { color: var(--gold); background: rgba(200, 155, 60, 0.12); }
.pin-btn.is-pinned { color: var(--gold); }

/* Аватарка автора коммента */
.comment-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.comment-head { display: flex; align-items: center; gap: 8px; }

/* Вложенные ответы (бесконечно вложенные) */
.comment-replies {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 24px;
    border-left: 2px solid rgba(110, 18, 30, 0.4);
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reply-collapsed { display: none; }
.show-more-btn {
    align-self: flex-start;
    background: rgba(110, 18, 30, 0.1);
    color: var(--accent-light);
    border: 1px solid rgba(110, 18, 30, 0.3);
    font-family: inherit; font-size: 0.82rem; font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.show-more-btn:hover {
    background: rgba(110, 18, 30, 0.2);
    border-color: var(--accent);
}

.reply-form {
    margin: 10px 0 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
}
.reply-form textarea { min-height: 60px; font-size: 0.88rem; }
.reply-form-slot:empty { display: none; }

.comments-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 30px 20px;
    background: rgba(69, 15, 23, 0.3);
    border-radius: 12px;
    border: 1px dashed var(--border);
}

.must-login {
    background: rgba(110, 18, 30, 0.08);
    border: 1px solid rgba(110, 18, 30, 0.3);
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.must-login button {
    background: none; border: none;
    color: var(--accent-light);
    font-weight: 700; cursor: pointer;
    font-family: inherit; font-size: 0.9rem;
    text-decoration: underline;
    padding: 0 4px;
}

@media (max-width: 600px) {
    .auth-widget { margin-left: 8px; }
    .auth-user { padding: 4px 10px 4px 4px; }
    .auth-name { font-size: 0.82rem; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .auth-role { display: none; }
    .auth-modal { padding: 24px 20px 20px; }
}

/* === Колокольчик уведомлений === */
.auth-widget { display: inline-flex; align-items: center; gap: 8px; }
.notif-bell {
    position: relative;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(69, 15, 23, 0.7);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.05rem;
    cursor: pointer;
    transition: border-color 0.18s, transform 0.18s;
    display: inline-flex; align-items: center; justify-content: center;
}
.notif-bell:hover { border-color: var(--accent); transform: translateY(-1px); }
.notif-badge {
    position: absolute;
    top: -2px; right: -2px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    border-radius: 100px;
    background: var(--accent);
    color: #fff;
    font-size: 0.66rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
/* HTML-атрибут [hidden] перебивается display:flex выше — заставляем скрывать */
.notif-badge[hidden], .auth-badge[hidden] { display: none !important; }
@media (max-width: 600px) {
    .notif-bell { width: 34px; height: 34px; font-size: 0.95rem; }
}

/* === Выпадайка уведомлений === */
.notif-dropdown {
    width: min(360px, calc(100vw - 24px));
    max-height: 70vh;
    background: rgba(26, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(110, 18, 30, 0.4);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    z-index: 200;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.notif-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(110, 18, 30, 0.3);
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}
.notif-head button {
    background: none; border: none;
    color: var(--accent-light);
    cursor: pointer; font-family: inherit; font-size: 0.78rem;
    font-weight: 600;
}
.notif-head button:hover { text-decoration: underline; }

.notif-list {
    list-style: none; padding: 0; margin: 0;
    overflow-y: auto;
    flex: 1;
}
.notif-empty {
    text-align: center; padding: 32px 16px;
    color: var(--text-muted); font-size: 0.88rem;
}
.notif-item {
    display: flex; gap: 10px;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(110, 18, 30, 0.15);
    cursor: pointer;
    transition: background 0.15s;
    align-items: flex-start;
}
.notif-item:hover { background: rgba(110, 18, 30, 0.15); }
.notif-item.unread { background: rgba(110, 18, 30, 0.22); }
.notif-item.unread::before {
    content: ''; position: absolute; left: 4px; top: 50%;
    transform: translateY(-50%); width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent);
}
.notif-item { position: relative; padding-left: 16px; }
.notif-ico {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(110, 18, 30, 0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.notif-ava {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(110, 18, 30, 0.25) center/cover no-repeat;
    border: 1px solid rgba(200, 155, 60, 0.2);
}
.notif-body { flex: 1; min-width: 0; }
.notif-top {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.4;
}
.notif-top b { color: #fff; }
.notif-time {
    margin-left: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
}
.notif-text {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.notif-foot {
    padding: 8px 12px;
    border-top: 1px solid rgba(110, 18, 30, 0.3);
}
.notif-clear {
    width: 100%; padding: 7px;
    background: none;
    border: 1px solid rgba(110, 18, 30, 0.4);
    border-radius: 8px;
    color: var(--text-muted);
    font-family: inherit; font-size: 0.78rem;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.notif-clear:hover { color: var(--accent); border-color: var(--accent); }

/* === @упоминания в комментах === */
.mention {
    color: var(--accent-light);
    background: rgba(110, 18, 30, 0.15);
    padding: 1px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s;
}
.mention:hover { background: rgba(110, 18, 30, 0.3); text-decoration: underline; }

/* danger в меню */
.auth-menu button.danger { color: #ff7a7a; }
.auth-menu button.danger:hover { background: rgba(220, 60, 60, 0.18); }

/* === Страницы /Verify.html и /Reset.html === */
.auth-page-shell {
    min-height: calc(100vh - 200px);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 16px;
}
.auth-card {
    width: 100%; max-width: 460px;
    background: rgba(26, 11, 15, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(110, 18, 30, 0.4);
    border-radius: 18px;
    padding: 32px 30px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.6);
    text-align: center;
}
.auth-card h2 {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
}
.auth-card p { color: var(--text); line-height: 1.55; margin: 0 0 14px; }
.auth-card form { text-align: left; }
.auth-card .btn-primary { margin-top: 14px; display: inline-block; }

.auth-icon-ok, .auth-icon-err {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800;
    color: #fff;
}
.auth-icon-ok  { background: linear-gradient(135deg, #2ea05d, #1b6a3d); box-shadow: 0 8px 26px rgba(46,160,93,0.35); }
.auth-icon-err { background: linear-gradient(135deg, #c41e3a, #6e121e); box-shadow: 0 8px 26px rgba(196,30,58,0.35); }

/* === Плашка «подтвердите email» === */
.verify-banner {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, rgba(196,30,58,0.22), rgba(110,18,30,0.18));
    border: 1px solid rgba(196,30,58,0.4);
    color: #ffd28a;
    padding: 9px 16px;
    font-size: 0.88rem;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}
.verify-banner b { color: #fff; }
.verify-banner button {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 12px; border-radius: 100px;
    font-family: inherit; font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.15s;
}
.verify-banner button:hover { background: rgba(255,255,255,0.18); }
.verify-banner.ok {
    background: linear-gradient(135deg, rgba(46,160,93,0.18), rgba(27,106,61,0.14));
    border-color: rgba(46,160,93,0.4);
    color: #b9e8c8;
}

/* «Забыли пароль?» ссылка в модалке логина */
.auth-forgot-link {
    background: none; border: none;
    color: var(--accent-light);
    cursor: pointer;
    font-family: inherit; font-size: 0.85rem;
    text-decoration: underline;
    padding: 4px;
    margin-top: 4px;
    display: block;
}
.auth-forgot-link:hover { color: #fff; }
