.banner {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  background-color: #89459b;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Down arrow styles */
  /* Different animation delays for varied twinkling effect */
  /* Additional staggered delays for more words */
}
.banner * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.banner .logo-container {
  position: relative;
  z-index: 10;
}
.banner .logo-container .logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
}
.banner .words-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.banner .word {
  position: absolute;
  color: white;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: twinkle 2s infinite,
      orbit 20s infinite linear;
  opacity: 20%;
  will-change: transform;
}
.banner .down-arrow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  animation: blink 2s infinite;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.banner .down-arrow svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.banner .word:nth-child(1) {
  animation-delay: 0s;
}
.banner .word:nth-child(2) {
  animation-delay: 0.2s;
}
.banner .word:nth-child(3) {
  animation-delay: 0.4s;
}
.banner .word:nth-child(4) {
  animation-delay: 0.6s;
}
.banner .word:nth-child(5) {
  animation-delay: 0.8s;
}
.banner .word:nth-child(6) {
  animation-delay: 1s;
}
.banner .word:nth-child(7) {
  animation-delay: 1.2s;
}
.banner .word:nth-child(8) {
  animation-delay: 1.4s;
}
.banner .word:nth-child(9) {
  animation-delay: 1.6s;
}
.banner .word:nth-child(10) {
  animation-delay: 1.8s;
}
.banner .word:nth-child(n + 11) {
  animation-delay: calc(var(--delay-index) * 0.3s);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 20%;
  }
  50% {
    opacity: 1;
  }
}
@keyframes orbit {
  0% {
    transform: translate(var(--start-x, 0), var(--start-y, 0));
  }
  25% {
    transform: translate(var(--point1-x, 100px), var(--point1-y, -100px));
  }
  50% {
    transform: translate(var(--point2-x, 0), var(--point2-y, -200px));
  }
  75% {
    transform: translate(var(--point3-x, -100px), var(--point3-y, -100px));
  }
  100% {
    transform: translate(var(--start-x, 0), var(--start-y, 0));
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* Responsive design */
@media (max-width: 768px) {
  .logo {
    width: 200px;
    height: 200px;
  }
  .word {
    font-size: 14px;
  }
  .down-arrow svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 150px;
    height: 150px;
  }
  .word {
    font-size: 12px;
  }
  .down-arrow svg {
    width: 30px;
    height: 30px;
  }
}
   width: 30px;
    height: 30px;
  }
}
