/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 800px;
  padding: 20px;
}

.logo {
  width: 350px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

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

#countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  min-width: 100px;
  transition: transform 0.3s ease;
}

#countdown div:hover {
  transform: scale(1.05);
}

#countdown span:first-child {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ff4c29;
}

#countdown span:last-child {
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.8;
}
