/* Hide by default */
.mobile-notice {
  display: none;
  text-align: center;
  margin-top: 1rem;
  border-radius: 8px;
  background-color: #fff3cd;
  color: #856404;
  font-family: 'Segoe UI', sans-serif;
}

/* Show only on small screens */
@media (max-width: 768px) {
  .mobile-notice {
    display: block;
  }
}

/* Typewriter effect */
.typewriter-text {
  overflow: hidden;
  border-right: 2px solid #856404;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 1px;
  animation: typing 3s steps(40, end), blink 0.8s step-end infinite;
  max-width: 100%;
  width: fit-content;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
