body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #c8a77b;
  color: white;
  text-align: center;
}

main {
  flex: 1;
}

.container {
  padding: 2rem;
}

.logo {
  max-width: 400px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

#countdown div {
  text-align: center;
}

#countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.site-footer {
  text-align: center;
  font-size: 0.875rem;
  color: #ccc;
  padding: 1.5rem 1rem;
  background-color: #c8a77b;
  width: 100%;
}
