/* ========== GLOBAL ========== */
body {
  margin: 0;
  background: url('../images/grayPolygon.png') center center / cover no-repeat fixed;
  background-color: #1a1a1a;
  font-family: monospace;
  color: #fff;
  overflow: hidden;
}




/* ========== DESKTOP ========== */
.desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon {
  width: 84px;
  height: 84px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  text-align: center;
  transition: transform 0.1s ease;
}

.icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.bio-text a {
  color: #fff;
  text-decoration: underline;
}




.icon img {
  width: 48px;
  height: 48px;
}

.icon i {
  color: #fff;
  margin-bottom: 5px;
}


.icon {
  transition: transform 0.1s ease;
}

.icon:active {
  transform: scale(0.95);
}


.desktop.grid-enabled::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  pointer-events: none;
  z-index: 0;
}



/* context-menu */

/* ========== CONTEXT MENU ========== */
.context-menu {
  position: fixed;
  background: #2a2a2a;
  color: white;
  padding: 5px 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
  min-width: 180px;
}

.context-menu.visible {
  display: block;
}

.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu li {
  padding: 8px 12px;
  cursor: pointer;
  font-family: monospace;
}

.context-menu li:hover {
  background: #444;
}

/* ========== GLOBAL SCROLLBAR ========== */


::-webkit-scrollbar-track {
  background: #111;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 5px;
  border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}