.portal-root{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  box-sizing:border-box;
}

.portal-card{
  width:min(980px,100%);
  border:1px solid var(--owge-border);
  border-radius:24px;
  background:linear-gradient(180deg,var(--owge-panel),var(--owge-panel-2));
  box-shadow:var(--owge-shadow);
  padding:24px;
}

.portal-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.portal-panel{
  border:1px solid var(--owge-border);
  border-radius:18px;
  background:rgba(7,15,29,.42);
  padding:18px;
}

.portal-panel h2{
  margin:0 0 10px;
}

.portal-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.portal-status{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--owge-border);
  background:rgba(9,17,31,.48);
  color:var(--owge-text-soft);
}

@media (max-width:900px){
  .portal-grid{
    grid-template-columns:1fr;
  }
}
