/* WackoPixel — landing page */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #000;
  color: #808080; /* 50% black accent */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

/* Hero image */
.hero {
  width: 90vw;
  max-width: 480px;
  height: auto;
  display: block;
}

/* Social links */
.socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  text-decoration: none;
}

.socials a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Icon: PNG, pixel-art friendly. Grey by default, brightens on hover. */
.icon {
  width: 44px;
  height: 44px;
  display: block;
  image-rendering: pixelated;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.socials a:hover .icon,
.socials a:focus-visible .icon {
  filter: brightness(1.9);
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .icon {
    transition: filter 0.15s ease;
  }
  .socials a:hover .icon,
  .socials a:focus-visible .icon {
    transform: none;
  }
}
