body {
  margin: 0;
  font-family: sans-serif;
  background: #0b0b0f;
  color: #fff;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("assets/bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 4px;
}

.subtitle {
  color: #a855f7;
  margin-bottom: 30px;
}

.btn {
  padding: 15px 30px;
  background: #7c3aed;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.btn.sub {
  margin-top: 15px;
  background: #111;
  border: 1px solid #7c3aed;
}


.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.section.dark {
  background: #111;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #666;
}

/* ===== Support Section ===== */
.support {
  background: linear-gradient(135deg, #120018, #000);
  border-top: 1px solid #2a0a3d;
  border-bottom: 1px solid #2a0a3d;
  text-align: center;
}

.support h2 {
  color: #c084fc;
  letter-spacing: 2px;
}

.support-lead {
  font-size: 18px;
  margin-top: 20px;
}

.support-note {
  color: #ccc;
  margin: 20px 0 30px;
  line-height: 1.8;
}

.support-btn {
  background: transparent;
  border: 2px solid #a855f7;
  color: #fff;
  font-weight: bold;
}

.support-btn:hover {
  background: #a855f7;
}

.support-sub {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}
