.all-users {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light-fade);
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.best-users {
    width: 100%;
}

.best-user {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
    max-width: 300px;
}

.best-user a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    color: var(--secondary);
    width: 100%;
}

.best-user a:hover {
    background-color: black;
    color: var(--bg-light);
}

.best-user:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.best-user img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.best-users-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
}