/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body Styling */
body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #28a745, #007bff);
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cta-buttons .btn {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  transition: background-color 0.3s ease;
}
.cta-buttons .btn:hover {
  background-color: #0056b3;
}

/* Section Styling */
section {
  padding: 40px 20px;
  text-align: center;
}
.steps, .features {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.step, .feature {
  max-width: 250px;
  text-align: center;
}
.step img, .feature img {
  max-width: 100px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 20px;
}



/* ranking style */

.ranking-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ranking-section  {
  margin-bottom: 30px;
}

.podium {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-bottom: 40px;
}

.podium-spot {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podium-spot.first {
  height: 220px;
  background: gold;
  border-radius: 5px 5px 0 0;
  padding-top: 20px;
}
.podium-spot.second {
  height: 180px;
  background: silver;
  border-radius: 5px 5px 0 0;
  padding-top: 20px;
}
.podium-spot.third {
  height: 150px;
  background: #cd7f32; /* Bronze color */
  border-radius: 5px 5px 0 0;
  padding-top: 20px;
}

.position {
  position: absolute;
  top: -20px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: bold;
}

.user-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.user-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}
.user-info h3, .user-info h4 {
  margin: 0;
  font-size: 1.1em;
  margin-bottom: 5px;
}
.user-info p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

.ranked-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.ranked-list li {
  background: #fff;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.ranked-list li .user-card {
  flex-direction: row;
  gap: 10px;
}

.view-more-container {
  text-align: center;
  margin-top: 20px;
}
.view-more-container button {
  padding: 10px 20px;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}
.view-more-container button:hover {
  background: #0056b3;
}


