body {
  margin: 0;
  background: #000;
  color: #0f0;
  font-family: 'Courier New', Courier, monospace;
  height: 100vh;
  overflow: hidden;
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#terminal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

#terminal-window {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #0f0;
  box-shadow: 0 0 10px #0f0;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  white-space: pre-wrap;
}

.title-bar {
  /* background: #222; */
  color: #0f0;
  /* font-weight: bold; */
 
}

#cursor {
  /* display: inline-block; */
  width: 10px;
  height: 18px;
  background: #0f0;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
#desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 20px;
  z-index: 2;
}

.icon {
  font-size: 32px;
  color: #0f0;
}

#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f0;
  padding: 0 20px;
  z-index: 3;
}

.taskbar-left,
.taskbar-center,
.taskbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

#output {
  white-space: pre-wrap;
  word-break: break-word;
}

.explorer-window {
  position: absolute;
  right: 24px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid #bbb;
  z-index: 10;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.explorer-sazfcorp {
  top: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.explorer-solidcloud {
  top: 220px;
  background: rgb(255, 255, 255); /* fondo claro para logo con fondo blanco */
}

.explorer-title {
  padding: 8px 12px;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 1px solid #bbb;
  color: #444;
  letter-spacing: 1px;
  background: rgba(200, 200, 200, 0.7);
}

.explorer-sazfcorp .explorer-title {
  color: #fff;
  background: rgba(60, 60, 60, 0.7);
  border-bottom: 1px solid #222;
}

.explorer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}

.explorer-logos a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.explorer-logos img {
  max-width: 80%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 6px 0;
  background: none;
}
