html {
  font-size: 16px;
}

video {
  background: #020617;
}

body.achro-connected::before {
  content: "";
  position: fixed;
  inset: 0;
  border: 6px solid rgba(59, 130, 246, 0.95);
  border-radius: 0;
  pointer-events: none;
  z-index: 2147483000;
  box-shadow: 0 0 0 2px rgba(2, 6, 23, 0.6) inset, 0 0 40px rgba(59, 130, 246, 0.35);
}

#achro-toast-root {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 2147483500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.achro-toast {
  pointer-events: none;
  min-width: 220px;
  max-width: 360px;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.2;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}

.achro-toast-hide {
  opacity: 0;
  transform: translateY(-6px);
}

.achro-toast-success {
  border-color: rgba(34, 197, 94, 0.35);
}

.achro-toast-error {
  border-color: rgba(244, 63, 94, 0.40);
}

.achro-toast-warn {
  border-color: rgba(245, 158, 11, 0.40);
}

.achro-toast-info {
  border-color: rgba(59, 130, 246, 0.40);
}
