.desktop-icons {
  position: absolute;
  inset: 0;
  padding: 14px;
  z-index: 1;
  pointer-events: auto;
}

.desktop-icon {
  position: absolute;
  width: 74px;
  padding: 5px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: var(--cursor-pointer), pointer;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background 0.08s;
}

.desktop-icon:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}

.desktop-icon.selected {
  background: rgba(0, 0, 128, 0.2);
  border-color: rgba(255, 255, 255, 0.12);
}

.desktop-icon-dragging {
  opacity: 0.85;
  transform: scale(1.03);
  z-index: 30;
}

/* ── Icon base box ── */
.icon-box {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}

/* ── FOLDER ── */
.icon-folder {
  background: url('../assets/Carpeta.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-folder::before,
.icon-folder::after {
  display: none;
}

/* ── TEXT FILE ── */
.icon-file-txt {
  background: url('../assets/Texto.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-file-txt::after {
  display: none;
}

.icon-file-txt .icon-file-lines {
  display: none;
}

.icon-file-lines {
  width: 22px;
  height: 2px;
  background: #666;
  border-radius: 1px;
  box-shadow: 0 6px 0 #666, 0 12px 0 #666, 0 18px 0 #666;
  position: relative;
  z-index: 1;
}

/* ── CONFIG/INI ── */
.icon-ini {
  background: url('../assets/Texto.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-ini::after { display: none; }
.icon-ini-gear { display: none; }

/* ── HELP (ayuda.txt) ── */
.icon-help {
  background: url('../assets/Texto.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-help::after { display: none; }
.icon-help-mark { display: none; }

/* ── INFO (README) ── */
.icon-info {
  background: url('../assets/Texto.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-info::after { display: none; }
.icon-info-mark { display: none; }

/* ── EXECUTABLE (NO LO BORRES .exe) ── */
.icon-exe {
  background: none;
  border: none;
  border-radius: 0;
}

.icon-exe-gear {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.icon-nlb-exe {
  width: 40px;
  height: 40px;
  background: url('../assets/nlb-exe-original.svg') center/contain no-repeat;
}

.icon-nlb-exe-virus {
  background: url('../assets/nlb-exe-virus.svg') center/contain no-repeat;
}

/* ── MESSENGER ── */
.icon-messenger {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-messenger-img {
  width: 40px;
  height: 40px;
  background: url('../assets/Messenger.svg') center/contain no-repeat;
}

.desktop-icon-messenger {
  position: relative;
}

.desktop-icon-messenger .notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #ff0000;
  border: 1px solid #cc0000;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255,0,0,0.5);
  display: none;
  z-index: 5;
}

.desktop-icon-messenger .notification-dot.visible {
  display: block;
  animation: notif-pulse 1s ease-in-out infinite;
}

@keyframes notif-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(255,0,0,0.5); }
  50% { box-shadow: 0 0 8px rgba(255,0,0,0.8); }
}

/* ── BROWSER ── */
.icon-browser {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-browser-img {
  width: 40px;
  height: 40px;
  background: url('../assets/internet-explorer.svg') center/contain no-repeat;
}

/* ── IMAGE FILE ── */
.icon-file-img {
  background: url('../assets/Texto.svg') center/contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.icon-file-img::after {
  display: none;
}

.icon-img-preview {
  display: none;
}

.icon-img-preview::after {
  display: none;
}

/* ── WARNING (NO LO BORRES) ── */
.icon-warning {
  background: linear-gradient(135deg, #cc2222 0%, #881111 100%);
  border: 1px solid #550000;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(200,0,0,0.3), inset 0 1px 0 rgba(255,100,100,0.2);
  animation: icon-warning-pulse 2s ease-in-out infinite;
}

@keyframes icon-warning-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(200,0,0,0.3), inset 0 1px 0 rgba(255,100,100,0.2); }
  50% { box-shadow: 0 0 16px rgba(200,0,0,0.5), inset 0 1px 0 rgba(255,100,100,0.3); }
}

.icon-warning-mark {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 4px rgba(255,0,0,0.5);
}

/* ── CMD ── */
.icon-cmd {
<<<<<<< Updated upstream
  background: url('../assets/cmd.svg') center/contain no-repeat;
=======
  background: none;
>>>>>>> Stashed changes
  border: none;
  border-radius: 0;
  box-shadow: none;
}

<<<<<<< Updated upstream
.icon-cmd::after {
  display: none;
=======
.icon-cmd-img {
  width: 40px;
  height: 40px;
>>>>>>> Stashed changes
}

/* ── Label ── */
.desktop-icon-label {
  color: #fff;
  font-size: 11px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.85);
  word-break: break-word;
  line-height: 1.2;
  max-width: 70px;
  overflow: hidden;
}

.desktop-icon-label.warning {
  color: #ff6b6b;
}

/* ── Trash ── */
.trash-icon {
  position: absolute;
  right: 16px;
  bottom: 44px;
  width: 52px;
  height: 52px;
  z-index: 5;
  cursor: var(--cursor-pointer), pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid transparent;
  border-radius: 3px;
  background: rgba(0,0,0,0.15);
}

.trash-icon:hover {
  opacity: 0.85;
  border-color: rgba(255,255,255,0.08);
  transform: scale(1.04);
}

.trash-icon.active {
  opacity: 1;
  border-color: rgba(255,0,0,0.2);
  background: rgba(255,0,0,0.06);
}

.trash-icon-img {
  width: 32px;
  height: 34px;
  background: url('../assets/Papelera.svg') center/contain no-repeat;
}

.trash-icon-can {
  display: none;
}

.trash-icon-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ── Drag ghost ── */
.icon-drag-ghost {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  transform: scale(1.1);
  transition: none;
}
