/* Base layout */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-wrapper {
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

/* Header + logo */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo {
  max-width: 350px;
  height: auto;
  margin-bottom: 0.75rem;
}

.title-block h1 {
  font-size: 2.4rem;
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
}

.title-block h2 {
  font-size: 1.2rem;
  margin: 0.3rem 0 0;
  color: #444444;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Main content */
.sale-date {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.countdown-label {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0.4rem;
}

/* Big countdown */
.countdown {
  font-family: "Courier New", Courier, monospace;
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d27a, #f0b93a);
  color: #000000;
  padding: 0.3em 0.6em;
  border-radius: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 18px rgba(245, 210, 122, 0.8);
}

/* Details */
.details {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000000;
}

.highlight {
  color: #f5d27a;
  font-weight: 600;
}

.social {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.social a {
  color: #000000;      /* black text to match the theme */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #f5d27a; /* subtle gold underline */
}

.social a:hover {
  color: #f5d27a;
}


/* Responsive tweaks */
@media (max-width: 480px) {
  .title-block h1 {
    font-size: 1.9rem;
  }
  .countdown {
    font-size: 2.1rem;
  }
  .sale-date {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 190px; /* smaller logo on mobile */
  }
}

.about {
  margin-top: 2rem;
  padding: 1.2rem 1rem;
  background-color: #f9f9f9; /* subtle light background */
  color: #222;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.about h3 {
  margin-top: 0;
  color: #b88a00; /* gold tone */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.about p {
  font-size: 1rem;
  line-height: 1.5;
}
