:root {
  /* Update these colors based on your logo */
  --primary-color: #4a6fff;
  --secondary-color: #6c63ff;
  --accent-color: #3f51b5;
  --text-color: #333333;
  --light-color: #ffffff;
  --background-color: #0a1128;
  --gradient-start: #4a6fff;
  --gradient-end: #6c63ff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--light-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
  padding: 1rem 0;
}

.logo img {
  max-height: 80px;
  display: block;
  margin: 0 auto;
  background-color: var(--light-color);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

.content {
  max-width: 900px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #b8c2cc;
  line-height: 1.8;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item span:first-child {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-item span:last-child {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: #b8c2cc;
}

.notify-form {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notify-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

input[type="email"] {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  backdrop-filter: blur(5px);
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
}

button {
  padding: 1rem 1.8rem;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--light-color);
}

.feature p {
  font-size: 0.9rem;
  color: #b8c2cc;
}

footer {
  padding: 2rem 0 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  color: var(--light-color);
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

footer p {
  font-size: 0.9rem;
  color: #b8c2cc;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .countdown {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .countdown-item {
    min-width: 80px;
    padding: 1rem;
  }

  .countdown-item span:first-child {
    font-size: 2rem;
  }

  form {
    flex-direction: column;
  }

  input[type="email"],
  button {
    width: 100%;
  }

  .features {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.8rem;
  }

  .countdown-item span:first-child {
    font-size: 1.5rem;
  }
}
