
/* Naomy auth + comments (minimal, non-invasive) */
#naomy-auth-widget{
  position: fixed;
  top: 14px; right: 14px;
  z-index: 99999;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.naomy-auth-link{
  display:inline-block;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:650;
}
.naomy-auth-link:hover{ background: rgba(0,0,0,.28); }
.naomy-auth-pill{
  display:flex; gap:10px; align-items:center;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.naomy-auth-email{ max-width: 220px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; opacity:.92; }
.naomy-auth-btn{
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  padding:6px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:650;
}
.naomy-auth-btn:hover{ background: rgba(255,255,255,.12); }

.naomy-comments-wrap{
  width: 100%;
  max-width: 760px;
  margin: 40px auto 100px;
  padding: 0 2rem;
  box-sizing: border-box;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.naomy-comments-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.naomy-comments-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom: 10px;
}
.naomy-comments-title{
  font-weight:800; letter-spacing:.2px;
}
.naomy-muted{ opacity:.78; }
.naomy-error{ color: rgba(255,140,140,.95); }

#naomy-comment-text{
  width:100%;
  box-sizing: border-box;
  min-height: 110px;
  resize: vertical;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline:none;
  font-size: 14px;
  line-height: 1.5;
}
#naomy-comment-text:focus{ border-color: rgba(140,180,255,.5); }

.naomy-actions{ margin-top: 10px; display:flex; align-items:center; justify-content:flex-end; gap:10px; }
.naomy-btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(140,180,255,.35);
  background: rgba(140,180,255,.16);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
.naomy-btn:hover{ background: rgba(140,180,255,.22); }
.naomy-btn-ghost{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.naomy-btn-ghost:hover{ background: rgba(255,255,255,.10); }

.naomy-comment{
  padding: 12px 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.naomy-comment:first-child{ border-top:none; }
.naomy-comment-meta{
  display:flex; align-items:center; gap:10px; justify-content:space-between;
  opacity:.9;
  margin-bottom: 6px;
}
.naomy-comment-name{ font-weight:800; }
.naomy-comment-time{ opacity:.75; font-size:12px; margin-left:auto; }
.naomy-comment-del{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,90,90,.12);
  color: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 6px 10px;
  cursor:pointer;
  font-weight:800;
}
.naomy-comment-del:hover{ background: rgba(255,90,90,.18); }
.naomy-comment-body{ opacity:.95; white-space:pre-wrap; }
