
/* === GENERAL === */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0b0b15;
  color: #e0e0ff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path fill="%239a6aff" fill-opacity="0.05" d="M10 10 Q15 5 20 10 T30 10 Q25 15 20 10 T10 10 Z"/></svg>');
  background-repeat: repeat;
  background-size: 60px 60px;
}

h1, h2, h3 {
  color: #a86dfd;
}

.centered-title {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* === BANNER === */
.banner {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 0 0 5px #a86dfd;
}

/* === FOUNDERS === */
.founder-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

.founder-card {
  background: rgba(30, 30, 60, 0.5);
  border: 1px solid #8ef6ff44;
  border-radius: 20px;
  padding: 1rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #a86dfd;
}

.founder-card img {
  width: 150px;
  height: auto;
  border-radius: 1rem;
}

/* === WORMS AND ICONS === */
.worm-img {
  width: 40px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.worm-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

/* === QUIZ + TESTIMONIALS + RITUAL === */
section {
  padding: 2rem;
  text-align: center;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin-top: 1rem;
  background: linear-gradient(45deg, #a86dfd, #00f7ff);
  color: #0b0b15;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 15px #00f7ff88;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(45deg, #00f7ff, #a86dfd);
  transform: scale(1.05);
}

/* === FOOTER === */
footer {
  background-color: #0b0b15;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #8ef6ff44;
  margin-top: 3rem;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.social-links a {
  color: #a86dfd;
  margin: 0 10px;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

/* === ANIMATIONS === */
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.worm-img, .portal-img {
  animation: floaty 4s ease-in-out infinite;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    align-items: center;
  }
}
