@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

:root {
  --primary-color: rgb(50, 0, 59);
  --secondary-color: #6a0dad;
  --text-color: #ffffff;
  --bg-color: #00000070;
  --border-color: #6a0dad;
}

body,
#overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-family: "VT323", monospace;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  height: 100vh;
  background-image: url("/assets/duld3o.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  width: 95%;
  max-width: 1200px;
}

.wow {
  position: relative;
  border: 3px solid var(--border-color);
  background: var(--bg-color);
  width: 1200px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
}

.terminal,
.terminal-line,
.terminal-prompt,
#command-input {
  color: var(--text-color);
  font-family: "VT323", monospace;
}

.title {
  color: var(--primary-color);
  font-family: "VT323", monospace;
}

.terminal-line,
.terminal-prompt,
#command-input {
  font-size: 22px;
}

.terminal-line {
  text-shadow: none;
  line-height: 1.4;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  margin: 5px 0;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary-color);
  padding: 10px 15px;
  position: relative;
}

/* Make links look like terminal text */
.cmd-link {
  color: inherit;       /* Use the terminal's text color */
  text-decoration: none; /* Remove the underline */
  cursor: pointer;      /* Optional: keep pointer or change to 'text' */
}
.cmd-link:hover {
  text-decoration: underline; /* Optional: visual feedback for humans */
}

.title {
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0;
  flex: 0 0 auto;
  padding: 0 15px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.terminal {
  background-color: var(--bg-color);
  width: 100%;
  border: none;
  padding: 1rem;
  height: 525px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.terminal::-webkit-scrollbar {
  display: none;
}

.terminal-prompt {
  font-weight: normal;
}

#command-input {
  background: transparent;
  border: none;
  width: 80%;
  outline: none;
}

#command-output {
  flex: 1;
  margin-bottom: 10px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#command-output::-webkit-scrollbar {
  display: none;
}

.window-controls {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.window-button,
.button1,
.button2 {
  cursor: pointer;
}

.window-button {
  width: 16px;
  height: 16px;
}

.button1,
.button2 {
  width: 24px;
  height: 24px;
  border: 3px solid var(--primary-color);
  background-color: transparent;
  box-sizing: border-box;
}

.bar,
.bar2 {
  background-color: var(--primary-color);
  height: 24px;
}

.bar {
  flex: 0.8 1 auto;
  margin: 0 10px 0 0;
}

.bar2 {
  flex: 1 1 auto;
  margin: 0 0 0 10px;
}
