.global-skip-link {
  position: fixed;
  z-index: 100001;
  inset: 10px auto auto 10px;
  padding: 10px 14px;
  border: 1px solid rgba(88, 242, 187, .8);
  border-radius: 10px;
  color: #031410;
  background: #58f2bb;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.global-skip-link:focus { transform: translateY(0); }

.global-ui-live {
  position: fixed;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.global-ui-status {
  position: fixed;
  z-index: 100000;
  inset: 18px 18px auto auto;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 36px));
  pointer-events: none;
}

.global-ui-toast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(88, 242, 187, .45);
  border-radius: 14px;
  color: #effff9;
  background: rgba(3, 24, 19, .97);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
  pointer-events: auto;
}

.global-ui-toast.is-success { border-color: rgba(88, 242, 187, .7); }
.global-ui-toast.is-warning { border-color: rgba(255, 198, 82, .78); }
.global-ui-toast.is-error { border-color: rgba(255, 100, 116, .78); }
.global-ui-toast-close { border: 0; padding: 2px 6px; color: inherit; background: transparent; font: inherit; cursor: pointer; }

.global-ui-loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.global-ui-loader-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(88, 242, 187, .25);
  border-top-color: #58f2bb;
  border-radius: 50%;
  animation: global-ui-spin .8s linear infinite;
}

@keyframes global-ui-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .global-ui-loader-spinner { animation: none; }
}
