.elementor-15 .elementor-element.elementor-element-132aa99{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15 .elementor-element.elementor-element-13f6fed{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-97148b3 */@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');

.pixel-hero {
  background-color: #000;
  color: #fff;
  font-family: 'Goldman', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10vh 5vw;
  text-align: center;
}

.pixel-hero-inner {
  max-width: 1000px;
  width: 100%;
}

#typed-text {
  font-size: clamp(1.8rem, 6vw, 4rem);
  margin: 0 auto 2rem;
  white-space: pre-wrap;
  word-break: break-word;
  display: inline-block;
  position: relative;
  min-height: 3.5em;
}

#typed-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #fff;
  margin-left: 5px;
  animation: blink 0.7s step-end infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* CTA inizialmente nascosta */
.pixel-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background: linear-gradient(90deg, #ff3b30, #34c759, #007aff);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  animation: glow 2s infinite alternate;
  transition: transform 0.2s ease, opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.pixel-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pixel-cta:hover {
  transform: scale(1.05);
}

@keyframes glow {
  from {
    box-shadow: 0 0 6px #ff3b30, 0 0 12px #34c759, 0 0 24px #007aff;
  }
  to {
    box-shadow: 0 0 10px #007aff, 0 0 20px #ff3b30, 0 0 30px #34c759;
  }
}

@media (max-width: 768px) {
  #typed-text {
    font-size: 2rem;
  }
  .pixel-cta {
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
  }
}/* End custom CSS */