* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow: hidden;
  background-color: hsla(200, 40%, 30%, 0.4);
  background-image:
    linear-gradient(
      135deg,
      rgba(48, 245, 212, 0.247) 0%,
      rgba(255, 153, 0, 0.371) 100%
    ),
    url("https://78.media.tumblr.com/cae86e76225a25b17332dfc9cf8b1121/tumblr_p7n8kqHMuD1uy4lhuo1_540.png"),
    url("https://78.media.tumblr.com/66445d34fe560351d474af69ef3f2fb0/tumblr_p7n908E1Jb1uy4lhuo1_1280.png"),
    url("https://78.media.tumblr.com/8cd0a12b7d9d5ba2c7d26f42c25de99f/tumblr_p7n8kqHMuD1uy4lhuo2_1280.png"),
    url("https://78.media.tumblr.com/5ecb41b654f4e8878f59445b948ede50/tumblr_p7n8on19cV1uy4lhuo1_1280.png"),
    url("https://78.media.tumblr.com/28bd9a2522fbf8981d680317ccbf4282/tumblr_p7n8kqHMuD1uy4lhuo3_1280.png");
  background-repeat: repeat-x;
  background-position:
    0 0,
    0 20%,
    0 100%,
    0 50%,
    0 100%,
    0 0;
  background-size:
    cover,
    2500px,
    800px,
    500px 200px,
    1000px,
    400px 260px;
  animation: para 50s infinite linear;
}

@keyframes para {
  100% {
    background-position:
      0 0,
      -5000px 20%,
      -800px 95%,
      500px 50%,
      1000px 100%,
      400px 0;
  }
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  color: #222;
  z-index: 10;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
  /* height: 20vw; */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: 80px;
}

.gear {
  font-size: 2rem;
  animation: rotate 3s linear infinite;
}

.gear2 {
  animation-direction: reverse;
  animation-duration: 2s;
}

.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e65c00, #ff9800, #ff5722, #e65c00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    blink-cursor 0.7s step-end infinite,
    gradient-shift 4s ease infinite;
  border-right: 3px solid #e65c00;
  display: inline-block;
  transition: opacity 0.3s ease;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes blink-cursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #e65c00;
  }
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.countdown {
  margin: 2rem 0;
}

.countdown h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #555;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 1rem;
  min-width: 80px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.time-box span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #e65c00;
}

.time-box label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-section {
  margin: 2rem 0;
}

.notify-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.email-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

#emailInput {
  flex: 1;
  min-width: 250px;
  padding: 0.8rem;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(5px);
}

#emailInput::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #ff9800, #ffb74d);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-size: 1rem;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification {
  padding: 0.8rem;
  border-radius: 10px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.notification.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4caf50;
  color: #4caf50;
}

.notification.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid #f44336;
  color: #f44336;
}

.notification.hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(3px);
}

.contact-text {
  font-size: 0.95rem;
  font-weight: 500;
}

.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-call {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
}

.icon-call:hover {
  background: rgba(0, 122, 255, 0.2);
}

.icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.icon-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
}

.icon-email {
  background: rgba(234, 67, 53, 0.1);
  color: #ea4335;
}

.icon-email:hover {
  background: rgba(234, 67, 53, 0.2);
}

.contact-item:hover .icon-call { color: #007aff; }
.contact-item:hover .icon-whatsapp { color: #25d366; }
.contact-item:hover .icon-email { color: #ea4335; }

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    margin: 1rem;
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .email-form {
    flex-direction: column;
    align-items: center;
  }

  #emailInput {
    min-width: 200px;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-box {
    min-width: 60px;
    padding: 0.8rem;
  }

  .time-box span {
    font-size: 1.5rem;
  }
}
