body {
  background-color: #0a0a0b;
  color: #e2e1eb;
}

.glass-card {
  background: rgba(23, 23, 25, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.code-syntax-keyword {
  color: #ffb95f;
}

.code-syntax-string {
  color: #a5d6ff;
}

.amber-gradient-glow {
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.toast-container {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: min(360px, calc(100vw - 48px));
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(23, 23, 25, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast.is-leaving {
  transform: translateX(calc(100% + 24px));
  opacity: 0;
}

.toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 185, 95, 0.15);
  border: 1px solid rgba(255, 185, 95, 0.25);
  color: #ffb95f;
}

.toast__content {
  min-width: 0;
}

.toast__title {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #e2e1eb;
  margin-bottom: 2px;
}

.toast__message {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #c7c6ca;
}

.toast--error .toast__icon {
  background: rgba(255, 180, 171, 0.12);
  border-color: rgba(255, 180, 171, 0.25);
  color: #ffb4ab;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
