* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #333;
}
.container {
  padding: 20px;
  max-width: 600px;
}
.logo {
  width: 350px;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
p {
  font-size: 1.1em;
  margin-bottom: 30px;
}
#countdown {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  font-size: 1.5em;
  margin-bottom: 40px;
}
#countdown div {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#countdown span {
  display: block;
  font-size: 2em;
  color: #007bff;
}
.footer {
  font-size: 0.9em;
  color: #999;
}
