body {
  background-color: #000;
  color: white;
  text-align: center;
  margin: 0;
  background: url('../allImages/skillsImages/underground-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  padding: 50px;
}

.skills-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

h1 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.block-container {
  margin-bottom: 50px;
  text-align: center;
}

.skill-label {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.brick {
  width: 100px;
  transition: transform 0.2s;
  cursor: pointer;
}

.brick:active {
  transform: translateY(-5px);
}

.popup {
  margin-top: 20px;
  display: none;
}

.popup img {
  width: 200px;
  margin: 10px;
  border: 3px solid white;
  border-radius: 10px;
}

/* SHAKE ANIMATION */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.2s ease-in-out;
}

/* ITEM BAG GLOW */
.item-bag {
  width: 100px;
  animation: glow 1s infinite alternate;
  cursor: pointer;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px #ffd700);
  }
  to {
    filter: drop-shadow(0 0 20px #ffeb3b);
  }
}

/*ZOOM IN FEATURES*/
 .zoomable {
      width: 200px;
      margin: 10px;
      border: 5px solid white;
      border-radius: 10px;
      cursor: zoom-in;
      transition: transform 0.2s;
    }

/* ZOOM FUNCTION!! */
#zoom-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      overflow: hidden;
      cursor: zoom-out;
    }

#zoom-overlay.show {
  display: flex;
}

#zoom-overlay img {
      width: 100vw;
      height: 100vh;
      object-fit: contain;
      pointer-events: none;
    }
	
