* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #eef2f8 0%, #f8fafc 100%);
}

body {
  position: relative;
}

.stage {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.avatar-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;   /* centro orizzontale */
  align-items: flex-start;   /* focus verso l'alto */
  overflow: hidden;          /* taglia quello che esce */
}

.avatar-container svg {
  display: block;
  height: 100vh;
  width: auto;
  flex-shrink: 0;
}

.status-overlay {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 24, 32, 0.72);
  color: white;
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(6px);
  z-index: 10;
  pointer-events: none;
}