/* Minimalist CSS for Coming Soon Page */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500&display=swap');

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

body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 3.5rem;
  color: #111111;
  padding-left: 0.35em; /* Offset for letter-spacing to center text precisely */
  animation: fade-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-value {
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  color: #000000;
  font-variant-numeric: tabular-nums;
}

.time-label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888888;
  margin-top: 0.75rem;
  padding-left: 0.15em; /* Offset for letter-spacing */
}

.time-separator {
  font-size: 2.5rem;
  font-weight: 200;
  color: #cccccc;
  line-height: 1;
  transform: translateY(-12px); /* Adjust to align visually with value centers */
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustment */
@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
    letter-spacing: 0.25em;
    margin-bottom: 2.5rem;
  }

  .countdown {
    gap: 0.75rem;
  }

  .time-block {
    min-width: 60px;
  }

  .time-value {
    font-size: 2.5rem;
  }

  .time-label {
    font-size: 0.6rem;
  }

  .time-separator {
    font-size: 1.75rem;
    transform: translateY(-8px);
  }
}
