/* ==========================================================================
   VYSHNAV OS - Desktop Layout & Icons
   ========================================================================== */

#desktop-viewport {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#desktop-icons-container {
  position: absolute;
  top: 30px; /* Below top menu bar */
  left: 0;
  width: 100vw;
  height: calc(100vh - 30px - 70px);
  pointer-events: none;
}

.dt-icon-card {
  position: absolute;
  width: 90px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.15s ease, transform 0.15s ease;
}

.dt-icon-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.dt-icon-card.selected {
  background: rgba(245, 245, 245, 0.15);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.dt-icon-symbol {
  font-size: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.dt-icon-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 1.25;
  word-break: break-word;
}
