body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #e0e0e0;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  background: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00d4ff;
}

.invite-button {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(45deg, #00d4ff, #8a2be2);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 0 3px rgba(0, 212, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.invite-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.6);
}

.invite-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 5px rgba(0, 212, 255, 0.4);
}

.hero {
  background: linear-gradient(135deg, #00d4ff, #8a2be2);
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-in;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.hero p {
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #f0f0f0;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  border-radius: 25px;
  margin-top: 1.5rem;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1 0 auto;
}

.content h2 {
  color: #00d4ff;
  font-size: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.feature-card h3 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #b3b3b3;
  font-size: 1.1rem;
}

.feature-card code {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
}

.highlight-text {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin: 2rem 0;
  text-align: center;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.cta-section h2 {
  margin: 0;
}

.invite-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  border-radius: 25px;
}

.stats-section {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

#visit-count {
  color: #8a2be2;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.command-list {
  list-style: none;
  padding: 0;
}

.command-list li {
  background: rgba(255, 255, 255, 0.05);
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.command-list li:hover {
  transform: translateY(-5px);
}

.command-list code {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  margin: 1rem 0;
  padding-left: 1rem;
  position: relative;
  color: #b3b3b3;
}

.content ul li::before {
  content: "•";
  color: #00d4ff;
  position: absolute;
  left: 0;
}

.content ol {
  padding-left: 1.5rem;
}

.content ol li {
  margin: 1rem 0;
  color: #e0e0e0;
}

.content ol ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

#support-form {
  margin-top: 2rem;
}

#support-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00d4ff;
}

#support-form input,
#support-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1rem;
}

#support-form textarea {
  resize: vertical;
  min-height: 100px;
}

#support-form button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #00d4ff, #8a2be2);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#support-form button:hover {
  transform: translateY(-2px);
}

footer {
  background: #1a1a1a;
  padding: 1.5rem;
  text-align: center;
  color: #b3b3b3;
  margin-top: auto;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

.heading-bar {
  height: 6px; /* Altura da barra */
  background: linear-gradient(135deg, #00d4ff, #8a2be2); /* Gradiente neon */
  margin-bottom: 1.5rem; /* Espaço abaixo da barra */
  width: 100%; /* Ocupa toda a largura da seção */
  border-radius: 3px; /* Bordas sutis */
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3); /* Sombra para efeito */
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .invite-button {
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-cta {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  #support-form input,
  #support-form textarea {
    font-size: 0.9rem;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  border: 6px solid #e0e0e0;
  border-top: 6px solid #8a2be2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

footer p a {
  color: #8a2be2;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer p a:hover {
  color: #00d4ff;
}
