/* IGAXMING Demo Mode HUD styles */
#igx-demo-hud {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483600;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
#igx-demo-hud > * { pointer-events: auto; }

.igx-demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 14px;
  background: linear-gradient(135deg, rgba(11, 16, 32,0.95) 0%, rgba(35, 49, 82,0.95) 100%);
  border: 1px solid rgba(0, 229, 255,0.35);
  border-radius: 999px;
  box-shadow: 0 14px 40px -10px rgba(0, 229, 255,0.45), 0 4px 14px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: 'Geist', 'Inter', system-ui, sans-serif;
  color: #D8DCE8;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#igx-demo-hud.is-pulse .igx-demo-pill {
  border-color: rgba(0, 208, 132,0.7);
  box-shadow: 0 14px 50px -8px rgba(0, 208, 132,0.55), 0 4px 18px rgba(0, 208, 132,0.25);
  transform: translateY(-2px);
}
.igx-demo-pill__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0, 229, 255,0.15);
  color: #00E5FF;
  display: grid; place-items: center;
  font-size: 13px;
}
.igx-demo-pill__body { display: flex; flex-direction: column; line-height: 1.05; }
.igx-demo-pill__label {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00E5FF;
  font-weight: 800;
}
.igx-demo-pill__value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.igx-demo-pill__cur {
  font-size: 9.5px;
  font-weight: 600;
  color: #9DA0A5;
  letter-spacing: 0.1em;
}
.igx-demo-pill__btn {
  width: 30px; height: 30px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #00E5FF, #1A65F6);
  color: #0B1020;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.igx-demo-pill__btn:hover { transform: rotate(60deg) scale(1.05); box-shadow: 0 0 18px rgba(0, 229, 255,0.6); }
.igx-demo-pill__btn:disabled { opacity: .5; cursor: wait; }
.igx-demo-pill__btn.is-spinning i { animation: igx-spin .8s linear infinite; }
@keyframes igx-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.igx-demo-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(247, 147, 26, 0.12);
  border: 1px solid rgba(247, 147, 26, 0.35);
  border-radius: 999px;
  font-family: 'Geist', 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  color: #fde68a;
  max-width: 360px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.igx-demo-banner i { color: #F7931A; }
.igx-demo-banner a {
  color: #F7931A;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.igx-demo-banner a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  #igx-demo-hud { right: 10px; bottom: 10px; gap: 6px; }
  .igx-demo-banner { font-size: 10.5px; padding: 6px 12px; }
  .igx-demo-pill__value { font-size: 13px; }
}
