:root {
  --cream: #fffaf1;
  --soft-pink: #e7a6a6;
  --rose: #c85f5f;
  --gold: #b88a3b;
  --dark-gold: #7a4f18;
  --text: #3d2d23;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 166, 166, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(184, 138, 59, 0.25), transparent 35%),
    linear-gradient(135deg, #fff7ee, #fffdf8);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: 100%;
  max-width: 760px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 138, 59, 0.25);
  border-radius: 36px;
  padding: 46px 30px;
  box-shadow: 0 30px 80px rgba(122, 79, 24, 0.15);
  position: relative;
  overflow: hidden;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(231, 166, 166, 0.2);
  z-index: -1;
}

.card::before {
  top: -70px;
  left: -70px;
}

.card::after {
  bottom: -70px;
  right: -70px;
}

.logo-wrap {
  width: 235px;
  height: 235px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 9px;
  background: linear-gradient(135deg, var(--soft-pink), var(--gold));
  box-shadow: 0 18px 40px rgba(184, 138, 59, 0.28);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.eyebrow {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--dark-gold);
  margin-bottom: 18px;
}

.description {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #6f5a4a;
}

.divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 30px auto;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.countdown div {
  padding: 18px 8px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(184, 138, 59, 0.25);
}

.countdown span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.countdown small {
  display: block;
  margin-top: 4px;
  color: #7c6a5c;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown.finished {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.countdown.finished .opening-message {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--dark-gold);
  line-height: 1.3;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 15px 28px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(122, 79, 24, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(200, 95, 95, 0.24);
}

@media (max-width: 560px) {
  .card {
    padding: 34px 20px;
    border-radius: 28px;
  }

  .logo-wrap {
    width: 185px;
    height: 185px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-btn {
    width: 100%;
    padding: 15px 18px;
    border-radius: 22px;
  }
}
