body {
  background: linear-gradient(135deg, #181a20 70%, #23242b 100%);
  color: #f5f5f5;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111217;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border-bottom: 2px solid #23242b;
}
nav .logo img {
  height: 48px;
  filter: drop-shadow(0 0 8px #ff00cc);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  font-size: 1rem;
}
nav ul li a:hover {
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  box-shadow: 0 2px 12px #00ff9944;
}
.hero {
  text-align: center;
  padding: 3rem 1rem 1.5rem 1rem;
  background: linear-gradient(135deg, #181a20 60%, #ff00cc 100%);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 8px 32px #ff00cc22;
}
.hero-logo {
  width: 90px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 24px #00ff99);
}
.hero h1 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
  font-weight: 800;
  letter-spacing: 2px;
}
.mission {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 500;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 16px #00ff99;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin: 0 0.5rem;
}
.cta:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #fff;
  transform: scale(1.04);
}
section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1.5rem 1rem;
  background: #23242b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,255,153,0.10);
  border: 1.5px solid transparent;
  border-image: linear-gradient(90deg, #ff00cc 10%, #00ff99 90%);
  border-image-slice: 1;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
section:hover {
  box-shadow: 0 8px 48px #00ff9944, 0 2px 16px #ff00cc33;
  border: 1.5px solid #00ff99;
}
section h2 {
  color: #ff00cc;
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 0.7rem;
}
ul {
  padding-left: 1.5rem;
  font-size: 1rem;
}
li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.invite-link, .support-link {
  color: #00ff99;
  font-weight: bold;
  text-decoration: underline;
}
.invite-link:hover, .support-link:hover {
  color: #ff00cc;
}
.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.videos video {
  max-width: 100%;
  height: auto;
  width: 100%;
}
blockquote {
  background: #181a20;
  border-left: 5px solid #00ff99;
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  font-style: italic;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 16px #00ff9933;
  font-size: 1rem;
}
blockquote span {
  display: block;
  margin-top: 0.5rem;
  color: #00ff99;
  font-size: 0.95rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  background: #181a20;
  border: 1px solid #00ff99;
  color: #fff;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 1.08rem;
  resize: vertical;
}
button[type="submit"] {
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 16px #00ff99;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
button[type="submit"]:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #fff;
  transform: scale(1.04);
}
footer {
  text-align: center;
  padding: 1.2rem 1rem 0.7rem 1rem;
  color: #aaa;
  font-size: 0.95rem;
  background: #111217;
  border-top: 1px solid #23242b;
  margin-top: 3rem;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  section {
    padding: 1.2rem;
  }
  nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  section {
    margin: 1rem;
    padding: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .hero-logo {
    width: 80px;
  }
  .tagline {
    font-size: 1.3rem;
  }
  section h2 {
    font-size: 1.1rem;
  }
  .videos video {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }
  blockquote {
    font-size: 0.95rem;
    padding: 0.7rem 0.5rem;
  }
}
.tagline {
  font-size: 2rem;
  font-weight: bold;
  margin: 1.2rem 0 1.2rem 0;
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px #00ff99cc, 0 0 24px #ff00cc44;
  letter-spacing: 1px;
}
#about {
  background: #23242b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,255,153,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  border: 1.5px solid transparent;
  border-image: linear-gradient(90deg, #ff00cc 10%, #00ff99 90%);
  border-image-slice: 1;
  transition: box-shadow 0.2s, border 0.2s;
}
#about:hover {
  box-shadow: 0 8px 48px #00ff9944, 0 2px 16px #ff00cc33;
  border: 1.5px solid #ff00cc;
}
#about h2 {
  font-size: 1.6rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  color: #ff00cc;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
  letter-spacing: 1.5px;
}
#about h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  border-radius: 2px;
  box-shadow: 0 0 8px #00ff99cc;
}
#about p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  margin: 1.5rem auto 0 auto;
  max-width: 650px;
  background: linear-gradient(90deg, #fff, #ff00cc 60%, #00ff99);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px #00ff9944, 0 0 16px #ff00cc22;
}
.center {
  text-align: center;
}
.tutorial-link {
  display: block;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 0 16px #00ff99, 0 0 8px #ff00cc;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  animation: pulse 1.5s infinite alternate;
}
.tutorial-link:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #181a20;
  transform: scale(1.05);
}
@keyframes pulse {
  0% { box-shadow: 0 0 16px #00ff99, 0 0 8px #ff00cc; }
  100% { box-shadow: 0 0 32px #00ff99, 0 0 16px #ff00cc; }
}
/* Glowing text for 'Coming Soon' */
.glow-text {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-shadow:
    0 0 8px #ff00cc,
    0 0 16px #ff00cc,
    0 0 32px #00ff99,
    0 0 48px #00ff99;
  animation: pulse 2s infinite alternate;
  margin: 2rem auto;
} 