body {
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("./imgs/background.jpg");
  font-family: "Tahoma", sans-serif;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #c0c0c0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid gray;
  border-bottom: 2px solid gray;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 100;
}

.start-button {
  background: #c0c0c0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid gray;
  border-right: 2px solid gray;
  padding: 3px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
}
.start-button:hover {
  background: #dcdcdc;
}
.start-button img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.window {
  position: absolute;
  top: 100px;
  left: 100px;
  min-width: 300px;
  background: #c0c0c0;
  border: 2px solid black;
  box-shadow: 3px 3px black;
  z-index: 10;
  overflow: inherit;
}
.window-header {
  background: -moz-linear-gradient(
    left,
    rgba(33, 41, 89, 1) 0%,
    rgba(33, 41, 89, 1) 11%,
    rgba(80, 114, 161, 1) 56%,
    rgba(117, 172, 219, 0.7) 92%,
    rgba(125, 185, 232, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    rgba(33, 41, 89, 1) 0%,
    rgba(33, 41, 89, 1) 11%,
    rgba(80, 114, 161, 1) 56%,
    rgba(117, 172, 219, 0.7) 92%,
    rgba(125, 185, 232, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    rgba(33, 41, 89, 1) 0%,
    rgba(33, 41, 89, 1) 11%,
    rgba(80, 114, 161, 1) 56%,
    rgba(117, 172, 219, 0.7) 92%,
    rgba(125, 185, 232, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212959', endColorstr='#007db9e8',GradientType=1 );
  color: white;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}
.window-content {
  padding: 20px;
}
.close-button {
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-family: "MS Sans Serif";
  font-size: 16px;
  background-color: #bfbfbf;
  color: black;
  border-bottom: 2px solid #7b7b7b;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #7b7b7b;

  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.desktop-icon {
  position: absolute;
  width: 120px;
  text-align: center;
  color: white;
  font-size: 16px;
  user-select: none;
  cursor: pointer;
  padding: 5px;
}
.desktop-icon img {
  width: 56px;
  height: 56px;
  margin-bottom: 5px;
}
.desktop-icon.selected {
  background-color: #000080;
  border: 1px dotted white;
}

.bonzi-container {
  position: absolute;
  bottom: 100px;
  right: 100px;
}

.bonzi {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5); */
  width: 250px;
  opacity: 0;
  transition: all 2s ease;
  cursor: pointer;
  z-index: 200;
}
.bonzi.show {
  opacity: 1;
  /* transform: translate(-50%, -50%) scale(1); */
}
.speech-bubble {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffedb0;
  border: 2px solid black;
  padding: 10px;
  font-size: 16px;
  color: black;
  width: 220px;
  text-align: center;
  z-index: 300;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffedb0;
  z-index: 300;
}
.speech-bubble::before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid black;
  z-index: 299;
  margin-top: -2px;
}
.menu-bar {
  background: #c0c0c0;
  border-bottom: 2px solid white;
  padding: 2px 10px;
  font-size: 14px;
  display: flex;
  gap: 20px;
}
.notepad-content {
  background: white;
  padding: 10px;
  font-family: "Courier New", monospace;
  height: 200px;
  border: inset 2px #c0c0c0;
  resize: both;
}
.notepad-textarea {
  width: 100%;
  height: 100%;
  border: none;
  background: white;
  font-family: "Courier New", monospace;
  font-size: 14px;
  resize: none;
  outline: none;
}

.meme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.meme-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #c0c0c0;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
  background: white;
}

.memeImageViewerWindow {
  width: fit-content;
}

#editorCanvas {
  font-family: "Roboto", sans-serif;
}

.address-bar {
  background: #c0c0c0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid gray;
  border-right: 2px solid gray;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.address-input {
  background: white;
  border: inset 2px #c0c0c0;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.address-input img {
  width: 20px;
  height: 20px;
}

.folder-content {
  background: white;
  height: calc(100% - 85px);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  overflow-y: auto;
}

.computer-folders {
  background: white;
  height: calc(100% - 85px);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  overflow-y: auto;
  flex: 1;
}

.folder-icon {
  width: 80px;
  text-align: center;
  font-size: 12px;
  user-select: none;
  cursor: pointer;
}

.folder-icon img {
  width: 48px;
  height: 48px;
  border: 2px solid #c0c0c0;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
  background: white;
  margin-bottom: 5px;
}

.folder-icon.selected {
  background-color: #000080;
  border: 1px dotted white;
  padding: 2px;
  border-radius: 2px;
}

.photo-editor-toolbar {
  justify-content: space-between;
  align-items: center;
}

.toolbar-left {
  display: flex;
  gap: 10px;
}

.toolbar-button {
  background: #c0c0c0;
  border: 2px outset white;
  padding: 2px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
}

.toolbar-button img {
  width: 16px;
  height: 16px;
}

.win98-input {
  border: inset 2px #c0c0c0;
  background: white;
  padding: 2px 5px;
  width: 60px;
  font-family: "Tahoma", sans-serif;
}

.photo-editor-content {
  background: white;
  padding: 10px;
  height: calc(100% - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-overlay {
  position: absolute;
  border: 1px dashed black;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  min-width: 50px;
  min-height: 20px;
  cursor: move;
  font-family: Arial, sans-serif;
  font-size: 20px;
  user-select: text;
}

.menu-bar {
  display: flex;
  background: #e0e0e0;
  padding: 5px;
  border-bottom: 2px solid gray;
}

.limewire-submenu {
  display: flex;
  background: #ece9d8;
  padding: 5px;
  border-bottom: 2px solid gray;
}

.limewire-left-panel {
  width: 200px;
  background: #f0f0f0;
  border-right: 2px solid gray;
  overflow-y: auto;
}

.limewire-right-panel {
  flex: 1;
  background: #f9f9f9;
  overflow-y: auto;
}

.limewire-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.limewire-table th {
  border: 1px solid gray;
  background-color: #ece9d8;
}

.limewire-table th,
.limewire-table td {
  padding: 4px;
  text-align: left;
}

.limewire-bottom {
  padding: 5px;
  text-align: center;
  border-top: 2px solid gray;
  background: #e0e0e0;
}

.limewire-downloads {
  background: #f9f9f9;
  border-top: 2px solid gray;
  padding: 5px;
  height: 140px;
  overflow-y: auto;
}

.limewire-bottom {
  padding: 5px;
  text-align: center;
  border-top: 2px solid gray;
  background: #e0e0e0;
}

.limewire-status {
  font-size: 12px;
  background: #c0c0c0;
  padding: 3px 10px;
  border-top: 2px solid gray;
  font-family: Tahoma, sans-serif;
  color: black;
  font-weight: bold;
}

.limewire-submenu div {
  padding: 4px 8px;
  margin-right: 4px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}

.limewire-submenu div img {
  width: 32px;
}

.limewire-left-panel h4 {
  background: #f7ce1e;
  background: linear-gradient(
    0deg,
    rgba(247, 206, 30, 1) 0%,
    rgba(247, 206, 30, 1) 50%,
    rgba(239, 237, 218, 1) 71%
  );
  margin: 0;
  margin-bottom: 2px;
  font-size: 14px;
  border: 1px solid #ccc;
  text-align: center;
}

.limewire-left-panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px 0;
}

.limewire-left-panel li {
  padding: 4px 6px;
  background: #e6f0ff;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.limewire-left-panel li:nth-child(even) {
  background: #ffffff;
}

.limewire-table tbody tr:nth-child(odd) {
  background: #f0f8ff;
}

.limewire-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.limewire-table tbody tr:hover {
  background: #d0e8ff;
}

.limewire-table td:first-child {
  text-align: center;
}

.paint-menu {
  background: #e0e0e0;
  display: flex;
  gap: 12px;
  padding: 4px 10px;
  font-size: 14px;
  font-family: "MS Sans Serif", sans-serif;
}

.menu-item {
  cursor: default;
  font-weight: bold;
}

.paint-body {
  display: flex;
  background: #d4d0c8;
  padding: 4px;
}

.paint-tools {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #c0c0c0;
  padding: 4px;
}

.paint-tools button {
  width: 32px;
  height: 32px;
}

#paintCanvas98 {
  background: white;
  border: 1px inset #888;
  margin-left: 10px;
  cursor: crosshair;
}

.paint-palette {
  background: #c0c0c0;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(14, 20px);
  gap: 4px;
  justify-content: center;
  border-top: 2px solid #999;
}

.paint-palette div {
  width: 20px;
  height: 20px;
  border: 2px solid #444;
  cursor: pointer;
}

.win98-range {
  -webkit-appearance: none;
  width: 100px;
  height: 20px;
  background: #c0c0c0;
  border: 2px inset #fff;
  outline: none;
}

.win98-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 20px;
  background: #c0c0c0;
  border: 2px outset #fff;
  cursor: pointer;
}

.win98-range::-moz-range-thumb {
  width: 12px;
  height: 20px;
  background: #c0c0c0;
  border: 2px outset #fff;
  cursor: pointer;
}

#minesweeperWindow nav {
  display: none;
}

.media-music-background {
  width: 100%;
  height: 550px;
  background-color: black;
  display: flex;
  align-items: center;
}

/* WMP-style player */
.wmp-player {
  display: flex;
  flex-direction: column;
  background: #d4d0c8;
  padding: 5px;
  box-sizing: border-box;
}

/* Seek bar (triangle-edged) */
.wmp-seek {
  position: relative;
  height: 12px;
  margin-bottom: 20px;
}
.wmp-seek input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: #c0c0c0;
  height: 12px;
  border: 1px solid #404040;
  border-top: none;
  border-left: none;
}
.wmp-seek input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: #c0c0c0;
  border: 1px solid #404040;
  cursor: pointer;
}

/* Controls row */
.wmp-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.wmp-controls button {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px outset white;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.wmp-controls button:active {
  border-style: inset;
}

/* Volume */
.wmp-volume {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 2px;
}
.wmp-vol-icon {
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.wmp-volume input[type="range"] {
  width: 70px;
  transform-origin: center;
  -webkit-appearance: none;
  background: #a0a0a0;
  clip-path: polygon(0% 100%, 0% 100%, 100% 0%, 100% 100%);
}

.wmp-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 30px;
  background: #c0c0c0;
  border: 1px solid #404040;
  cursor: pointer;
}

/* playlist column */
.wmp-left {
  width: 30%;
  height: 100%;
  background: #c0c0c0;
  border-right: 2px solid #fff;
  overflow-y: auto;
}
.wmp-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wmp-left li {
  padding: 6px;
  font-size: 12px;
  cursor: pointer;
  border-bottom: 1px solid #404040;
}
.wmp-left li:hover,
.wmp-left li.active {
  background: #000080;
  color: #fff;
}

.wmp-right {
  width: 70%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("./imgs/music.gif");
}

.msn-toolbar {
  background: #e0e0e0;
  padding: 5px;
  display: flex;
  gap: 5px;
  border-bottom: 1px solid gray;
}

.msn-toolbar button {
  font-size: 18px;
  background-color: transparent;
  border: 0;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.msn-toolbar button img {
  width: 30px;
}

.msn-to-line {
  padding: 5px;
  background: #fff;
  border-bottom: 1px solid gray;
  font-style: italic;
}

.msn-chat {
  background: white;
  padding: 5px;
  height: 400px;
  overflow-y: auto;
  border-bottom: 1px solid gray;
}

.msn-input {
  display: flex;
  padding: 5px;
  gap: 5px;
}

.msn-input textarea {
  flex-grow: 1;
  height: 40px;
  resize: none;
}

.msn-input button {
  width: 60px;
}

.msn-footer {
  padding: 2px 5px;
  font-size: 10px;
  background: #e0e0e0;
  border-top: 1px solid gray;
}

.msn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.msn-login input {
  height: 40px;
  font-size: 20px;
}

.msn-login button {
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.msn-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.msn-img-container img {
  background-color: white;
  padding: 10px;
}

.aim-button-container {
  display: flex;
  justify-content: end;
}

.aim-login-container {
  flex-direction: column;
  display: flex;
  gap: 20px;
  padding: 10px;
}

.aim-login-version {
  text-align: center;
}

.aim-button-container button {
  flex-direction: column;
  display: flex;
  background-color: transparent;
  border: none;
  gap: 5px;
  cursor: pointer;
  font-weight: 800;
}

.aim-logout-container {
  display: flex;
  justify-content: end;
  padding-top: 10px;
}

.aim-logout-container button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #404040;
  border-left: 1px solid #404040;
  padding: 5px 10px;
}

#aimMessageBox {
  height: 50px;
}

.aim-toolbar {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #404040;
}

.aim-chat-container {
  display: flex;
}

.aim-chat-ads {
  flex-direction: column;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 25%;
  background-color: #919191;
}

.aim-chat {
  width: 75%;
}

.aim-chat-ads div {
  width: 95%;
  height: 45%;
  background-color: #000080;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.first-ad {
  background-image: url("./imgs/aimvol.gif");
}

.second-ad {
  background-image: url("./imgs/aimvol2.gif");
}

.window-header-name {
  display: flex;
  align-items: center;
  gap: 7px;
}

.window-header-name img {
  width: 20px;
}

#desktop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: none;
}

.taskbar-apps {
  display: flex;
  gap: 4px;
  margin-left: 10px;
}

.taskbar-button {
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 3px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  height: 20px;
  box-shadow: inset 1px 1px #fff, inset -1px -1px #404040;
}
.taskbar-button img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.taskbar-button:hover {
  background: #dcdcdc;
}

#startupScreen {
  background: #8bcffd;
  background: radial-gradient(
    circle,
    rgba(139, 207, 253, 1) 0%,
    rgba(204, 224, 236, 1) 53%,
    rgba(147, 186, 215, 1) 100%
  );
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

#loadingBar {
  width: 300px;
  height: 20px;
  background-color: #c0c0c0; /* Gray background */
  border: 2px inset #808080; /* 3D-style border */
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

#loadingBlocks {
  position: absolute;
  top: 1px;
  left: -80px; /* Start offscreen */
  display: flex;
  gap: 2px;
  animation: slideBlocks 1.2s linear infinite;
}

.block {
  width: 14px;
  height: 18px;
  background-color: #000080; /* Dark blue */
}

@keyframes slideBlocks {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(380px); /* Move fully across and out */
  }
}

.loading-user {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  gap: 20px;
  display: none;
}

.loading-user img {
  width: 40px;
}

.loading-user .msg {
  font-weight: 300;
}

.left-c-content {
  width: 20%;
  flex-direction: column;
  display: flex;
  gap: 20px;
  align-items: start;
  padding-left: 25px;
  background: linear-gradient(to bottom, aliceblue, white);
  height: 100%;
}

.left-c-content h2 {
  font-size: 30px;
  color: #212959;
  padding-bottom: 15px;
  width: 90%;
  border-bottom: 2px solid; /* thickness of the border */
  border-image: linear-gradient(
      to right,
      red 25%,
      yellow 25% 50%,
      green 50% 75%,
      blue 75% 100%
    )
    1;
}

.token-address-container {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  pointer-events: none;
}

#tokenWindow {
  position: relative !important;
  top: 0;
  right: 64px !important;
  letter-spacing: 2px;
  left: auto;
  pointer-events: all;
}

/* Terminal look */
.bonzi-chat-log {
  background: #000;
  color: #7cff7c;
  font-family: "Courier New", monospace;
  font-size: 13px;
  padding: 12px;
  border: 3px inset #ccc;
  height: calc(100% - 12px);
  overflow-y: auto;
  box-sizing: border-box;
  white-space: pre-wrap;
  outline: none; /* so focus won't show default outline */
}

/* each terminal line */
.terminal-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
  line-height: 1.25;
  word-break: break-word;
}

/* prompt column (fixed width) */
.terminal-prompt {
  width: 140px; /* room for prompt text */
  color: #7cff7c;
  font-weight: bold;
  user-select: none;
  width: fit-content;
}

/* text column */
.terminal-text {
  flex: 1;
  color: #7cff7c;
  white-space: pre-wrap;
}

/* input line (contenteditable) */
.terminal-input {
  display: inline-block;
  min-width: 4px;
  outline: none;
  caret-color: transparent; /* hide default caret (we show our own) */
}

/* cursor */
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #7cff7c;
  margin-left: 2px;
  animation: blink 800ms steps(1) infinite;
  vertical-align: bottom;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* typing indicator */
.bonzi-typing {
  font-style: italic;
  color: #8fd18f;
}

/* small system text style */
.terminal-system {
  color: #bfe7ff;
  font-style: italic;
  margin-bottom: 8px;
}

.terminal-image {
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* tutorial strip that sits above the log */
.bonzi-tutorial {
  background: rgba(255, 255, 255, 0.03);
  color: #dfffe0;
  font-size: 12px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-style: normal;
  user-select: none;
  white-space: normal;
  display: block;
}
.bonzi-tutorial code {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
}

/* resizer handle (bottom-right) */
.window-resizer {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 6px;
  bottom: 6px;
  cursor: se-resize;
  z-index: 60;
  /* visual diagonal grip */
}
.window-resizer::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(220, 255, 220, 0.85);
  border-bottom: 2px solid rgba(220, 255, 220, 0.85);
  opacity: 0.95;
}
.window-resizer:hover::after {
  transform: scale(1.05);
  opacity: 1;
}

#bonziTerminalWindow {
  position: absolute; /* REQUIRED */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.adress-header {
  font-size: 12px;
}

.adress-container {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;

  position: absolute;
  right: 32px;
}

.copy-address-btn {
  background: #c0c0c0;
  border: 1px solid black;
  box-shadow: 1px 1px black;
  padding: 6px;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-address-btn:hover {
  background-color: #c2c2c2;
  box-shadow: 0.5px 0.5px black;
}

.start-menu {
  position: absolute;
  bottom: 46px; /* tune to be above taskbar height */
  left: 0px; /* we'll reposition in JS to match the Start button */
  width: 300px;
  max-height: 460px;
  background: linear-gradient(#e6e6e6, #cfcfcf);
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 6px;
  font-family: "MS Sans Serif", "Arial", sans-serif;
  font-size: 13px;
  overflow: auto;
  z-index: 2000;
  border-radius: 2px;
  display: flex;
  gap: 8px;
}

/* header */
.start-menu-header {
  font-weight: bold;
  padding: 6px 4px;
  border-bottom: 1px solid #808080;
  margin-bottom: 6px;
}

/* grid of icons */
.start-menu-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: start;
  justify-content: start;
  overflow-x: hidden;

  width: 100%;
}

/* menu item (small icon + label) */
.start-menu-item {
  width: 100%;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 2px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
}

.start-menu-item img {
  width: 36px;
  height: 36px;
  display: block;
}

.start-menu-item:hover {
  background: #000080; /* dark highlight */
  color: white;
  border-color: #fff;
}

/* footer */
.start-menu-footer {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

#startMenuAllBtn {
  font-size: 12px;
  padding: 4px 8px;
  cursor: pointer;
}

/* keep menu from being selectable when clicking */
.start-menu,
.start-menu * {
  -webkit-user-select: none;
  user-select: none;
}

#startMenuImg {
  position: sticky;
  top: 0;
  width: auto;
}

.start-menu-content {
  width: 100%;
}

/* inside your CSS file */
.computer-folders .folder-icon.selected {
  background-color: #000080;
  border: 1px dotted white;
  color: white;
}

.folder-content .folder-icon.selected {
  background-color: #000080;
  border: 1px dotted white;
  color: white;
}

.ie-hacked {
  background: #c0c0c0;
  height: calc(100% - 100px);
  padding: 14px;
  box-sizing: border-box;
  font-family: Tahoma, "MS Sans Serif", Arial, sans-serif;
}

.ie-hacked-box {
  background: white;
  border: 2px solid #000;
  box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #808080;
  padding: 16px;
}

.ie-hacked-box h1 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #003399;
}

.ie-error-title {
  font-size: 16px;
  font-weight: bold;
  color: darkred;
  margin-bottom: 10px;
}

.ie-details {
  font-family: "Courier New", monospace;
  background: #f4f4f4;
  border: 1px solid #999;
  padding: 8px;
  margin: 10px 0;
  font-size: 13px;
}

.ie-warning {
  color: #800000;
  font-weight: bold;
  margin-top: 10px;
}

.ie-actions {
  margin-top: 14px;
}

.win98-btn {
  padding: 4px 10px;
  margin-right: 6px;
  background: #e0e0e0;
  border: 2px solid #fff;
  box-shadow: inset 1px 1px 0 #7a7a7a;
  font-size: 12px;
  cursor: pointer;
}

.win98-btn:active {
  box-shadow: inset -1px -1px 0 #7a7a7a;
}

.ie-footer {
  margin-top: 14px;
  font-size: 11px;
  color: #666;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

.ie-error-title {
  animation: blink 1.2s steps(1) infinite;
}


/* Status widget inside the new status terminal */
#statusWidget {
  background: #000;
  color: #ddd;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Courier New", monospace;
  font-size: 13px;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* big ASCII time */
#statusBigTime {
  white-space: pre;
  text-align: center;
  color: #fff;
  line-height: 0.95;
  font-size: 5px;
}

/* last action */
#statusLastAction {
  text-align: center;
  color: #ffd36b;
  font-weight: bold;
  margin-bottom: 10px;
}

/* stat rows */
.status-row {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
  font-family: "Courier New", monospace;
}
.status-label {
  width: 220px;
  color:#9fc;
}
.status-value {
  font-weight:700;
}

/* pulsing dots */
.status-dot { width:14px; height:14px; border-radius:50%; box-shadow:0 0 8px rgba(0,0,0,0.6); flex:0 0 14px; }
.dot-blue{ background:#3aa0ff; box-shadow:0 0 12px rgba(58,160,255,0.35); }
.dot-green{ background:#3cff8a; box-shadow:0 0 12px rgba(60,255,138,0.25); }
.dot-pink{ background:#ff5ec7; box-shadow:0 0 12px rgba(255,94,199,0.35); }

@keyframes pulse {
  0% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.35); opacity:0.6; }
  100% { transform: scale(1); opacity:1; }
}
.status-dot { animation: pulse 1.6s ease-in-out infinite; }

/* keep the window-header Win98-ish if you want (you may already have these rules) */
.window-header { display:flex; align-items:center; justify-content:space-between; padding:4px 6px; background: linear-gradient(#000080,#0000b0); color:#fff; font-weight:bold; font-size:12px; }
.window-header .close-button { background:#c0c0c0; border:2px solid #fff; box-shadow:inset 1px 1px 0 #7a7a7a; padding:2px 6px; cursor:pointer; }
