/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

/* Countdown number styling */
.countdown-number {
  font-size: 80px;
  font-weight: bold;
  color: #00ff66;
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.7), 0 0 20px rgba(0, 255, 102, 0.5);
  margin-bottom: 10px;
  line-height: 1;
  transition: all 0.3s ease;
}

/* Few spots available text */
.spots-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Profile image with glow effect */
.profile-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px 0;
  border-radius: 50%;
}

.profile-image-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

.profile-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Access and earn text */
.access-text {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 15px 0 10px;
}

/* Click button below text */
.click-text {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Pause symbol */
.pause-symbol {
  font-size: 24px;
  color: #00ff66;
  margin: 10px 0;
}

/* WhatsApp button */
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #00ff66;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 20px 0;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.7);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.8), 0 0 40px rgba(0, 255, 102, 0.4);
}

/* Admin link (nearly invisible) */
.admin-link {
  margin-top: 30px;
  opacity: 0.1;
}

.admin-link a {
  color: #666666;
  text-decoration: none;
  font-size: 12px;
}

.admin-link a:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .countdown-number {
    font-size: 70px;
  }

  .spots-text {
    font-size: 20px;
  }

  .profile-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .access-text {
    font-size: 16px;
  }

  .whatsapp-button {
    font-size: 16px;
    padding: 12px 25px;
  }
}
