/* MagicHellas — Simple top-left logo (no bars, no layout push) */
.mh-logo{
  position: fixed;
  top: 16px;
  left: 16px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.84);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
}
.mh-logo img{
  width: 58px;
  height: 58px;
  display:block;
}
.mh-logo:focus{ outline: 3px solid rgba(59,130,246,.6); outline-offset: 3px; }
@media (max-width: 600px){
  .mh-logo{ top: 10px; left: 10px; width: 64px; height: 64px; border-radius: 16px; }
  .mh-logo img{ width: 52px; height: 52px; }
}

/* Utility: when a page has a full-bleed background illustration */
.mh-bg-illustration{
  position: relative;
}
.mh-bg-illustration::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--mh-bg-image, none);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: min(1100px, 92vw);
  opacity: .92;
}
.mh-bg-illustration > *{ position: relative; z-index: 1; }
