body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #2a003f, #8b008b); /* Deep violet to dark magenta */
  color: rgba(255, 255, 255, 0.95); /* Light text for contrast */
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
}


.container {
  padding: 30px 15px;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff00ff;
  margin-bottom: 20px;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
}

.tagline {
  margin: 10px 0;
  font-weight: bold;
  color: gold;
}

.join-btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff00ff, #00ffcc);
  border-radius: 40px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 0 15px #00ffcc;
  animation: bounceLoop 1.2s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.countdown {
  margin-top: 20px;
  font-size: 20px;
}

.countdown span {
  color: red;
  font-weight: bold;
}

.quote {
  background: #333;
  border-radius: 10px;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
}

.stats {
  margin: 40px 0 20px;
  font-size: 36px;
  font-weight: bold;
  color: orange;
  text-shadow: 1px 1px black;
}

.subtext {
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
  color: white;
}

.features {
  margin: 30px 0;
  font-size: 16px;
}

.features p {
  margin: 8px 0;
}

.disclaimer {
  background-color: #0c1a2b;
  padding: 15px;
  font-size: 13px;
  color: #aaf;
  font-weight: 500;
  border-top: 1px solid #333;
  margin-top: 40px;
  line-height: 1.6;
}

/* Continuous Bounce Animation */
@keyframes bounceLoop {
  0% { transform: scale(1); }
  25% { transform: scale(1.08); }
  50% { transform: scale(0.92); }
  75% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Gradient Background Flow */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
