/* Notification styles */
.notification {
  font-family: var(--font-dialogue);
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #22252c 80%, #222335 100%);
  color: #fffbe6;
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid #3af0ff;
  font-size: 1.2em;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 8px 48px #3af0ff44, 0 0 0 4px #3af0ff22;
}
.notification.show {
  opacity: 1;
}

/* Dialogue Block Styles */
.dialogue-block {
  font-family: var(--font-dialogue);
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #22252c 80%, #222335 100%);
  color: #fffbe6;
  padding: 28px 40px;
  border-radius: 4px;
  border: 1px solid #3af0ff;
  font-size: 1.3em;
  z-index: 1002;
  min-width: 320px;
  max-width: 80vw;
  box-shadow: 0 8px 48px #3af0ff44, 0 0 0 4px #3af0ff22;
  text-align: center;
  user-select: none;
}
.dialogue-block.hidden {
  display: none;
}