/* Entire page */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #1a1f2b 0%, #0e121a 100%);
  font-family: "Poppins", sans-serif;
  color: #f4f4f4;
}

/* Center wrapper */
.wrapper {
  text-align: center;
  padding: 40px;
}

/* Heading: classy serif */
h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #f8f8f8;
  letter-spacing: 1.5px;
}

/* Gold underline effect */
h1::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d3b574, #f5d99f, #d3b574);
  border-radius: 10px;
}

/* Tagline */
.tagline {
  margin-top: 14px;
  font-size: 18px;
  opacity: 0.9;
  color: #dcdcdc;
  font-weight: 300;
}
