.terminal-dialog {
  background: transparent;
  border: none;
  padding: 20px;
  max-width: 900px;
  width: 95vw;
  max-height: 90vh;
  max-height: 90dvh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.terminal-dialog::backdrop {
  background: linear-gradient(135deg, #ff00aa 0%, #7b00ff 50%, #00d4ff 100%);
  backdrop-filter: blur(4px);
  animation: backdropPulse 3s ease-in-out infinite;
}

@keyframes backdropPulse {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 0.85; }
}

.terminal-dialog-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #00ffff;
  color: #00ffff;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  z-index: 10;
  text-shadow: 0 0 10px #00ffff;
}

.terminal-dialog-close:hover {
  background: #00ffff;
  color: #1a0030;
  text-shadow: none;
  box-shadow: 0 0 20px #00ffff;
}
