
body {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  background: #000;
  color: gold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 700px;
}

h1 {
  font-size: 72px;
  margin-bottom: 0;
  letter-spacing: 4px;
}

h1 span {
  color: #fff;
}

.tagline {
  font-size: 24px;
  color: #ccc;
  margin-bottom: 30px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 36px;
  color: gold;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.cta {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  background: gold;
  color: black;
  font-size: 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn:hover {
  background: white;
}

.btn.secondary {
  background: transparent;
  border: 2px solid gold;
  color: gold;
}

.btn.secondary:hover {
  background: gold;
  color: black;
}
