.weeknd-stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.weeknd-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.weeknd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.weeknd-image:hover img {
    transform: scale(1.1);
}

.weeknd-name {
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.5rem;
    text-align: center;
}

body.light-mode .weeknd-name {
    color: var(--accent-tertiary-light);
}