/* Upgrade CTA button (high-contrast, high-intent) */
.member-links .upgrade-cta { margin-left: 8px; }

.member-links a.btn-upgrade-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 10px;        /* smaller height & width */
  border-radius: 16px;      /* less pill, more button */

  font-weight: 700;         /* slightly lighter */
  font-size: 12px;          /* smaller text */
  letter-spacing: .15px;

  background: #ffb020;
  color: #101010 !important;

  box-shadow: 0 4px 12px rgba(255, 176, 32, .22);
  border: 1px solid rgba(255, 255, 255, .1);

  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}


.member-links a.btn-upgrade-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 26px rgba(255, 176, 32, .35);
}

@media (hover:hover){
  .member-links a.btn-upgrade-cta{
    animation: upgradePulse 2.2s ease-in-out infinite;
  }
  .member-links a.btn-upgrade-cta:hover{
    animation: none;
  }
}

@keyframes upgradePulse{
  0%, 100% { box-shadow: 0 6px 18px rgba(255, 176, 32, .22); }
  50%      { box-shadow: 0 10px 28px rgba(255, 176, 32, .38); }
}

/* Homepage 900x250 Billboard */
.billboard-900 {
  width: 100%;
  max-width: 900px;
  height: 250px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.billboard-900 iframe,
.billboard-900 img,
.billboard-900 ins,
.billboard-900 div {
  max-width: 900px;
  height: 250px;
}