* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: url('background.png') no-repeat center center/cover;
  background-attachment: fixed;
  min-height: 100vh;
  color: #222;
  text-align: center;
}

.page-content {
  padding: 40px 20px;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.main-heading {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #0088cc, #7b61ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  color: #d81b60;
  font-weight: 600;
  margin-bottom: 25px;
}

.join-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #0088cc, #7b61ff);
  color: white;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.join-btn:hover {
  transform: scale(1.05);
}

.countdown {
  color: #ff3d00;
  font-size: 18px;
  margin-bottom: 15px;
}

.quote {
  font-size: 18px;
  color: #2e7d32;
  margin-bottom: 20px;
  font-style: italic;
}

.users {
  font-size: 40px;
  color: #f44336;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtext {
  display: block;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.features {
  max-width: 700px;
  margin: 0 auto 50px auto;
  padding: 20px;
  line-height: 1.7;
}

.features p {
  font-size: 18px;
  margin: 8px 0;
}

.image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
}

.image-gallery img {
 
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .main-heading {
    font-size: 30px;
  }
  .logo img {
    width: 80px;
    height: 80px;
  }
  .join-btn {
    font-size: 18px;
    padding: 12px 25px;
  }
  .users {
    font-size: 32px;
  }
  .image-gallery img {
    width: 85%;
    height: auto;
  }
}
