#welcome-banner {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9997;
}

#welcome-banner h1 {
  font-size: 2.25em;
  font-family: 'Carattere', cursive;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

#welcome-banner p {
  font-size: 1.5em;
  font-family: 'Carattere', cursive;
  color: #ffffff;
  font-style: italic;
  margin: 4px 0 0 0;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}


#vizier-icon {
  position: fixed;
  top: 55%;
  left: 50%;
width: auto;
height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  cursor: pointer;
  animation: vizierGlow 2.5s ease-in-out infinite;
  transition: opacity 1s ease;
}

@keyframes vizierGlow {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 230, 150, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 230, 150, 0.7));
  }
}

#vizier-callout {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.callout-text {
  font-family: 'Carattere', cursive;
  font-size: 1.5em;
  color: #e1b155;
  //text-shadow: 0 0 6px rgba(255, 230, 150, 0.7);
  padding-bottom: 4px;
}

.callout-tail {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff7d6;
  filter: drop-shadow(0 0 4px rgba(255, 230, 150, 0.7));
}

@media (max-width: 768px) {
  #vizier-icon {
    position: fixed !important;
    left: 50% !important;
    bottom: 5% !important;
    top: auto !important;
    transform: translateX(-50%) !important;
  }

  #vizier-callout {
    position: fixed !important;
    left: 50% !important;
    bottom: 115px !important; /* 100px Vizier height + buffer */
    top: auto !important;
    transform: translateX(-50%) !important;
    opacity: 0 !important;
    transition: opacity 1s ease !important;
    z-index: 9998 !important;
    text-align: center !important;
    pointer-events: none !important;
  }

  .callout-text {
    font-family: 'Carattere', cursive !important;
    font-size: 1.2em !important;
    color: #e1b155 !important;
    padding-bottom: 2px !important;
  }

  .callout-tail {
    width: 0 !important;
    height: 0 !important;
    margin: 0 auto !important;
    border-left: 10px solid transparent !important;
    border-right: 10px solid transparent !important;
    border-top: 10px solid #fff7d6 !important;
    filter: drop-shadow(0 0 4px rgba(255, 230, 150, 0.7)) !important;
  }
}
