
/* Container layout */
.background-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

/* Center Terminal Square (Unchanged, no animations) */
.center-prompt {
  position: absolute;
}

.terminal-box {
  width: 500px;
  height: 500px;
  background-image: url('opsalchemy.gif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
}

/* Slow slide-right animation for dalchemy.jpg container */
@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.prompt-symbol {
  color: #fff;
  position:fixed;
  font-size: 80px;
  font-weight: bold;
}

.center-number {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 64px;
  font-weight: bold;
  text-decoration: underline;

}

/* --- BIGGER CIRCULAR TEXT STYLING --- */
.circular-text-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  pointer-events: none;
  font-size: 60px; 
  letter-spacing: 0px; 
  fill: rgba(231, 32, 32, 0.25);
}

/* --- SIMULTANEOUS WORD ANIMATION ---
   Both "OPERATIONS" and "ALCHEMIST" show at the same time,
   wave in letter-by-letter, hold, then fade out together in a loop.
*/

@keyframes letterWave {
  0% {
    opacity: 0;
    filter: blur(4px);
  }
  10% {
    opacity: 0.25;
    filter: blur(0);
  }
  45% {
    opacity: 0.25;
    filter: blur(0);
  }
  55% {
    opacity: 0;
    filter: blur(4px);
  }
  100% {
    opacity: 0;
  }
}

.letter-op {
  opacity: 0;
  animation: letterWave 10s ease-in-out infinite;
}

.letter-al {
  opacity: 0;
  animation: letterWave 10s ease-in-out infinite;
}