/* Overlay background */
#wip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
  flex-direction: column;
}

/* Message styling */
#wip-overlay span {
  font-size: 2.5rem;
  font-weight: bold;
  color: gold;
}

/* Button to close */
#wip-overlay button {
  margin-top: 20px;
  padding: 10px 20px;
  background: gold;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
