.win95-body {
  background-color: #008080;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #222;
  margin: 0;
  overflow: hidden;
}

/* --- Рабочий стол --- */
.desktop-icons {
  position: relative;
  float: left;
  width: 120px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-decoration: none;
  color: #222;
  user-select: none;
  padding: 3px;
  border: 1px solid transparent;
}
.desktop-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
}
.desktop-icon span {
  text-align: center;
  font-size: 16px;
}
.desktop-icon.selected span {
  background: #000080;
  color: white;
  border: 1px dotted #fff;
}

/* --- ОКНА --- */
.window {
  position: absolute;
  width: 90%;
  max-width: 600px;
  background: #c0c0c0;
  border: 2px solid;
  border-top-color: #fff;
  border-left-color: #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
  user-select: none;
  transition: box-shadow 0.15s ease, opacity 0.15s ease;
}
.window.is-dragging {
  opacity: 0.95;
  box-shadow: 10px 10px 25px rgba(0,0,0,0.5);
}
.window.maximized {
  border: none;
  box-shadow: none;
}

/* Заголовок */
.title-bar {
  background: #000080;
  color: #fff;
  padding: 4px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab;
}
.title-bar:active,
.title-bar.is-dragging {
  cursor: grabbing;
}
.title-text {
  font-weight: bold;
}
.title-bar-controls {
  display: flex;
}

/* Кнопки */
.win-button {
  font-family: 'VT323', monospace;
  font-weight: bold;
  font-size: 16px;
  background-color: #c0c0c0;
  border: 2px solid;
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  min-width: 22px;
  height: 22px;
  margin-left: 3px;
  cursor: pointer;
}
.win-button:active {
  border-top-color: #404040;
  border-left-color: #404040;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  padding-top: 1px;
  padding-left: 1px;
}

/* Контент окна */
.window-content {
  background: #fff;
  padding: 15px;
  margin: 4px;
  border: 2px solid;
  border-top-color: #404040;
  border-left-color: #404040;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
  max-height: 400px;
  overflow-y: auto;
}

/* Панель "вдавленная" */
.panel-inset {
  background-color: #c0c0c0;
  padding: 4px 8px;
  margin-top: 10px;
  border: 2px solid;
  border-top-color: #404040;
  border-left-color: #404040;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Заголовки */
h1, h2, h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
}

/* --- Рамка выделения --- */
#selection-box {
  position: absolute;
  border: 1px dotted #000080;
  background: rgba(0, 0, 128, 0.2);
  display: none;
  pointer-events: none;
  z-index: 10000;
}
