/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}


@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}
/* Center Container */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh;
  text-align: center;
}

/* Logo Styling */
.logo {
  font-size: 3em;
  color: #00e0ff;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}


/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5em;
  }

  .search-bar {
    font-size: 1em;
    padding: 12px;
  }

  .search-button {
    padding: 8px 25px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2em;
  }

  .search-bar {
    font-size: 0.9em;
    padding: 10px;
  }

  .search-button {
    padding: 7px 20px;
    font-size: 0.8em;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/* CSS Logo Styling */
.css-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  color: #00e0ff;
  text-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 40px rgba(0, 224, 255, 0.6);
  animation: bluePinkGlow 2s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;

}

/* Domain Styling */
.css-logo .domain {
  font-size: 0.5em;
  color: #999;
  margin-left: 5px;
  text-shadow: 0 0 5px #ff00cc, 0 0 10px rgba(255, 0, 204, 0.6);
}

/* Blue-to-Pink Glow Animation */
@keyframes bluePinkGlow {
  0% {
    text-shadow: 0 0 5px #00e0ff, 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 40px rgba(0, 224, 255, 0.6);
    color: #00e0ff;
  }
  100% {
    text-shadow: 0 0 5px #ff00cc, 0 0 10px #ff00cc, 0 0 20px #ff00cc, 0 0 40px rgba(255, 0, 204, 0.8);
    color: #ff00cc;
  }
}


/* Footer Styling */
footer {

  padding: 15px;
  font-size: 0.9em;
  position: absolute;
  bottom: 10px;
  text-align: center;
text-shadow: 2px 2px 0px #FFFFFF, 5px 4px 0px rgba(0,0,0,0.15);
color: #333333;
}

