.rank-style {
  align-items: center;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 14px;
  min-width: 120px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-style.beginner {
  background-color: #f9f9f9;
  color: #111111;
  border: 1px solid #5e5e5e;
}
.rank-style.novice {
  background-color: #999999;
  color: #a54a16;
  border: 1px solid #a54a16;
}
.rank-style.intermediate {
  background-color: #f7d6c3;
  color: black;
  border: 1px solid #eaeaea;
}
.rank-style.talented {
  background-color: #fbe4f0;
  color: #cc1171;
  border: 1px solid #cc1171;
  box-shadow: 0 0 8px rgba(204, 17, 113, 0.4);
}
.rank-style.master {
  background: linear-gradient(90deg, #ff9999, #cc3333, #ff9999);
  background-size: 150% 150%;
  animation: gradient-slide 10s infinite;
  color: #ffd6d6;
  border: 1px solid #7a1f1f;
  position: relative;
  padding: 8px 16px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 153, 153, 0.6), 0 0 15px rgba(255, 153, 153, 0.4), 0 0 20px rgba(255, 153, 153, 0.3);
}
.rank-style.master::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #ffb3b3;
  text-shadow: 0 0 10px rgba(255, 179, 179, 0.5), 0 0 20px rgba(255, 179, 179, 0.3);
}
.rank-style.master::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 153, 153, 0.5), 0 0 20px rgba(255, 153, 153, 0.4), 0 0 30px rgba(255, 153, 153, 0.3);
  animation: aura-pulse-master 6s infinite;
  pointer-events: none;
}
@keyframes aura-pulse-master {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 153, 153, 0.4), 0 0 10px rgba(255, 153, 153, 0.3), 0 0 15px rgba(255, 153, 153, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 153, 153, 0.6), 0 0 30px rgba(255, 153, 153, 0.5), 0 0 50px rgba(255, 153, 153, 0.4);
  }
}
.rank-style.grandmaster {
  background: linear-gradient(90deg, #f8e8ba, #e9c389, #f8e8ba);
  background-size: 200% 200%;
  color: black;
  border: 1px solid #b28500;
  position: relative;
  padding: 8px 20px;
  text-align: center;
  animation: aura-effect 4s infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
}
.rank-style.grandmaster::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  z-index: 1;
  animation: aura-pulse 4s infinite;
  pointer-events: none;
}
.rank-style.grandmaster::after {
  font-family: "Font Awesome 5 Free";
  content: "\f521";
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: -26px;
  transform: translateX(-50%) rotate(15deg);
  font-size: 27px;
  color: rgb(255, 215, 0);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.9), 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
  pointer-events: none;
}
@keyframes aura-effect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes aura-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgb(255, 215, 0), 0 0 80px rgba(255, 215, 0, 0.8), 0 0 120px rgba(255, 215, 0, 0.6);
  }
}
@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}/*# sourceMappingURL=ranks.css.map */