/* ABOUTME: Styles for the FacehashAvatarComponent deterministic avatar. */
/* ABOUTME: Provides blink animation keyframes and base positioning styles. */

@keyframes facehash-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(0.05); }
}

.facehash-avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  perspective: 300px;
  transform-style: preserve-3d;
}

.facehash-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform-style: preserve-3d;
}

.facehash-face svg {
  width: 60%;
  height: auto;
  max-width: 90%;
  max-height: 40%;
}

.facehash-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.facehash-initial {
  margin-top: 8%;
  line-height: 1;
  font-weight: 600;
}
