body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000000;
  color: #39FF14;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  overflow-x: hidden;
}

h1 {
  font-size: 1.4em;
  color: #39FF14;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #39FF14, 0 0 30px #39FF14;
}

.logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: url('https://i.ibb.co/FQWCn1L/photo-2025-07-25-19-31-39.jpg') no-repeat center/cover;
  margin-bottom: 40px;
  border: 0px solid transparent;
  position: relative;
  box-shadow: 0 0 20px #39FF14;
}

.select-wrapper {
  width: 100%;
  max-width: 400px;
}

.neon-select {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  font-size: 1em;
  background-color: #0a0a0a;
  color: #39FF14;
  border: 2px solid #39FF14;
  border-radius: 20px; /* smoother corners */
  outline: none;
  box-shadow: 0 0 12px #39FF14 inset, 0 0 6px #39FF14;
  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 #39FF14, 0 0 10px #39FF14 inset;
}

/* Neon Button */
#go-btn {
  display: block;
  margin: 20px auto;
}


.neon-button {
  background-color: transparent;
  border: 2px solid #39FF14;
  color: #39FF14;
  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 #39FF14, 0 0 30px #39FF14;
  animation: pulse-glow 2s infinite;
}

.neon-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #39FF14, 0 0 50px #39FF14;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px #39FF14;
  }
  50% {
    box-shadow: 0 0 20px #39FF14, 0 0 40px #39FF14;
  }
  100% {
    box-shadow: 0 0 10px #39FF14;
  }
}

.loader {
  border: 6px solid #111;
  border-top: 6px solid #39FF14;
  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 #39FF14;
}

/* 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: #39FF14;
  text-align: center;
  text-shadow: 0 0 8px #39FF14;
  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 #39FF14);
}

.contact-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px #39FF14);
}

