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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  height: 100vh;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(2px);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("lucky.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo at top */
.logo {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

/* Main Content Card */
.content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;

  z-index: 1;
}

/* Star Icon */
.star-icon {
  font-size: 60px;
  color: white;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Coming Soon Text */
.coming-soon {
  color: white;
  font-size: 48px;
  font-weight: 900;

  text-align: center;
  margin: 0;
}
.desc {
  margin-top: 40px;
}
.description {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
  line-height: 1.5;
  word-wrap: break-word;
}

/* Contact Buttons */
.contactButtons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.span {
  display: inline-block;
  align-items: center;
  gap: 10px;
  margin: 0 8px;
  padding: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  word-wrap: break-word;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn .icon {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  .logo {
    top: 20px;
  }

  .content-card {
    padding: 60px 20px;
    margin: 0 20px;
    gap: 30px;
  }

  .star-icon {
    font-size: 45px;
  }

  .coming-soon {
    font-size: 32px;
    letter-spacing: 3px;
    line-height: 1.2;
  }

  .description {
    font-size: 16px;
    padding: 4px 10px;
  }

  .desc {
    margin-top: 20px;
  }

  .contactButtons {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    gap: 10px;
  }

  .contact-btn {
    margin-top: 0;
    width: auto;
    flex: 1;
    min-width: 0;
    justify-content: center;
    font-size: 14px;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }

  .span {
    display: inline-block;
    margin: 8px 4px 0;
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 40px 15px;
    gap: 25px;
  }

  .logo {
    top: 15px;
  }

  .coming-soon {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1.2;
  }

  .star-icon {
    font-size: 35px;
  }

  .description {
    font-size: 14px;
    padding: 4px 5px;
    line-height: 1.4;
  }

  .desc {
    margin-top: 15px;
  }

  .contactButtons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0;
  }

  .contact-btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 20px;
    white-space: normal;
  }

  .contact-btn .icon {
    font-size: 14px;
  }

  .span {
    display: block;
    margin: 8px 0 0;
    padding: 8px 10px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
}
