/* Notification centre. Three states, distinguished visually rather than by a
   single "seen" flag: unread carries an accent rail, read recedes, dismissed
   leaves the list entirely. */

.acf-notif-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}
.acf-notif-head h1 { margin: 0; font-size: 20px; color: #fff; }
.acf-notif-actions { display: flex; gap: 7px; }
.acf-notif-actions button {
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  color: #cbd5e1; border-radius: 999px; padding: 6px 13px; font-size: 12.5px;
}
.acf-notif-actions button:hover { background: rgba(255,255,255,.09); color: #fff; }

.acf-push-cta {
  display: grid; gap: 9px; padding: 15px;
  border: 1px solid rgba(124,58,237,.35); border-radius: 18px;
  background: linear-gradient(150deg, rgba(124,58,237,.20), rgba(6,182,212,.10));
  margin-bottom: 14px;
}
.acf-push-cta b { color: #fff; font-size: 14.5px; }
.acf-push-cta p { margin: 0; color: #c4cddd; font-size: 13px; line-height: 1.75; }
.acf-push-cta .row { display: flex; gap: 8px; flex-wrap: wrap; }
.acf-push-cta button {
  border: 0; border-radius: 13px; min-height: 40px; padding: 0 16px;
  font-weight: 800; font-size: 13.5px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.acf-push-cta button.ghost {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); color: #cbd5e1;
}
.acf-push-cta[hidden] { display: none; }
.acf-push-state { font-size: 12.5px; color: #9aa7bd; }

.acf-notif-list { display: grid; gap: 8px; }

.acf-notif {
  position: relative; display: grid; gap: 5px;
  border: 1px solid rgba(255,255,255,.10); border-radius: 16px;
  background: rgba(2,6,23,.34); padding: 12px 14px;
  transition: opacity .18s ease, transform .18s ease;
}
.acf-notif.is-unread {
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.30);
  box-shadow: inset 3px 0 0 var(--brand2);
}
.acf-notif.is-leaving { opacity: 0; transform: translateX(-14px); }

.acf-notif-msg { color: #eef2ff; font-size: 14.5px; line-height: 1.75; }
.acf-notif.is-read .acf-notif-msg { color: #b7c1d4; }
.acf-notif-meta { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: #7f8ca3; }
.acf-notif-row { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.acf-notif-open { color: #93c5fd; font-size: 12.5px; }

.acf-notif-x {
  border: 0; background: transparent; color: #64748b;
  font-size: 17px; line-height: 1; padding: 4px 6px; border-radius: 8px;
}
.acf-notif-x:hover { background: rgba(239,68,68,.14); color: #fca5a5; }

.acf-notif-empty {
  padding: 42px 20px; text-align: center; color: #93a1b8; line-height: 1.9;
  border: 1px dashed rgba(255,255,255,.14); border-radius: 20px;
}

@media (min-width: 1024px) { .acf-notif-list { gap: 10px; } }
