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

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  font-family: 'Roboto', sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: #00ffcc;
}

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

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

.sub {
  font-size: .7em;
  margin-bottom: 20px;
  color:blueviolet;
}

.countdown p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.timer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
}

.timer div {
  background: #00000080;
  padding: 10px;
  border-radius: 10px;
  min-width: 60px;
}

.timer span {
  font-size: 1.5em;
  display: block;
}

.timer small {
  font-size: 0.75em;
  color: #aaa;
}

form {
  margin-top: 30px;
}

input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
  max-width: 300px;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  background-color: #00ffcc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #00ccb3;
}

footer {
  margin-top: 40px;
  font-size: 0.8em;
  color: #ccc;
}
