:root {
  --pastel-pink: #FFD6E7;
  --pastel-mist: #E2F4EF;
  --pastel-blue: #C1E3FF;
}.link-card {
  transition: all 0.2s ease;
  border: 3px solid #1a1a1a;
}.link-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1) !important;
}.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}