 body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: black;
  color: white;
  font-family: 'Cinzel', serif;
  overflow: hidden;
}

.citadel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.emblem {
  position: absolute;
  top: 50%;               /* adjust to align with your spire */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.2;
  color: #a020f0; /* purple */
  text-shadow: 0 0 6px #a020f0, 0 0 12px #8000ff;
  animation: glowfade 15s infinite;
  pointer-events: none;
}

.motto {
  position: relative;
  margin-bottom: 40px;
  font-size: 1.5rem;
  text-align: center;
  color: #a020f0; /* purple */
  text-shadow: 0 0 8px #a020f0, 0 0 16px #8000ff;
  animation: fade 6s infinite;
}

@keyframes glowfade {
  0%, 100% { opacity: 0.1; text-shadow: none; }
  50% { opacity: 0.5; text-shadow: 0 0 15px #a020f0, 0 0 30px #8000ff; }
}

@keyframes fade {
  0% { opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}
