body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #111;
  color: #fff;
}

.splash {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
}

.splash h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-family: 'Comic Sans MS', cursive;
}

.splash p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta {
  padding: 15px 30px;
  background: #fff;
  color: #333;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta:hover {
  background: #ff00cc;
  color: #fff;
}

.cta.secondary {
  background: #333;
  color: #fff;
}
