#fw-section-tiers-fcb8f809-8176-43c1-8e49-bd0c04bf602f {

/* === Base Reset === */
.tiers__tier {
  position: relative;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fdfdfd;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: perspective(500px) translateZ(0);
}
.tiers__tier:hover {
  transform: perspective(500px) translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}


/* === Tier Content === */
.tiers__tier-inner {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* === Tier Image === */
.tiers__tier-image-container {
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.25);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  width: 100px;
  height: 100px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.tiers__tier:hover .tiers__tier-image-container {
  transform: scale(1.05);
}

/* === Tier Title === */
.tiers__tier-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* === Members Count === */
.tiers__tier-members-count {
  font-size: 0.95rem;
  color: #cccccc;
  font-style: italic;
}

/* === Price === */
.tiers__tier-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd369;
  text-shadow: 0 0 3px rgba(255, 211, 105, 0.3);
}

/* === CTA Button === */
.tiers__tier-cta .button {
  background: linear-gradient(135deg, #ffd369, #ffb547);
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.75rem 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 211, 105, 0.4);
}
.tiers__tier-cta .button:hover {
  background: linear-gradient(135deg, #ffb547, #ffc94b);
  box-shadow: 0 6px 18px rgba(255, 183, 64, 0.5);
  transform: scale(1.03);
}

/* === Annual Link === */
.tiers__tier-annual-link {
  color: #66e0ff;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.tiers__tier-annual-link:hover {
  color: #99f5ff;
}

/* === Tier Descriptions === */
.tiers__tier-description {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.4;
}

/* === Rarity Effects === */
.tiers__tier-title:has-text("Gold") {
  background: linear-gradient(90deg, #FFD700, #FFB300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tiers__tier-title:has-text("Diamond") {
  background: linear-gradient(90deg, #00f2ff, #66e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tiers__tier-title:has-text("Benefactor") {
  animation: pulseText 2s infinite ease-in-out;
  color: #ff7bd3;
}

/* === Pulse animation for Benefactor === */
@keyframes pulseText {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 123, 211, 0.6); }
  50% { opacity: 0.8; text-shadow: 0 0 20px rgba(255, 123, 211, 0.8); }
}

/* === Responsive Improvements === */
@media (max-width: 768px) {
  .tiers__tier-inner {
    padding: 1.5rem 1rem;
  }

  .tiers__tier-title {
    font-size: 1.25rem;
  }

  .tiers__tier-price {
    font-size: 1.1rem;
  }
}

}