* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(120deg, #FAF7F2, #E8D9CF);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  padding: 20px;
}

.card {
  max-width: 420px;
  background: #ffffff;
  margin: auto;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 15px 40px rgba(0,0,0,0.08);
}

.logo {
  width: 110px;
  margin-bottom: 15px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #2F5D50;
  margin-bottom: 10px;
}

.tagline {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.countdown div {
  background: #FAF7F2;
  padding: 10px;
  border-radius: 12px;
  width: 22%;
}

.countdown span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #C8A46A;
}

.countdown small {
  font-size: 11px;
  color: #777;
}

.cta-btn {
  display: inline-block;
  background: #2F5D50;
  color: #fff;
  padding: 14px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #24493f;
}

.location {
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}
