/* Reset-ish */
* { box-sizing: border-box; }

/* Page basics */
body {
  background: #ffffff;
  color: #111827;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* Header logo */
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Large centered brand mark (optional decorative) */
.brand-logo {
  margin-top: 6px;
}
.display-name {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1;
  margin: 0;
  color: #0b2540; /* deep navy */
  font-weight: 700;
}
.divider {
  width: 140px;
  height: 3px;
  background: #e6e7e8;
  margin: 10px auto 6px;
  border-radius: 3px;
}
.sub {
  letter-spacing: 6px;
  font-size: 14px;
  color: #c7ad86; /* warm gold */
  font-weight: 600;
}

/* Description */
.description {
  margin-top: 12px;
  color: #333;
  font-size: 18px;
  max-width: 760px;
}

/* Redirect visuals */
.redirect-visual { margin-top: 28px; }

/* Countdown circle */
.count-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #e4e4e4;
  display: inline-flex;
  padding: 6px;
}
.count-number {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}
.count-label {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* Pill buttons */
.pill-area .pill {
  background: #efefef;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0,0,0,0.02);
  color: #111827;
}

/* arrow styling */
.arrow {
  font-size: 26px;
  color: #111827;
  margin: 0 8px;
}
.mobile-arrow {
  font-size: 28px;
  color: #111827;
  margin: 6px 0;
}

/* small helper text */
.muted-text {
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .display-name { font-size: 36px; }
  .count-circle { width: 64px; height: 64px; }
  .pill-area .pill { min-width: 260px; font-size: 16px; padding: 12px 22px; }
  .description { font-size: 16px; padding: 0 18px; }
}

/* subtle entrance animation */
.page-wrap > main { animation: fadeInUp .7s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blinkFast {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.blink-fast {
  animation: blinkFast 0.3s linear infinite;
}
