@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafc;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 180px;
  margin-bottom: 25px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

#countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

#countdown div {
  flex: 1;
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#countdown span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #0077ff;
}

#countdown small {
  display: block;
  margin-top: 5px;
  color: #555;
  font-size: 0.9rem;
}

.social a {
  margin: 0 10px;
  color: #0077ff;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #0056cc;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}
