/* Basic Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Container */
.container {
  text-align: center;
}

/* Logo Setup */
.logo {
  width: 300px;
  max-width: 80%;
  position: relative;
  opacity: 0;
  animation: fadeIn 4s ease-out forwards, glitchFast 2s infinite;
  filter: brightness(1.2);
}

/* Coming Soon Text */
.coming-soon {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeInText 3s ease-out forwards;
  animation-delay: 2s;
}

/* Smooth Fade In */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Coming Soon Text Fade In */
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Stronger RGB Glitch */
@keyframes glitchFast {
  0%, 100% {
    filter: none;
  }
  5% {
    filter: drop-shadow(-2px 0 red) drop-shadow(2px 0 blue);
  }
  10% {
    filter: none;
  }
  15% {
    filter: drop-shadow(2px 0 red) drop-shadow(-2px 0 blue);
  }
  20% {
    filter: none;
  }
  80% {
    filter: none;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
  .logo {
    width: 160px; /* slightly bigger logo */
  }

  .coming-soon {
    font-size: 12px; /* slightly bigger text */
    letter-spacing: 1.5px; /* slightly wider spacing for elegance */
  }
}


