#fw-section-custom-html-ab982f23-a903-4bf6-a644-41ed256f9a32 {

/* Glowing Hero Text */
.glow-title {
  color: #00f0ff;
  font-size: 3rem;
  text-align: center;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #0ff;
  animation: pulseGlow 2s infinite ease-in-out, fadeUp 1.5s ease-out;
  margin-top: 30px;
}

.glow-sub {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  text-shadow: 0 0 5px #00f0ff;
  margin-bottom: 30px;
}

/* Animated Pet Image */
.evo-image {
  display: block;
  max-width: 80%;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00f0ff;
  animation: floaty 4s ease-in-out infinite;
}

/* Float Animation */
@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Tier Grid + Cards */
.tier-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tier-card {
  background: #111;
  border: 2px solid #00f0ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: white;
  width: 200px;
  box-shadow: 0 0 20px #00f0ff;
  transition: all 0.3s ease;
  transform: scale(1);
}

.tier-card:hover {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 0 30px #00f0ff;
}

/* Spinning Rank Badge */
.tier-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ff5;
  animation: spinPulse 6s infinite linear;
}

@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Discord Button */
.discord-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 60px;
  padding: 12px 30px;
  background: #7289da;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px #7289da;
  transition: all 0.3s ease-in-out;
}

.discord-btn:hover {
  background: #5b6eae;
  box-shadow: 0 0 30px #7289da;
}

/* Glow Animation */
@keyframes pulseGlow {
  0% { text-shadow: 0 0 10px #00f0ff; }
  50% { text-shadow: 0 0 20px #00f0ff, 0 0 40px #0ff; }
  100% { text-shadow: 0 0 10px #00f0ff; }
}

/* Fade in on load */
body {
  animation: fadeUp 1.5s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

}