body {
  margin: 0;
  background-color: #008080;
  background-image: url("https://synerror.neocities.org/images/wallpaperreversed.png");
  background-size: cover;
  font-family: 'MS Sans Serif', sans-serif;
  color: black;
  height: 100vh;
  overflow: hidden;
  position: relative;
  transform: scaleX(-1);
}

.window, .taskbar, .title-bar, .window-content, .start-btn, .status, input, button {
  transform: scaleX(-1);
}

.window {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 360px;
  background: silver;
  border: 2px solid #000;
  box-shadow: inset 1px 1px white, inset -1px -1px #404040;
  z-index: 100;
  user-select: none;
}

.title-bar {
  background: #2c35db;
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.title-bar button {
  background: silver;
  border: 2px outset #d3d3d3;
  cursor: pointer;
  font-weight: bold;
  width: 28px;
  height: 24px;
  line-height: 20px;
  padding: 0;
}

.window-content {
  padding: 16px;
  background: #c0c0c0;
  font-size: 0.9rem;
  color: black;
}

.window-content h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.3rem;
  color: #00008b;
}

.window-content p {
  margin: 0.4rem 0 1rem 0;
}

input[type="text"] {
  width: 85%;
  padding: 6px 8px;
  font-size: 1rem;
  border: 2px inset #d3d3d3;
  border-radius: 3px;
}

button.unlock-btn {
  margin-top: 8px;
  background: silver;
  border: 2px outset #d3d3d3;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
}

button.unlock-btn:hover {
  background: #c0c0c0;
}

.message {
  margin-top: 1rem;
  font-weight: bold;
  min-height: 1.3em;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;  
  height: 40px; 
  background: silver;
  border-top: 2px solid #d3d3d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  box-shadow: inset 1px 1px white, inset -1px -1px #404040;
  z-index: 10000; 
}

.start-btn {
  font-family: 'MS Sans Serif', sans-serif;
  background: silver;
  border: 2px outset #d3d3d3;
  padding: 2px 8px;
  cursor: pointer;
}

.start-btn:hover {
  background: #c0c0c0;
}

.status {
  font-family: 'MS Sans Serif', sans-serif;
  background: silver;
  border: 2px outset #d3d3d3;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 0.75rem
}