.links-body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 15px;
  max-width: 520px; 
  margin: 0 auto;
}

.link-tile {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.8);
  border: 2px solid #ccc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.link-tile:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.link-tile i {
  font-size: 32px;
  color: #333;
}

.link-tile span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: center;
}