/* CrossCode UI Theme */
body {
  background-color: #05080f; /* Deepest Void Blue */
  color: #e0faff; /* Soft Ice Blue Text */
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* The Main UI Window */
#container {
  width: 90%;
  max-width: 600px;
  background: rgba(10, 25, 45, 0.85); 
  border: 2px solid #3ed6ff; /* Signature Ice Blue */
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(62, 214, 255, 0.3), inset 0 0 15px rgba(62, 214, 255, 0.1);
  position: relative;
}

/* Retro Scanline Effect */
#container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 2px 100%;
  pointer-events: none;
}

h2 {
  color: #3ed6ff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 0;
  text-shadow: 0 0 10px rgba(62, 214, 255, 0.5);
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3ed6ff, transparent);
  margin: 20px 0;
}

/* Quest Gold Style */
p b {
  color: #ffcc00; 
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
  font-weight: bold;
}

.links {
  margin-top: 25px;
}

.links a {
  color: #3ed6ff;
  text-decoration: none;
  border: 1px solid #3ed6ff;
  padding: 5px 12px;
  margin-right: 10px;
  font-size: 0.9em;
  transition: 0.2s;
}

.links a:hover {
  background: #3ed6ff;
  color: #05080f;
  box-shadow: 0 0 15px #3ed6ff;
}
.construction-zone {
  margin-top: 20px;
  border-top: 1px dashed #3ed6ff;
  padding-top: 10px;
  font-size: 0.8em;
  color: #ffcc00; /* Use that Quest Gold! */
}

marquee {
  background: rgba(62, 214, 255, 0.1);
  color: #3ed6ff;
  font-style: italic;
}