/* AetherA Unified Registry Navigation V0.9.4 */

#a94PlatformRegistry
.a94-module[data-a94-registry-clickable="1"]{
  cursor:pointer;
  transition:
    transform .12s ease,
    border-color .12s ease,
    background .12s ease;
}

#a94PlatformRegistry
.a94-module[data-a94-registry-clickable="1"]:hover{
  transform:translateY(-2px);
  border-color:#29d4ff;
  background:#0d2741;
}

#a94PlatformRegistry
.a94-module[data-a94-registry-clickable="1"]:focus{
  outline:2px solid #29d4ff;
  outline-offset:2px;
}

.a94-registry-nav-detail{
  margin-top:14px;
}

.a94-registry-detail-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}

.a94-registry-meta{
  margin-top:14px;
  padding:12px;
  border:1px solid #1a3049;
  border-radius:9px;
  background:#081522;
  color:#9db0c5;
  line-height:1.8;
}

@media(max-width:1100px){
  .a94-registry-detail-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .a94-registry-detail-grid{
    grid-template-columns:1fr;
  }
}
