.user-stats {
    background-color: #4f4f4f;
    margin-bottom: 24px;
    border-radius: 8px;
    padding: 12px;
    color: #e7e7e7;
    display: flex;
    align-items: center;
    /* position: sticky;
    top: 0; */
    z-index: 99;
}
.user-stats__photo {
    height: 50px;
    width: 50px;
    overflow: hidden;
    margin-right: 12px;
    border-radius: 100%;
}
.user-stats__photo img {
    height: 100%;
}
.user-stats__name {
    display: flex;
    flex-direction: column;
    margin-right: auto;
}
.user-stats__level,
.user-stats__score {
    display: flex;
    flex-direction: column;
}
.user-stats__score {
    margin-left: 48px;
    margin-right: 16px;
    text-align: right;
}
.user-stats__level span,
.user-stats__name span,
.user-stats__score span {
    line-height: 1.1;
}
.user-stats__level span:first-of-type
.user-stats__name span:first-of-type,
.user-stats__score span:first-of-type {
    font-size: 14px;
    font-weight: 300;
}
.user-stats__level span:last-of-type,
.user-stats__name span:last-of-type,
.user-stats__score span:last-of-type {
    font-size: 32px;
    font-weight: 600;
}
.user-stats__level span:last-of-type,
.user-stats__score span:last-of-type {
    color: #fdff34;
}
.user-stats__clear {
  background-color: #fdff34;
  color:#4f4f4f;
  height: 50px;
  padding: 0px 20px;
  /* width: 50px; */
  border-radius: 8px;
  margin-left: 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: unset;
  transition: all .2s ease-in-out;
}
.user-stats__clear i {
  margin-right: 4px;
  font-size: 14px;
}
.user-stats__clear:hover {
  color: #fdff34;
  background-color:#686868;
}
.game-login {
    display: flex;
    flex-wrap: wrap;
}
.game-login__name {
    max-width: 50%;
    flex: 0 0 50%;
    background-color: #4463b2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}
.game-login__name input {
    height: 50px;
    width: 180px;
    border-radius: 12px;
    background-color: #d9e5ff;
    border: 2px solid #4463b2;
    padding-left: 8px;
    text-align: center;
    margin-bottom: 8px;
    outline: none!important;
}
.game-login__profile-photo {
    padding: 20px;
    max-width: 50%;
    flex: 0 0 50%;
    background-color: #d9e5ff;
    border-radius: 0 20px 20px 0;
}
.game-login__photos-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.game-login__photo-wrapper {
    border-radius: 100%;
    overflow: hidden;
    margin-right: 6px;
    cursor: pointer;
    border: 5px solid transparent;
    transition: border-color .1s ease-in-out;
}
.game-login__photo-wrapper.selected,
.game-login__photo-wrapper:hover {
    border-color: #4facfe;
}
.game-login__photo {
    height: 60px;
    width: auto;
}
.game-login__start.active {
  animation: pulseGlow 2s infinite;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  box-shadow: 0 0 15px rgba(79, 172, 254, 0.7);
  color: #fff;
}
.game-login__start.active::before {
  animation: shine 3s infinite;
}
.game-login__start {
  position: relative;
  display: inline-block;
  /* padding: 14px 36px; */
  height: 40px;
  width: 180px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: #ccc;
}

.game-login__start.active:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.9);
}

.game-login__start:active {
  transform: scale(0.95);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 12px rgba(79, 172, 254, 0.6); }
  50% { box-shadow: 0 0 28px rgba(0, 242, 254, 1); }
  100% { box-shadow: 0 0 12px rgba(79, 172, 254, 0.6); }
}

/* Optional animated border shine */
.game-login__start::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: rotate(25deg);
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}
