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

body, html {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

body {
  background-color: #f8f9fa;
  overflow-x: hidden;
}

header {
  background: linear-gradient(to right, #87DFFF, #477AFF, #9b59b6);
  padding: 20px;
  text-align: center;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

header p {
  font-size: 1.2rem;
  margin-top: 5px;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.intro {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1.1rem;
  color: #555;
}

.bounty-details {
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.bounty-details h2 {
  font-size: 2rem;
  color: #477AFF;
  margin-bottom: 20px;
}

.bounty-details p {
  font-size: 1.2rem;
  color: #333;
}

.bounty-details ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.bounty-details ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.bounty-details ul li a {
  color: #477AFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bounty-details ul li a:hover {
  color: #0056b3;
}

.qualification, .probe-points {
  padding: 40px 20px;
  background-color: #ffffff;
}

.qualification h2, .probe-points h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.qualification ul, .probe-points ul {
  list-style-type: disc;
  margin-left: 20px;
}

.qualification ul li, .probe-points ul li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.qualification ul li ul, .probe-points ul li ul {
  list-style-type: circle;
  margin-left: 20px;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

footer p {
  font-size: 1rem;
}

