* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 35%),
    linear-gradient(135deg, #0f2f25, #06140f 70%);
  color: #ffffff;
}

.coming-soon-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.coming-soon-wrapper::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  top: -180px;
  right: -180px;
}

.coming-soon-wrapper::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  bottom: -160px;
  left: -160px;
}

.content-card {
  width: 100%;
  max-width: 650px;
  padding: 55px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 42px;
  font-family: serif;
  background: rgba(212, 175, 55, 0.08);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1;
  color: #f8e7a1;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.tagline {
  font-size: 17px;
  color: #e9e9e9;
  margin-bottom: 35px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.description {
  max-width: 480px;
  margin: 0 auto;
  color: #d7d7d7;
  font-size: 15.5px;
  line-height: 1.8;
}

.divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 35px auto;
}

.info-box {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.info-box p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 4px;
}

.info-box span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

footer {
  margin-top: 38px;
  font-size: 13px;
  color: #bdbdbd;
}

@media (max-width: 600px) {
  .content-card {
    padding: 42px 24px;
    border-radius: 22px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 23px;
  }

  .tagline {
    font-size: 15px;
  }

  .description {
    font-size: 14.5px;
  }
}