/* Shared Style */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #00ffcc;
  background-color: #000;
  overflow-x: hidden;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  pointer-events: none;
  background: transparent;
}



.cyberpunk-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -3;
  background: radial-gradient(ellipse at center, #0f0f0f 0%, #000000 100%);
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Header/Footer */
header, footer {
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #00ffcc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00ffcc;
}
.logo span {
  color: #00ff88;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}
footer {
  text-align: center;
  border-top: 1px solid #00ffcc;
  font-size: 0.9rem;
}
footer .socials a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* FAQ Specific */
.faq-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00ffff;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #00ffcc33;
  padding-bottom: 1rem;
}

.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  width: 100%;
  padding: 0;
  color: #00ff77;
  font-size: 1.1rem;
  cursor: pointer;
}

.faq-toggle h3 {
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  color: #e6f0ec;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into x */
}
