body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(
    270deg,
    #39ff14 0%,     
    #00f0ff 25%,    
    #0077ff 50%,     
    #00f0ff 75%,     
    #39ff14 100%
  );
  background-size: 1500% 1500%;
  animation: neonGradient 15s ease infinite;
  color: #f2f2f2;
}

@keyframes neonGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .page {
    max-height: 70vh;     
    overflow-y: auto;     
    -webkit-overflow-scrolling: touch; 
    padding-right: 1rem;   
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1c1c1c; 
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #58a6ff; 
  border-radius: 8px;
  border: 2px solid #1c1c1c; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #1a73e8;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #58a6ff #1c1c1c;
}

nav {
  background-color: #222;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;             
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #444;
}

nav button {
  background-color: #1e1e1e;
  color: #f2f2f2;
  padding: 0.5rem 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.8rem;    
  flex: 1 1 120px;
  max-width: 150px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

nav button:hover {
  background-color: #333;
}


.page {
  display: none;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.active {
  display: block;
}
h12, p.centered-text {
  text-align: center;
    color: #58a6ff;

}


h1, h2 {
  color: #58a6ff;
}

input, textarea, button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: none;
  margin-bottom: 1rem;
}

button[type="submit"] {
  background-color: #58a6ff;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.link-button {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: #58a6ff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-left: 0.3rem;
}

.link-button:hover {
  background-color: #1a73e8;
}










.bot-card {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px #00f0ff33;
}

.bot-card h2 {
  color: #58a6ff;
  margin-bottom: 1rem;
  text-align: center;
}

.bot-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.bot-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.6rem 1.2rem;
  background-color: #00f0ff;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00bcd4;
}

.team-info h3 {
  color: #39ff14;
  margin-top: 1.5rem;
}

.team-info p,
.team-info ul {
  margin-left: 1rem;
  color: #c0f9ff;
}











@media (max-width: 768px) {
  nav {
    gap: 0.3rem;
    padding: 0.3rem;
  }
  nav button {
    flex: 0 0 auto;
    font-size: 0.7rem;
    padding: 0.3rem 0.4rem;
    min-width: 70px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  nav {
    gap: 0.2rem;
    padding: 0.3rem;
  }
  nav button {
    flex: 0 0 auto;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    min-width: 70px;
    max-width: 120px;
  }
}
q {
  color: #56ffb0;
    text-decoration:underline;
    padding: 0.5rem;
    font-family:  'Happy Monkey';
      font-style:normal


}
