#ns-legal-gate{
  position:fixed;
  inset:0;
  z-index:99980;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  background:rgba(8,12,16,.55);
  padding:0;
}
#ns-legal-gate[hidden]{display:none !important}
.ns-legal-card{
  width:100%;
  max-width:32rem;
  margin:0;
  border-radius:16px 16px 0 0;
  background:var(--st-surface, #f4f7fa);
  color:var(--st-text, #0f1b2a);
  padding:1.15rem 1.1rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  box-shadow:0 -8px 40px rgba(0,0,0,.28);
  box-sizing:border-box;
}
html[data-theme="dark"] .ns-legal-card{
  background:#12161c;
  color:#e8eef4;
}
.ns-legal-card h2{
  margin:0 0 .45rem;
  font-size:1.05rem;
  font-weight:750;
}
.ns-legal-card p{
  margin:0 0 .85rem;
  font-size:.88rem;
  line-height:1.4;
  color:var(--st-muted, #6b7787);
}
html[data-theme="dark"] .ns-legal-card p{ color:#9aa8b8; }
.ns-legal-card label{
  display:flex;
  gap:.55rem;
  align-items:flex-start;
  font-size:.86rem;
  line-height:1.35;
  margin:0 0 .65rem;
  cursor:pointer;
}
.ns-legal-card input[type=checkbox]{
  margin-top:.18rem;
  accent-color:#12b886;
  flex:0 0 auto;
}
.ns-legal-card a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}
.ns-legal-actions{
  display:flex;
  gap:.55rem;
  margin-top:.9rem;
}
.ns-legal-actions button{
  flex:1;
  min-height:44px;
  border-radius:10px;
  border:0;
  font:700 .92rem/1 inherit;
  cursor:pointer;
}
.ns-legal-accept{
  background:#12b886;
  color:#06281e;
}
.ns-legal-accept:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.ns-legal-err{
  color:#e05b5b;
  font-size:.8rem;
  min-height:1.1em;
}
@media (min-width:640px){
  #ns-legal-gate{ align-items:center; padding:1.25rem; }
  .ns-legal-card{ border-radius:14px; }
}
