/* Ultra-lite overrides (activated by .iono-ultra on <html>) */
html.iono-ultra body{
  /* Avoid expensive compositing effects */
  background: #000;
}

html.iono-ultra .panel,
html.iono-ultra .sfHeader,
html.iono-ultra header,
html.iono-ultra nav{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.iono-ultra *{
  /* reduce overly expensive glows/shadows */
  text-shadow: none !important;
}

html.iono-ultra .earth{
  /* Ensure earth is always circular and not square */
  border-radius: 50% !important;
  overflow: hidden;
  box-shadow: 0 16px 55px rgba(0,0,0,.55);
}

/* Keep starfield available in ultra-lite (JS will run a very cheap profile).
   Users can still switch it off with the Stars toggle. */
html.iono-ultra canvas#starfield{
  display:block;
}

/* If you have any "earth background" helpers in older variants, suppress them */
html.iono-ultra .earth-bg,
html.iono-ultra .earthBackground{
  display:none !important;
}

/* Keep panels readable without heavy gradients */
html.iono-ultra .panel{
  background: rgba(10,10,14,.78) !important;
  border-color: rgba(255,255,255,.12) !important;
}

/* Reduce animations/transitions */
html.iono-ultra *{
  animation: none !important;
  transition: none !important;
}
