/* AI Body Styling */
body {
  background-color: #0d0d0d; /* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Courier New', Courier, monospace;
  color: #00ffcc; /* Neon cyan text */
}

/* AI Content Styling */
.ai-content {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #00ffcc;
}

.ai-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #00ffcc;
}

/* Terminal Styling */
.terminal {
  background-color: #000;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
  font-family: 'Courier New', Courier, monospace;
  color: #00ffcc;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.terminal p {
  margin: 10px 0;
}

.glow {
  color: #ff00ff; /* Neon pink for emphasis */
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; /* Glow effect */
}

/* Training Modules Styling */
.training-modules {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.training-modules h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00ffcc;
}

.ai-button {
  background-color: #000;
  color: #00ffcc;
  border: 2px solid #00ffcc;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  margin: 5px;
  box-shadow: 0 0 5px #00ffcc;
  transition: all 0.3s ease;
}

.ai-button:hover {
  background-color: #00ffcc;
  color: #000;
  box-shadow: 0 0 15px #00ffcc;
}

.ai-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Result Message Styling */
#result-message {
  font-size: 1.2rem;
  color: #ff00ff; /* Neon pink */
  margin-top: 20px;
  opacity: 0; /* Start invisible */
  transition: opacity 0.5s ease, text-shadow 0.5s ease; /* Smooth transition */
}

#result-message.glow {
  opacity: 1; /* Make visible */
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; /* Glow effect */
}

/* Retro Button Styling (Updated for AI Theme) */
.retro-button {
  background-color: #1a1a1a;
  color: #00ffcc;
  border: 2px solid #00ffcc;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 0 5px #00ffcc;
  transition: all 0.3s ease;
}

.retro-button:hover {
  background-color: #00ffcc;
  color: #000;
  box-shadow: 0 0 15px #00ffcc;
}


.hidden {
  display: none;
}