/* FILE: css/components/loader.css */

/* --- BOOT SCREEN --- */
.boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", monospace;
}

.terminal-loader {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.terminal-loader .line {
  opacity: 0;
  animation: type-line 0.1s forwards;
  margin-bottom: 5px;
}

.terminal-loader .line:nth-child(1) {
  animation-delay: 0.2s;
}
.terminal-loader .line:nth-child(2) {
  animation-delay: 0.6s;
}
.terminal-loader .line:nth-child(3) {
  animation-delay: 1s;
}
.terminal-loader .line:nth-child(4) {
  animation-delay: 1.4s;
  color: var(--accent-primary);
  font-weight: bold;
  text-shadow: 0 0 10px var(--accent-primary);
}

@keyframes type-line {
  to {
    opacity: 1;
  }
}

/* --- System notification (TOAST) --- */
/* O CSS que faltava para o "Copiar E-mail" funcionar visualmente */
.system-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px); /* Starts hidden */
  background: rgba(5, 5, 7, 0.95);
  border: 1px solid var(--accent-primary);
  color: var(--text-main);
  padding: 12px 24px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000; /* Above all layers */
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
  border-radius: 2px;
  pointer-events: none;
}

.system-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.system-toast i {
  color: var(--accent-primary);
}
