.pricing-table {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-tier {
  background: #272B31;           /* panel background */
  border-radius: 10px;
  padding: 2rem 1.75rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  border: 3px solid #FF8C00;     /* Badass tier accent */
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.pricing-tier h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #CCCDCF;
}

.pricing-tier h2 i {
  margin-right: 0.4rem;
  color: #FF8C00;
}

.pricing-tier h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #BEBFC3;
}

.pricing-tier p {
  color: #BEBFC3;
  margin-bottom: 1rem;
}

.pricing-tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-tier li {
  padding: 0.25rem 0;
  color: #BEBFC3;
}

/* Button */
.custom-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #FF8C00;
  color: #1D1F24;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}

.custom-button:hover {
  background: #FF9F3A;
  transform: translateY(-2px);
}

.or-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

.or-separator::before,
.or-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #CCCDCF;
  opacity: 0.4;
}

.or-separator span {
  padding: 0 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  color: #CCCDCF;
  letter-spacing: 1px;
}

.patreon-support {
  background: #272B31;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.patreon-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF8C00;
  color: #1D1F24;
  font-weight: bold;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}

.patreon-button:hover {
  background: #FF9F3A;
  transform: translateY(-2px);
}

.patreon-support p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #BEBFC3;
}

.payment-logos-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.payment-logo {
  font-size: 2rem;
  color: #CCCDCF;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.payment-logo:hover {
  opacity: 0.65;
}

@media (max-width: 768px) {
  .pricing-tier {
    padding: 1.5rem 1.25rem;
  }

  .patreon-support {
    padding: 1.5rem 1.25rem;
  }

  .payment-logos-container {
    gap: 1.5rem;
  }
}