.iconContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 100px;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.iconContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.iconContainer:hover::before {
  opacity: 1;
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2), 0 0 20px rgba(0, 255, 255, 0.1), inset 0 1px 0 rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.selected::before {
  opacity: 1;
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(0, 255, 255, 0.3);
  animation: neonPulse 2s ease-in-out infinite;
}

.icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 36px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(0, 255, 255, 0.2), 0 0 10px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.iconContainer:hover .icon {
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 212, 255, 0.15);
}

.iconContainer:hover .icon::before {
  left: 100%;
}

.label {
  color: #00d4ff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(10, 14, 39, 0.8);
  padding: 4px 8px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 255, 0.05));
  border-radius: 8px;
  z-index: -1;
}

.iconContainer:hover .label {
  color: #00ffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.5);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .iconContainer {
    width: 80px;
    height: 90px;
    padding: 6px;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 32px;
    padding: 8px;
  }

  .label {
    font-size: 12px;
    padding: 3px 6px;
  }
}
