body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background: linear-gradient(to bottom right, #000000, #1a1a1a, #4a5568);
  color: #9ae6b4;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 5rem 1.5rem;
}

.dots-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 255, 0, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.toggle-wrapper {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

.toggle-ios {
  width: 36px;
  height: 20px;
  background-color: #2d3748;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.toggle-ios.enabled {
  background-color: #48bb78;
}

.toggle-ios-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 9999px;
  transition: transform 0.2s;
}

.toggle-ios.enabled .toggle-ios-thumb {
  transform: translateX(16px);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  z-index: 2;
  position: relative;
  transform: translateY(-6vh);
}

.contact-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  text-align: center;
}

.contact-gallery a {
  text-decoration: none;
  color: #9ae6b4;
  transition: color 0.2s ease;
}

.contact-gallery a:hover p {
  color: #48bb78;
}

.contact-gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-gallery img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px #48bb78);
}

.contact-gallery p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #9ae6b4;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .toggle-wrapper {
    display: none;
  }
}


@media (max-width: 480px) {
  .contact-gallery img {
    width: 70px;
    height: 70px;
  }

  .contact-gallery {
    gap: 1.2rem;
  }

  .contact-gallery p {
    font-size: 0.75rem;
  }
}
