.main-header {
  text-align: center;
  font-size: 80px;
  font-weight: 600;
  background: linear-gradient(90deg, #fff8f0, #87f5ab);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite;
}

.section-header {
  font-size: 50px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #87f5ab, #5f17ff);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientPulse 4s ease infinite;
  text-align: center;
  font-weight: bolder;
}

.section-text {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff8f0;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: #5f17ff;
  border: 3px solid rgb(253, 252, 252);
  border-radius: 15px;
  overflow: hidden;
}

th,
td {
  padding: 20px;
  font-size: 22px;
  border-bottom: 1px solid white;
}

th {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 26px;
}

td {
  color: black;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  text-align: center;
}

tr:last-child td {
  border-bottom: none;
}

.equation {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #87f5ab;
}

.example {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: #fff8f0;
  font-weight: bold;
}

.point-boosters {
  margin-top: 40px;
}

.booster-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.booster-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booster-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.booster-icon:hover {
  transform: scale(1.1);
}

.tooltip {
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  width: 220px;
  position: absolute;
  bottom: -130%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 16px;
  font-weight: bold;
}

.booster-item:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px 40px;
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
    gap: 40px;
  }
}

.left,
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
}

.section-header {
  font-size: 50px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #87f5ab, #5f17ff);
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientPulse 4s ease infinite;
  text-align: center;
  font-weight: bolder;
}
