* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}
.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.logo span {
  color: #27c99d;
}
.headline {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.subtext {
  color: #ccc;
  margin-bottom: 30px;
}
#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
#countdown div {
  background: #222;
  padding: 10px 15px;
  border-radius: 10px;
}
#countdown span {
  display: block;
  font-size: 1.8rem;
  color: #27c99d;
}
#countdown small {
  font-size: 0.75rem;
  color: #aaa;
}
.subscribe {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.subscribe input {
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}
.subscribe button {
  padding: 10px 20px;
  border: none;
  background: #27c99d;
  color: #000;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}
.subscribe button:hover {
  background: #1ea885;
}
.socials a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s;
}
.socials a:hover {
  color: #27c99d;
}
