.model.hidden { display:none; }
.model { position:fixed; inset:0; z-index:1000; }
.model__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    /* blur the page behind, not the model panel */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .model__panel {
    position: relative;
    z-index: 1;
    margin: 6vh auto;
    max-width: 560px;
    background: #0f1420;
    color: #e8ecf1;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.65);
    padding: 20px 20px 16px;
    border: 1px solid #1b2333;
  
    /* ensure no inherited/filter artifacts */
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  
    /* optional: crisper text on some GPUs */
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
.model__close{ position:absolute; top:8px; right:10px; width:32px; height:32px; border-radius:8px;
  background:#151b29; color:#9aa6b2; border:1px solid #1e2636; cursor:pointer; }
.model__header{ display:flex; gap:12px; align-items:center; margin-bottom:8px; }
.model__icon{ width:36px; height:36px; border-radius:10px; background:#0e1320; object-fit:cover; }
.model__title{ margin:0; font-size:1.05rem; }
.model__sub{ font-size:.9rem; opacity:.8; }
.model__tags{ display:flex; flex-wrap:wrap; gap:8px; margin:8px 0 14px; }
.model__tags .tag{ padding:4px 8px; border-radius:999px; background:#141a2a; border:1px solid #1f283b; font-size:.8rem; }
.model__rows{ display:grid; gap:15px; }
.row{ display:flex; justify-content:space-between; gap:40px; }
.row > span:first-child{ opacity:.8; }
.muted{ opacity:.7; }
.model__actions{ display:flex; justify-content:flex-end; gap:10px; margin-top:16px; }
.btn{ display:inline-flex; align-items:center; gap:.5rem; padding:.6rem .9rem; border-radius:12px; border:1px solid #1f283b; background:#141a2a; color:#e8ecf1; text-decoration:none; }
.btn--primary{ background:linear-gradient(135deg,#ff7a18,#ff3d77); border:0; color:#0b0d12; font-weight:600; }
