@keyframes neonGlow {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(0, 102, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.5); }
}

.lvl-profile {
  top: -10px;
  right: 5px;
  background: var(--bg-block);
  position: absolute;
  width: 33px;
  height: 33px;
  color: #fff;
  border: 2px solid #777;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
}

.lvl-10 {
  border-color: #c72543;
}

.lvl-20 {
  border-color: #d04b12;
}

.lvl-30 {
  border-color: #fecb23;
}

.lvl-40 {
  border-color: #47753e;
}

.lvl-50 {
  border-color: #4d8cdb;
}

.lvl-60 {
  border-color: #7352cb;
}

.lvl-70 {
  border-color: #b956c9;
  border-color: #b956c9;
}

.lvl-80 {
  border-color: #532436;
  border-color: #532436;
}

.lvl-90 {
  border-color: #967b55;
}


.lvl-profile:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.lvl-profile-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.user-lvl {
    position: absolute;
    top: 1%;
    right: 50px;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 6px solid rgb(125 125 125 / 70%);
    background: linear-gradient(145deg, #323437, #1e1f21);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.1); */
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); */
    transform: translateY(-50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 19;
}




.lvl-profile-progress {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
    margin-top: 15px;
}

.lvl-profile-bar {
    background: linear-gradient(90deg, #4d90fe, #0a74da);
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.lvl-profile-bar-max {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 4s ease infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
