body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000000;
  color: #e92ad9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  overflow-x: hidden;
}

h1 {
  font-size: 1.4em;
  color: 	#e92ad9;
  margin-bottom: 20px;
  text-shadow: 0 0 10px 	#e92ad9, 0 0 30px #e92ad9;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: url('https://i.ibb.co/6RJcTm6V/ava-687e040e247ff.jpg" alt="ava-687e040e247ff') no-repeat center/cover;
  margin-bottom: 40px;
  border: 0px solid transparent;
  position: relative;
  box-shadow: 0 0 20px 	#e92ad9;
}

.select-wrapper {
  width: 100%;
  max-width: 400px;
}

.neon-select {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  font-size: 1em;
  background-color: #0a0a0a;
  color: 	#e92ad9;
  border: 2px solid 	#e92ad9;
  border-radius: 20px; /* smoother corners */
  outline: none;
  box-shadow: 0 0 12px 	#e92ad9 inset, 0 0 6px #e92ad9;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2339FF14' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

@media (max-width: 768px) {
  .neon-select {
    font-size: 1.1em;
    padding: 18px 20px;
    border-radius: 22px;
    background-position: right 18px center;
  }
}


.neon-select:focus {
  box-shadow: 0 0 15px 		#e92ad9, 0 0 10px 	#e92ad9 inset;
}

/* Neon Button */
#go-btn {
  display: block;
  margin: 20px auto;
}


.neon-button {
  background-color: transparent;
  border: 2px solid #e92ad9;
  color: #e92ad9;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1.1em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #e92ad9, 0 0 30px #e92ad9;
  animation: pulse-glow 2s infinite;
}

.neon-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #e92ad9, 0 0 50px #e92ad9;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px #e92ad9;
  }
  50% {
    box-shadow: 0 0 20px #e92ad9, 0 0 40px #e92ad9;
  }
  100% {
    box-shadow: 0 0 10px #e92ad9;
  }
}

.loader {
  border: 6px solid #111;
  border-top: 6px solid #e92ad9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  display: none;
  margin: 25px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.result {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 25px;
  display: none;
  text-align: center;
  text-shadow: 0 0 15px #e92ad9;
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 1s ease-in-out forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeUp 1s ease-in-out 0.4s forwards;
}

.fade-in-delayed-2 {
  opacity: 0;
  animation: fadeUp 1.2s ease-in-out 0.8s forwards;
}

/* Particle background container */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: #000000;
}

/* Countdown */
#countdown {
  margin-top: 15px;
  font-size: 1.3em;
  color: #e92ad9;
  text-align: center;
  text-shadow: 0 0 8px #e92ad9;
  display: none;
}

.contact-btn {
  display: inline-block;
  margin-bottom: 30px;
  animation: fadeUp 1s ease-in-out 0.6s forwards;
  opacity: 0;
}

.contact-image {
  width: 160px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 10px #02A9F7);
}

.contact-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px #02A9F7);
}

