/* BR v4 — gaming vibe */
.brv4-notifs{ margin:10px 0 6px; }
.brv4-notif{ display:flex; align-items:center; gap:8px; padding:10px 12px; border-radius:12px; margin-bottom:8px; border:1px solid #2a2a2a; box-shadow:0 0 14px rgba(0,255,255,.15) inset; }
.brv4-notif.success{ background:rgba(0,255,170,.06); border-color:#0f7; }
.brv4-notif.error{ background:rgba(255,80,80,.08); border-color:#f55; }
.brv4-notif.info{ background:rgba(0,170,255,.06); border-color:#0af; }
.brv4-notifs .clear{ cursor:pointer; font-size:12px; opacity:.85; text-decoration:underline; }

.brv4-cards{ display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:18px; margin-top:12px; }
.brv4-card{ background:#0b0e13; border:1px solid #1a2a32; border-radius:18px; padding:16px; text-align:left; box-shadow:0 0 18px rgba(0,255,255,.12); transition:transform .2s, box-shadow .2s; }
.brv4-card:hover{ transform:translateY(-2px); box-shadow:0 0 22px rgba(0,255,255,.22); }
.brv4-card .head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.brv4-card h3{ margin:0; font-size:18px; color:#7efcff; letter-spacing:.5px; }
.brv4-badge{ background:linear-gradient(90deg,#00f5ff,#00ffa3); color:#111; padding:4px 10px; border-radius:999px; font-weight:800; font-size:12px; box-shadow:0 0 10px rgba(0,255,255,.45); }
.brv4-list{ list-style:none; padding:0; margin:10px 0; color:#e8f6ff; }
.brv4-list li{ margin:4px 0; opacity:.95; }
.brv4-actions{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.brv4-btn{ background:linear-gradient(90deg,#00f5ff,#00ffa3); color:#111; border:none; padding:10px 14px; border-radius:12px; font-weight:800; cursor:pointer; box-shadow:0 0 12px rgba(0,255,255,.35); transition:all .2s; }
.brv4-btn:hover{ transform:translateY(-1px); box-shadow:0 0 16px rgba(0,255,255,.45); }
.brv4-btn[disabled]{ opacity:.6; cursor:not-allowed; transform:none; }
.brv4-btn.brv4-credentials{ background:linear-gradient(90deg,#ff6b35,#ff8e53); box-shadow:0 0 12px rgba(255,107,53,.35); }
.brv4-btn.brv4-credentials:hover{ box-shadow:0 0 16px rgba(255,107,53,.45); }
.brv4-login{ background:#fff; color:#111; text-decoration:none; padding:8px 12px; border-radius:10px; font-weight:700; }

/* Modal */
#brv4-modal-root .modal-mask{ position:fixed; inset:0; background:rgba(0,0,0,.65); display:flex; align-items:center; justify-content:center; z-index:9999; }
#brv4-modal-root .modal{ background:#0e1318; border:1px solid #1a2a32; border-radius:16px; width:96%; max-width:560px; padding:16px; color:#e8f6ff; box-shadow:0 0 24px rgba(0,255,255,.25); }
.modal h3{ margin-top:0; color:#7efcff; letter-spacing:.5px; }
.modal .grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.modal label{ font-size:13px; display:block; margin-bottom:4px; opacity:.9; }
.modal input{ width:100%; padding:9px; border-radius:10px; border:1px solid #24323a; background:#0b0e13; color:#e8f6ff; }
.modal .help{ font-size:12px; opacity:.75; margin-top:4px; }
.modal .actions{ display:flex; gap:8px; margin-top:12px; }
.modal .btn{ padding:10px 14px; border-radius:10px; border:none; cursor:pointer; font-weight:800; }
.modal .btn-primary{ background:linear-gradient(90deg,#00f5ff,#00ffa3); color:#111; }
.modal .btn-ghost{ background:#22313a; color:#e8f6ff; }

/* Errors */
.modal .error{ color:#ff6b6b; font-size:12px; margin-top:6px; display:none; }
