@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Inter:wght@300;400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
  position: relative;
}

/* Canvas background */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,215,0,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px; height: 40px;
}

.logo h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: gold;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  transition: color .3s;
}
.navbar nav a:hover { color: #9a6aff; }

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 5% 6rem;
}
.hero h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  background: linear-gradient(90deg, gold, #9a6aff);
  -webkit-background-clip: text;
  color: transparent;
}
.hero p {
  margin: 15px 0 30px;
  font-size: 1.1rem;
  color: #ccc;
}
.cta-btn {
  padding: 12px 28px;
  background: linear-gradient(90deg, gold, #9a6aff);
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s;
}
.cta-btn:hover { transform: scale(1.05); }

/* Sections */
section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 5%;
  text-align: center;
}

section h3 {
  font-family: 'Orbitron', sans-serif;
  color: gold;
  margin-bottom: 1rem;
}

section p { color: #ccc; }

/* Whitepaper */
.whitepaper-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 10px 20px;
  border: 1px solid gold;
  border-radius: 25px;
  text-decoration: none;
  color: gold;
  transition: background .3s;
}
.whitepaper-btn:hover {
  background: gold;
  color: #000;
}

/* FAQ Section */
.faq-section { text-align: left; }
.faq-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  transition: transform .3s, background .3s;
}
.faq-box:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.faq-box h4 {
  color: gold;
  margin-bottom: .5rem;
  cursor: pointer;
}

/* Contact */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.socials a {
  color: #9a6aff;
  text-decoration: none;
}
.socials a:hover { color: gold; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,215,0,0.3);
  background: rgba(0,0,0,0.8);
}
footer .credit {
  color: #9a6aff;
  margin-top: 6px;
}

/* Animations */
.fade { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .navbar nav a { margin: 0 8px; font-size: 0.9rem; }
  .hero h2 { font-size: 2rem; }
}
