* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  color: #fff;
}

@keyframes gradient {
  0% { background-position: 0% }
  50% { background-position: 100% }
  100% { background-position: 0% }
}

.container {
  text-align: center;
  max-width: 500px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  width: 80px;
}

.countdown span {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Form */
form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
}

button {
  padding: 10px 15px;
  border: none;
  background: #fff;
  color: #0072ff;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

button:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 500px) {
  .countdown {
    flex-wrap: wrap;
  }

  form {
    flex-direction: column;
  }

  input {
    width: 100%;
  }
} * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  background: #0f2027;
  color: #fff;
}

/* Canvas */
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Glass Container */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Title */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.time {
  background: rgba(255,255,255,0.08);
  padding: 15px;
  border-radius: 10px;
  width: 22%;
}

.time span {
  font-size: 1.5rem;
  display: block;
}

/* Form */
form {
  display: flex;
  margin-bottom: 20px;
}

input {
  flex: 1;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: none;
}

button {
  padding: 10px 20px;
  border: none;
  background: #00c6ff;
  color: #fff;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

button:hover {
  background: #0072ff;
}

/* Social */
.socials i {
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: #00c6ff;
  transform: scale(1.2);
}