.contact-panel {
  text-align: center;
  padding: 2rem 1rem;
  color: white;
}

.contact-panel h2 {
  font-family: 'VT323', monospace;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 4px #000);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delays for staggered entrance */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}
