/* Basic resets and layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212; /* Dark background to match site */
  color: #e0e0e0; /* Light text for readability */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  font-size: 18px; /* Base font size increased for better readability */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #2c2c2c; /* Dark container background */
  padding: 20px;
  border: 1px solid #444444;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #ffffff; /* White for contrast */
}

p {
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 1.1em;
}

#countdown {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.time-unit {
  margin: 0 10px;
  font-size: 24px;
  font-weight: bold;
  color: #bbbbbb; /* Softer gray to match meta text */
}

.time-unit span {
  font-size: 48px;
  color: #ffffff; /* White for emphasis, like titles */
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    padding: 10px; /* Less side padding on mobile */
  }

  .container {
    padding: 10px; /* Slightly less padding */
  }

  .time-unit {
    margin: 0 5px; /* Tighter spacing on small screens */
    font-size: 20px;
  }

  .time-unit span {
    font-size: 36px;
  }
}