.blob {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-block;
    transform: scale(1);
    animation: pulse 2s infinite;
}

.blob.green {
    background: #68c000;
    box-shadow: 0 0 0 0 rgba(104, 192, 0, 0.7);
    animation-name: pulse-green;
}

.blob.red {
    background: #c00000;
    box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.7);
    animation-name: pulse-red;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(104, 192, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(104, 192, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(104, 192, 0, 0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(192, 0, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(192, 0, 0, 0);
    }
}

.author-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.author-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    border-radius: 6px;
    background: linear-gradient(to right, #221f2c, #15131c);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.author-row:before {
    content: "";
    position: absolute;
    height: 60%;
    width: 4px;
    background: #9d65fd;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 8px #9d65fd);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.author-row::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, #9d65fd, transparent);
    background-size: 200% 200%;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    animation: borderMove 2s linear infinite;
    animation-play-state: paused;
    pointer-events: none;
    z-index: 1;
}

.author-row:hover::after {
    opacity: 1;
    animation-play-state: running;
}

.author-row:hover {
    box-shadow: 0 0 20px rgba(157, 101, 253, 0.3);
    transform: translateY(-2px);
}

.author-row:hover:before {
    box-shadow: 0 0 15px #9d65fd;
    filter: drop-shadow(0 0 12px #9d65fd);
}

.author-row i {
    color: #9d65fd;
    font-size: 24px;
    filter: drop-shadow(0 0 5px #9d65fd);
    margin-right: 15px;
    min-width: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.stat-value {
    font-weight: bold;
    font-size: 16px;
    color: #6b6380;
}

.label {
    font-size: 11px;
    color: #6b6380;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-title {
    font-size: 12px;
    background: linear-gradient(to right, #15131c, #221f2c, #15131c);
    background-size: 200% 100%;
    background-position: 100% 50%;
    padding: 10px;
    border-radius: 50px;
    font-weight: bolder;
    transition: background-position 0.5s ease;
}

.author-title:hover {
    background-position: 0% 50%;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.avatar-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(21, 19, 28, 0) 0%,
    rgba(21, 19, 28, 0.3) 30%,
    rgba(21, 19, 28, 0.7) 70%,
    rgba(21, 19, 28, 0.9) 100%
  );
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(0);
  pointer-events: none;
}

.avatar-container:hover::after {
  opacity: 0;
  transform: translateY(20px);
}

.avatar-container:hover {
  transform: scale(1.02);
}

.avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.user-profile-container {
  width: auto;
  height: auto;
  border-radius: 4px;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.user-profile-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: 0;
}

.user-profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, #15131c 100%);
  z-index: 1;
  pointer-events: none;
}

.user-profile-content {
  position: relative;
  z-index: 2;
}

.award-icon-wrapper {
  background: rgba(34, 31, 44, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 6px;
  display: inline-block;
  padding: 5px;
  margin: 5px;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.award-icon-wrapper:hover {
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}


		