/* Background */
body {
  margin: 0;
  padding: 0;
  background: #008080; /* Classic Windows desktop teal */
  background-image: url('/images/Street.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'CascadiaMono', Consolas, "Courier New", monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* CMD Window */
.cmd-window {
  width: 900px;
  max-width: 900px;
  background: #101010;
  border: 1px solid #2c2c2c;
}

/* Title Bar */
.cmd-titlebar {
  background: linear-gradient(to bottom, #f8f8f8, #d8d8d8);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
  font-family: Segoe UI, sans-serif;
  font-size: 12px;
}

.cmd-title {
  user-select: none;
}

/* Window Controls */
.cmd-controls {
  display: flex;
}

.win-btn {
  width: 40px;
  height: 22px;
  border: none;
  background: transparent;
  color: black;
  font-size: 16px;
  cursor: default;
}

.win-btn:hover {
  /* background: rgba(255,255,255,0.2);*/
  background: #d0d0d0;
}

.win-btn.close:hover {
  background: #e81123;
  color: #d8d8d8;
}

/* CMD Content */
.cmd-content {
  padding: 20px;
  /*color: #c0c0c0; /* Real Windows CMD text color */
  color: rgb(204, 204, 204);
  font-size: 14px;
  line-height: 1.4;
  font-family: monospace;
}

.cmd-content p {
  margin: 0;
}

/* Blinking Cursor */
.cursor {
  animation: blink 2.1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
