a {
  text-decoration: none;
}

.support-hero {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.support-hero-text {
  padding: 20px;
  margin: 0 auto;
  padding-bottom: 0px;
}

.support-hero h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}

.support-hero p {
  font-size: 20px;
  line-height: 1.3;
}

.donation-goal {
  text-align: center;
  margin: auto;
  max-width: 600px;
}

.donation-goal h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
}

.progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 25px;
  border: 2px solid black;
  overflow: hidden;
  height: 30px;
  margin: 20px 0;
  margin-bottom: 5px;
}

.dono-progress-bar {
  height: 100%;
  width: 0;
  background-color: #ffc40b;
  border-radius: 25px;
  border: 2px solid #ffc40b;
  transition: width 1s ease-in-out;
  position: relative;
  overflow: hidden;
}

.dono-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 3s infinite;
}

.boost-progress-bar {
  height: 100%;
  width: 0;
  background-color: #ff00ff;
  border-radius: 25px;
  border: 2px solid #ff00ff;
  transition: width 1s ease-in-out;
  position: relative;
  overflow: hidden;
}

.boost-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.boost-discord {
  text-align: center;
  margin: auto;
  margin-top: 24px;
  max-width: 600px;
}

.boost-discord h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
}

.boost-button {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background: radial-gradient(circle, #fc76fc, #ff4dff) !important;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-packages {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  font-size: 24px;
  position: relative;
}

.support-packages a {
  text-decoration: none;
  color: #007bff;
}

support-packages a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.support-packages h2 {
  font-size: 36px;
  font-weight: bold;
}

.support-packages-p {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.support-packages .package-tile-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  width: 1200px;
  max-width: none;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.support-packages .package-tile {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid black;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.support-packages .package-tile:hover {
  transition: transform 0.3s;
  transform: scale(1.05);
  background-color: #c5c5c5;
}

.support-packages .package-tile:nth-child(odd) {
  margin-left: auto;
}

.support-packages .package-tile:nth-child(even) {
  margin-right: auto;
}

.support-packages .package-tile img {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #e9e9e9, #858484) !important;
  border: 2px solid #000000;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.support-packages .package-tile-content {
  display: flex;
  flex-direction: column;
}

.support-packages .package-tile h2 {
  font-size: 24px;
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
}

.support-packages .package-tile h3 {
  font-size: 18px;
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
}

.support-packages .package-tile h4 {
  font-size: 16px;
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
}

.support-packages .package-tile p {
  font-size: 16px;
  color: #666;
  margin-left: 5px;
  margin-bottom: 0;
}

.support-button-container {
  display: flex;
  margin-top: 10px;
}

.support-button {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  background: radial-gradient(circle, #fff346, #ffc40b) !important;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-button:hover {
  transition: background-color 0.3s;
  transform: scale(1.05);
}

.support-button-not-logged {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  background: radial-gradient(circle, #fff346, #ffc40b) !important;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-button-not-logged:hover {
  background: radial-gradient(circle, #ffea00, #ffc40b) !important;
  transition: background-color 0.3s;
  transform: scale(1.05);
}

.support-button-manage {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: radial-gradient(circle, #ff0000, #ff4d4d) !important;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-button-manage:hover {
  background: radial-gradient(circle, #ff3333, #ff4d4d) !important;
  transition: background-color 0.3s;
  transform: scale(1.05);
}

/* Media query for tablets */
@media (max-width: 768px) {
  .support-hero h2 {
    font-size: 36px;
  }

  .support-hero p {
    font-size: 20px;
  }

  .support-packages .package-tile-container {
    grid-template-columns: 1fr;
    width: 100%;
    transform: none;
    left: 0;
  }

  .support-packages .package-tile {
    width: 75%;
  }

  .support-packages .package-tile:nth-child(odd),
  .support-packages .package-tile:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .support-hero h2 {
    font-size: 28px;
  }

  .support-hero p {
    font-size: 18px;
  }

  .support-packages .package-tile {
    width: 90%;
    padding: 10px;
  }

  .support-packages .package-tile img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }

  .support-packages .package-tile h2 {
    font-size: 20px;
  }

  .support-packages .package-tile h3 {
    font-size: 16px;
  }

  .support-packages .package-tile p {
    font-size: 14px;
  }
}
